diff --git a/queries/highlights.scm b/queries/highlights.scm index 48c7284e..76914ad2 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -100,6 +100,7 @@ "as" @keyword "async" @keyword "await" @keyword +"become" @keyword "break" @keyword "const" @keyword "continue" @keyword diff --git a/src/grammar.json b/src/grammar.json index f345735b..70fc2095 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1046,6 +1046,10 @@ "type": "STRING", "value": "await" }, + { + "type": "STRING", + "value": "become" + }, { "type": "STRING", "value": "break" @@ -5228,6 +5232,10 @@ "type": "SYMBOL", "name": "return_expression" }, + { + "type": "SYMBOL", + "name": "become_expression" + }, { "type": "SYMBOL", "name": "yield_expression" @@ -6463,6 +6471,23 @@ } ] }, + "become_expression": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "become" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + }, "yield_expression": { "type": "CHOICE", "members": [ @@ -9745,4 +9770,4 @@ "_pattern" ], "reserved": {} -} \ No newline at end of file +} diff --git a/src/node-types.json b/src/node-types.json index 2a72d8c1..c3cdb8d2 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -113,6 +113,10 @@ "type": "await_expression", "named": true }, + { + "type": "become_expression", + "named": true + }, { "type": "binary_expression", "named": true @@ -784,6 +788,21 @@ ] } }, + { + "type": "become_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_expression", + "named": true + } + ] + } + }, { "type": "binary_expression", "named": true, @@ -918,7 +937,6 @@ { "type": "block_comment", "named": true, - "extra": true, "fields": { "doc": { "multiple": false, @@ -1056,6 +1074,10 @@ "type": "await_expression", "named": true }, + { + "type": "become_expression", + "named": true + }, { "type": "binary_expression", "named": true @@ -2702,7 +2724,6 @@ { "type": "line_comment", "named": true, - "extra": true, "fields": { "doc": { "multiple": false, @@ -5253,6 +5274,10 @@ "type": "await", "named": false }, + { + "type": "become", + "named": false + }, { "type": "block", "named": false diff --git a/src/parser.c b/src/parser.c index 533552b4..cf0cc7ac 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter v0.25.10 */ +/* Automatically generated by tree-sitter v0.25.3 */ #include "tree_sitter/parser.h" @@ -7,11 +7,11 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 3825 -#define LARGE_STATE_COUNT 1064 -#define SYMBOL_COUNT 351 +#define STATE_COUNT 3833 +#define LARGE_STATE_COUNT 1068 +#define SYMBOL_COUNT 353 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 157 +#define TOKEN_COUNT 158 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -110,270 +110,272 @@ enum ts_symbol_identifiers { anon_sym_as = 88, anon_sym_async = 89, anon_sym_await = 90, - anon_sym_break = 91, - anon_sym_const = 92, - anon_sym_continue = 93, - anon_sym_default = 94, - anon_sym_enum = 95, - anon_sym_fn = 96, - anon_sym_for = 97, - anon_sym_gen = 98, - anon_sym_if = 99, - anon_sym_impl = 100, - anon_sym_let = 101, - anon_sym_loop = 102, - anon_sym_match = 103, - anon_sym_mod = 104, - anon_sym_pub = 105, - anon_sym_return = 106, - anon_sym_static = 107, - anon_sym_struct = 108, - anon_sym_trait = 109, - anon_sym_type = 110, - anon_sym_union = 111, - anon_sym_unsafe = 112, - anon_sym_use = 113, - anon_sym_where = 114, - anon_sym_while = 115, - anon_sym_extern = 116, - anon_sym_ref = 117, - anon_sym_else = 118, - anon_sym_in = 119, - anon_sym_LT2 = 120, - anon_sym_dyn = 121, - sym_mutable_specifier = 122, - anon_sym_raw = 123, - anon_sym_yield = 124, - anon_sym_move = 125, - anon_sym_try = 126, - sym_integer_literal = 127, - aux_sym_string_literal_token1 = 128, - anon_sym_DQUOTE = 129, - sym_char_literal = 130, - sym_escape_sequence = 131, - anon_sym_true = 132, - anon_sym_false = 133, - anon_sym_SLASH_SLASH = 134, - aux_sym_line_comment_token1 = 135, - aux_sym_line_comment_token2 = 136, - aux_sym_line_comment_token3 = 137, - anon_sym_BANG2 = 138, - anon_sym_SLASH2 = 139, - anon_sym_SLASH_STAR = 140, - anon_sym_STAR_SLASH = 141, - sym_shebang = 142, - sym_self = 143, - sym_super = 144, - sym_crate = 145, - sym_metavariable = 146, - sym_string_content = 147, - sym__raw_string_literal_start = 148, - sym_raw_string_literal_content = 149, - sym__raw_string_literal_end = 150, - sym_float_literal = 151, - sym__outer_block_doc_comment_marker = 152, - sym__inner_block_doc_comment_marker = 153, - sym__block_comment_content = 154, - sym__line_doc_content = 155, - sym__error_sentinel = 156, - sym_source_file = 157, - sym__statement = 158, - sym_empty_statement = 159, - sym_expression_statement = 160, - sym_macro_definition = 161, - sym_macro_rule = 162, - sym__token_pattern = 163, - sym_token_tree_pattern = 164, - sym_token_binding_pattern = 165, - sym_token_repetition_pattern = 166, - sym_fragment_specifier = 167, - sym_token_tree = 168, - sym_token_repetition = 169, - sym_attribute_item = 170, - sym_inner_attribute_item = 171, - sym_attribute = 172, - sym_mod_item = 173, - sym_foreign_mod_item = 174, - sym_declaration_list = 175, - sym_struct_item = 176, - sym_union_item = 177, - sym_enum_item = 178, - sym_enum_variant_list = 179, - sym_enum_variant = 180, - sym_field_declaration_list = 181, - sym_field_declaration = 182, - sym_ordered_field_declaration_list = 183, - sym_extern_crate_declaration = 184, - sym_const_item = 185, - sym_static_item = 186, - sym_type_item = 187, - sym_function_item = 188, - sym_function_signature_item = 189, - sym_function_modifiers = 190, - sym_where_clause = 191, - sym_where_predicate = 192, - sym_impl_item = 193, - sym_trait_item = 194, - sym_associated_type = 195, - sym_trait_bounds = 196, - sym_higher_ranked_trait_bound = 197, - sym_removed_trait_bound = 198, - sym_type_parameters = 199, - sym_const_parameter = 200, - sym_type_parameter = 201, - sym_lifetime_parameter = 202, - sym_let_declaration = 203, - sym_use_declaration = 204, - sym__use_clause = 205, - sym_scoped_use_list = 206, - sym_use_list = 207, - sym_use_as_clause = 208, - sym_use_wildcard = 209, - sym_parameters = 210, - sym_self_parameter = 211, - sym_variadic_parameter = 212, - sym_parameter = 213, - sym_extern_modifier = 214, - sym_visibility_modifier = 215, - sym__type = 216, - sym_bracketed_type = 217, - sym_qualified_type = 218, - sym_lifetime = 219, - sym_array_type = 220, - sym_for_lifetimes = 221, - sym_function_type = 222, - sym_tuple_type = 223, - sym_unit_type = 224, - sym_generic_function = 225, - sym_generic_type = 226, - sym_generic_type_with_turbofish = 227, - sym_bounded_type = 228, - sym_use_bounds = 229, - sym_type_arguments = 230, - sym_type_binding = 231, - sym_reference_type = 232, - sym_pointer_type = 233, - sym_never_type = 234, - sym_abstract_type = 235, - sym_dynamic_type = 236, - sym__expression_except_range = 237, - sym__expression = 238, - sym_macro_invocation = 239, - sym_delim_token_tree = 240, - sym__delim_tokens = 241, - sym__non_delim_token = 242, - sym_scoped_identifier = 243, - sym_scoped_type_identifier_in_expression_position = 244, - sym_scoped_type_identifier = 245, - sym_range_expression = 246, - sym_unary_expression = 247, - sym_try_expression = 248, - sym_reference_expression = 249, - sym_binary_expression = 250, - sym_assignment_expression = 251, - sym_compound_assignment_expr = 252, - sym_type_cast_expression = 253, - sym_return_expression = 254, - sym_yield_expression = 255, - sym_call_expression = 256, - sym_arguments = 257, - sym_array_expression = 258, - sym_parenthesized_expression = 259, - sym_tuple_expression = 260, - sym_unit_expression = 261, - sym_struct_expression = 262, - sym_field_initializer_list = 263, - sym_shorthand_field_initializer = 264, - sym_field_initializer = 265, - sym_base_field_initializer = 266, - sym_if_expression = 267, - sym_let_condition = 268, - sym__let_chain = 269, - sym__condition = 270, - sym_else_clause = 271, - sym_match_expression = 272, - sym_match_block = 273, - sym_match_arm = 274, - sym_last_match_arm = 275, - sym_match_pattern = 276, - sym_while_expression = 277, - sym_loop_expression = 278, - sym_for_expression = 279, - sym_const_block = 280, - sym_closure_expression = 281, - sym_closure_parameters = 282, - sym_label = 283, - sym_break_expression = 284, - sym_continue_expression = 285, - sym_index_expression = 286, - sym_await_expression = 287, - sym_field_expression = 288, - sym_unsafe_block = 289, - sym_async_block = 290, - sym_gen_block = 291, - sym_try_block = 292, - sym_block = 293, - sym__pattern = 294, - sym_generic_pattern = 295, - sym_tuple_pattern = 296, - sym_slice_pattern = 297, - sym_tuple_struct_pattern = 298, - sym_struct_pattern = 299, - sym_field_pattern = 300, - sym_remaining_field_pattern = 301, - sym_mut_pattern = 302, - sym_range_pattern = 303, - sym_ref_pattern = 304, - sym_captured_pattern = 305, - sym_reference_pattern = 306, - sym_or_pattern = 307, - sym__literal = 308, - sym__literal_pattern = 309, - sym_negative_literal = 310, - sym_string_literal = 311, - sym_raw_string_literal = 312, - sym_boolean_literal = 313, - sym_line_comment = 314, - sym__line_doc_comment_marker = 315, - sym__inner_line_doc_comment_marker = 316, - sym__outer_line_doc_comment_marker = 317, - sym_block_comment = 318, - sym__block_doc_comment_marker = 319, - aux_sym_source_file_repeat1 = 320, - aux_sym_macro_definition_repeat1 = 321, - aux_sym_token_tree_pattern_repeat1 = 322, - aux_sym_token_tree_repeat1 = 323, - aux_sym__non_special_token_repeat1 = 324, - aux_sym_declaration_list_repeat1 = 325, - aux_sym_enum_variant_list_repeat1 = 326, - aux_sym_enum_variant_list_repeat2 = 327, - aux_sym_field_declaration_list_repeat1 = 328, - aux_sym_ordered_field_declaration_list_repeat1 = 329, - aux_sym_function_modifiers_repeat1 = 330, - aux_sym_where_clause_repeat1 = 331, - aux_sym_trait_bounds_repeat1 = 332, - aux_sym_type_parameters_repeat1 = 333, - aux_sym_use_list_repeat1 = 334, - aux_sym_parameters_repeat1 = 335, - aux_sym_for_lifetimes_repeat1 = 336, - aux_sym_tuple_type_repeat1 = 337, - aux_sym_use_bounds_repeat1 = 338, - aux_sym_type_arguments_repeat1 = 339, - aux_sym_delim_token_tree_repeat1 = 340, - aux_sym_arguments_repeat1 = 341, - aux_sym_tuple_expression_repeat1 = 342, - aux_sym_field_initializer_list_repeat1 = 343, - aux_sym_match_block_repeat1 = 344, - aux_sym_match_arm_repeat1 = 345, - aux_sym_closure_parameters_repeat1 = 346, - aux_sym_tuple_pattern_repeat1 = 347, - aux_sym_slice_pattern_repeat1 = 348, - aux_sym_struct_pattern_repeat1 = 349, - aux_sym_string_literal_repeat1 = 350, - alias_sym_field_identifier = 351, - alias_sym_let_chain = 352, - alias_sym_shorthand_field_identifier = 353, - alias_sym_type_identifier = 354, + anon_sym_become = 91, + anon_sym_break = 92, + anon_sym_const = 93, + anon_sym_continue = 94, + anon_sym_default = 95, + anon_sym_enum = 96, + anon_sym_fn = 97, + anon_sym_for = 98, + anon_sym_gen = 99, + anon_sym_if = 100, + anon_sym_impl = 101, + anon_sym_let = 102, + anon_sym_loop = 103, + anon_sym_match = 104, + anon_sym_mod = 105, + anon_sym_pub = 106, + anon_sym_return = 107, + anon_sym_static = 108, + anon_sym_struct = 109, + anon_sym_trait = 110, + anon_sym_type = 111, + anon_sym_union = 112, + anon_sym_unsafe = 113, + anon_sym_use = 114, + anon_sym_where = 115, + anon_sym_while = 116, + anon_sym_extern = 117, + anon_sym_ref = 118, + anon_sym_else = 119, + anon_sym_in = 120, + anon_sym_LT2 = 121, + anon_sym_dyn = 122, + sym_mutable_specifier = 123, + anon_sym_raw = 124, + anon_sym_yield = 125, + anon_sym_move = 126, + anon_sym_try = 127, + sym_integer_literal = 128, + aux_sym_string_literal_token1 = 129, + anon_sym_DQUOTE = 130, + sym_char_literal = 131, + sym_escape_sequence = 132, + anon_sym_true = 133, + anon_sym_false = 134, + anon_sym_SLASH_SLASH = 135, + aux_sym_line_comment_token1 = 136, + aux_sym_line_comment_token2 = 137, + aux_sym_line_comment_token3 = 138, + anon_sym_BANG2 = 139, + anon_sym_SLASH2 = 140, + anon_sym_SLASH_STAR = 141, + anon_sym_STAR_SLASH = 142, + sym_shebang = 143, + sym_self = 144, + sym_super = 145, + sym_crate = 146, + sym_metavariable = 147, + sym_string_content = 148, + sym__raw_string_literal_start = 149, + sym_raw_string_literal_content = 150, + sym__raw_string_literal_end = 151, + sym_float_literal = 152, + sym__outer_block_doc_comment_marker = 153, + sym__inner_block_doc_comment_marker = 154, + sym__block_comment_content = 155, + sym__line_doc_content = 156, + sym__error_sentinel = 157, + sym_source_file = 158, + sym__statement = 159, + sym_empty_statement = 160, + sym_expression_statement = 161, + sym_macro_definition = 162, + sym_macro_rule = 163, + sym__token_pattern = 164, + sym_token_tree_pattern = 165, + sym_token_binding_pattern = 166, + sym_token_repetition_pattern = 167, + sym_fragment_specifier = 168, + sym_token_tree = 169, + sym_token_repetition = 170, + sym_attribute_item = 171, + sym_inner_attribute_item = 172, + sym_attribute = 173, + sym_mod_item = 174, + sym_foreign_mod_item = 175, + sym_declaration_list = 176, + sym_struct_item = 177, + sym_union_item = 178, + sym_enum_item = 179, + sym_enum_variant_list = 180, + sym_enum_variant = 181, + sym_field_declaration_list = 182, + sym_field_declaration = 183, + sym_ordered_field_declaration_list = 184, + sym_extern_crate_declaration = 185, + sym_const_item = 186, + sym_static_item = 187, + sym_type_item = 188, + sym_function_item = 189, + sym_function_signature_item = 190, + sym_function_modifiers = 191, + sym_where_clause = 192, + sym_where_predicate = 193, + sym_impl_item = 194, + sym_trait_item = 195, + sym_associated_type = 196, + sym_trait_bounds = 197, + sym_higher_ranked_trait_bound = 198, + sym_removed_trait_bound = 199, + sym_type_parameters = 200, + sym_const_parameter = 201, + sym_type_parameter = 202, + sym_lifetime_parameter = 203, + sym_let_declaration = 204, + sym_use_declaration = 205, + sym__use_clause = 206, + sym_scoped_use_list = 207, + sym_use_list = 208, + sym_use_as_clause = 209, + sym_use_wildcard = 210, + sym_parameters = 211, + sym_self_parameter = 212, + sym_variadic_parameter = 213, + sym_parameter = 214, + sym_extern_modifier = 215, + sym_visibility_modifier = 216, + sym__type = 217, + sym_bracketed_type = 218, + sym_qualified_type = 219, + sym_lifetime = 220, + sym_array_type = 221, + sym_for_lifetimes = 222, + sym_function_type = 223, + sym_tuple_type = 224, + sym_unit_type = 225, + sym_generic_function = 226, + sym_generic_type = 227, + sym_generic_type_with_turbofish = 228, + sym_bounded_type = 229, + sym_use_bounds = 230, + sym_type_arguments = 231, + sym_type_binding = 232, + sym_reference_type = 233, + sym_pointer_type = 234, + sym_never_type = 235, + sym_abstract_type = 236, + sym_dynamic_type = 237, + sym__expression_except_range = 238, + sym__expression = 239, + sym_macro_invocation = 240, + sym_delim_token_tree = 241, + sym__delim_tokens = 242, + sym__non_delim_token = 243, + sym_scoped_identifier = 244, + sym_scoped_type_identifier_in_expression_position = 245, + sym_scoped_type_identifier = 246, + sym_range_expression = 247, + sym_unary_expression = 248, + sym_try_expression = 249, + sym_reference_expression = 250, + sym_binary_expression = 251, + sym_assignment_expression = 252, + sym_compound_assignment_expr = 253, + sym_type_cast_expression = 254, + sym_return_expression = 255, + sym_become_expression = 256, + sym_yield_expression = 257, + sym_call_expression = 258, + sym_arguments = 259, + sym_array_expression = 260, + sym_parenthesized_expression = 261, + sym_tuple_expression = 262, + sym_unit_expression = 263, + sym_struct_expression = 264, + sym_field_initializer_list = 265, + sym_shorthand_field_initializer = 266, + sym_field_initializer = 267, + sym_base_field_initializer = 268, + sym_if_expression = 269, + sym_let_condition = 270, + sym__let_chain = 271, + sym__condition = 272, + sym_else_clause = 273, + sym_match_expression = 274, + sym_match_block = 275, + sym_match_arm = 276, + sym_last_match_arm = 277, + sym_match_pattern = 278, + sym_while_expression = 279, + sym_loop_expression = 280, + sym_for_expression = 281, + sym_const_block = 282, + sym_closure_expression = 283, + sym_closure_parameters = 284, + sym_label = 285, + sym_break_expression = 286, + sym_continue_expression = 287, + sym_index_expression = 288, + sym_await_expression = 289, + sym_field_expression = 290, + sym_unsafe_block = 291, + sym_async_block = 292, + sym_gen_block = 293, + sym_try_block = 294, + sym_block = 295, + sym__pattern = 296, + sym_generic_pattern = 297, + sym_tuple_pattern = 298, + sym_slice_pattern = 299, + sym_tuple_struct_pattern = 300, + sym_struct_pattern = 301, + sym_field_pattern = 302, + sym_remaining_field_pattern = 303, + sym_mut_pattern = 304, + sym_range_pattern = 305, + sym_ref_pattern = 306, + sym_captured_pattern = 307, + sym_reference_pattern = 308, + sym_or_pattern = 309, + sym__literal = 310, + sym__literal_pattern = 311, + sym_negative_literal = 312, + sym_string_literal = 313, + sym_raw_string_literal = 314, + sym_boolean_literal = 315, + sym_line_comment = 316, + sym__line_doc_comment_marker = 317, + sym__inner_line_doc_comment_marker = 318, + sym__outer_line_doc_comment_marker = 319, + sym_block_comment = 320, + sym__block_doc_comment_marker = 321, + aux_sym_source_file_repeat1 = 322, + aux_sym_macro_definition_repeat1 = 323, + aux_sym_token_tree_pattern_repeat1 = 324, + aux_sym_token_tree_repeat1 = 325, + aux_sym__non_special_token_repeat1 = 326, + aux_sym_declaration_list_repeat1 = 327, + aux_sym_enum_variant_list_repeat1 = 328, + aux_sym_enum_variant_list_repeat2 = 329, + aux_sym_field_declaration_list_repeat1 = 330, + aux_sym_ordered_field_declaration_list_repeat1 = 331, + aux_sym_function_modifiers_repeat1 = 332, + aux_sym_where_clause_repeat1 = 333, + aux_sym_trait_bounds_repeat1 = 334, + aux_sym_type_parameters_repeat1 = 335, + aux_sym_use_list_repeat1 = 336, + aux_sym_parameters_repeat1 = 337, + aux_sym_for_lifetimes_repeat1 = 338, + aux_sym_tuple_type_repeat1 = 339, + aux_sym_use_bounds_repeat1 = 340, + aux_sym_type_arguments_repeat1 = 341, + aux_sym_delim_token_tree_repeat1 = 342, + aux_sym_arguments_repeat1 = 343, + aux_sym_tuple_expression_repeat1 = 344, + aux_sym_field_initializer_list_repeat1 = 345, + aux_sym_match_block_repeat1 = 346, + aux_sym_match_arm_repeat1 = 347, + aux_sym_closure_parameters_repeat1 = 348, + aux_sym_tuple_pattern_repeat1 = 349, + aux_sym_slice_pattern_repeat1 = 350, + aux_sym_struct_pattern_repeat1 = 351, + aux_sym_string_literal_repeat1 = 352, + alias_sym_field_identifier = 353, + alias_sym_let_chain = 354, + alias_sym_shorthand_field_identifier = 355, + alias_sym_type_identifier = 356, }; static const char * const ts_symbol_names[] = { @@ -468,6 +470,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_as] = "as", [anon_sym_async] = "async", [anon_sym_await] = "await", + [anon_sym_become] = "become", [anon_sym_break] = "break", [anon_sym_const] = "const", [anon_sym_continue] = "continue", @@ -632,6 +635,7 @@ static const char * const ts_symbol_names[] = { [sym_compound_assignment_expr] = "compound_assignment_expr", [sym_type_cast_expression] = "type_cast_expression", [sym_return_expression] = "return_expression", + [sym_become_expression] = "become_expression", [sym_yield_expression] = "yield_expression", [sym_call_expression] = "call_expression", [sym_arguments] = "arguments", @@ -826,6 +830,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_as] = anon_sym_as, [anon_sym_async] = anon_sym_async, [anon_sym_await] = anon_sym_await, + [anon_sym_become] = anon_sym_become, [anon_sym_break] = anon_sym_break, [anon_sym_const] = anon_sym_const, [anon_sym_continue] = anon_sym_continue, @@ -990,6 +995,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_assignment_expr] = sym_compound_assignment_expr, [sym_type_cast_expression] = sym_type_cast_expression, [sym_return_expression] = sym_return_expression, + [sym_become_expression] = sym_become_expression, [sym_yield_expression] = sym_yield_expression, [sym_call_expression] = sym_call_expression, [sym_arguments] = sym_arguments, @@ -1457,6 +1463,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_become] = { + .visible = true, + .named = false, + }, [anon_sym_break] = { .visible = true, .named = false, @@ -2115,6 +2125,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_become_expression] = { + .visible = true, + .named = true, + }, [sym_yield_expression] = { .visible = true, .named = true, @@ -4018,81 +4032,81 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6] = 6, [7] = 7, [8] = 8, - [9] = 3, - [10] = 2, - [11] = 11, - [12] = 7, - [13] = 8, - [14] = 3, - [15] = 2, - [16] = 11, - [17] = 8, - [18] = 3, - [19] = 2, - [20] = 11, - [21] = 8, - [22] = 3, - [23] = 2, - [24] = 11, - [25] = 8, - [26] = 3, - [27] = 2, - [28] = 11, - [29] = 8, - [30] = 3, - [31] = 2, - [32] = 11, - [33] = 8, - [34] = 11, + [9] = 2, + [10] = 3, + [11] = 5, + [12] = 6, + [13] = 7, + [14] = 2, + [15] = 3, + [16] = 6, + [17] = 2, + [18] = 2, + [19] = 3, + [20] = 6, + [21] = 7, + [22] = 2, + [23] = 3, + [24] = 6, + [25] = 7, + [26] = 26, + [27] = 3, + [28] = 6, + [29] = 7, + [30] = 2, + [31] = 3, + [32] = 6, + [33] = 7, + [34] = 7, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 37, + [39] = 39, [40] = 40, - [41] = 40, - [42] = 42, + [41] = 39, + [42] = 38, [43] = 35, - [44] = 35, - [45] = 36, - [46] = 42, - [47] = 38, + [44] = 36, + [45] = 35, + [46] = 37, + [47] = 35, [48] = 40, - [49] = 37, - [50] = 40, - [51] = 35, - [52] = 37, - [53] = 42, - [54] = 42, + [49] = 39, + [50] = 39, + [51] = 38, + [52] = 38, + [53] = 40, + [54] = 38, [55] = 37, - [56] = 37, - [57] = 40, - [58] = 37, - [59] = 40, - [60] = 36, - [61] = 40, - [62] = 40, - [63] = 38, + [56] = 39, + [57] = 38, + [58] = 36, + [59] = 39, + [60] = 38, + [61] = 39, + [62] = 38, + [63] = 39, [64] = 37, - [65] = 38, + [65] = 40, [66] = 36, [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, + [76] = 76, + [77] = 69, + [78] = 70, + [79] = 71, [80] = 80, - [81] = 81, - [82] = 82, - [83] = 83, + [81] = 68, + [82] = 74, + [83] = 75, [84] = 84, [85] = 85, [86] = 86, @@ -4104,88 +4118,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [92] = 92, [93] = 93, [94] = 94, - [95] = 94, - [96] = 86, - [97] = 87, - [98] = 84, - [99] = 84, - [100] = 100, - [101] = 85, - [102] = 88, - [103] = 89, - [104] = 90, - [105] = 94, + [95] = 88, + [96] = 92, + [97] = 93, + [98] = 98, + [99] = 85, + [100] = 86, + [101] = 87, + [102] = 89, + [103] = 90, + [104] = 91, + [105] = 85, [106] = 86, [107] = 87, - [108] = 100, - [109] = 100, - [110] = 85, - [111] = 100, - [112] = 91, - [113] = 94, - [114] = 86, - [115] = 87, - [116] = 84, - [117] = 100, - [118] = 85, - [119] = 92, - [120] = 94, - [121] = 86, - [122] = 94, - [123] = 86, - [124] = 87, - [125] = 87, - [126] = 100, - [127] = 85, - [128] = 93, - [129] = 129, - [130] = 85, - [131] = 131, - [132] = 84, - [133] = 84, + [108] = 84, + [109] = 86, + [110] = 87, + [111] = 98, + [112] = 89, + [113] = 90, + [114] = 91, + [115] = 115, + [116] = 85, + [117] = 86, + [118] = 87, + [119] = 119, + [120] = 89, + [121] = 90, + [122] = 91, + [123] = 89, + [124] = 90, + [125] = 85, + [126] = 86, + [127] = 87, + [128] = 91, + [129] = 89, + [130] = 90, + [131] = 91, + [132] = 94, + [133] = 85, [134] = 134, [135] = 135, - [136] = 136, - [137] = 137, - [138] = 136, - [139] = 135, - [140] = 134, - [141] = 137, + [136] = 134, + [137] = 135, + [138] = 138, + [139] = 139, + [140] = 138, + [141] = 139, [142] = 142, [143] = 143, [144] = 144, [145] = 145, [146] = 146, [147] = 142, - [148] = 148, - [149] = 149, + [148] = 146, + [149] = 145, [150] = 150, [151] = 151, - [152] = 150, - [153] = 153, + [152] = 152, + [153] = 143, [154] = 154, - [155] = 155, - [156] = 154, - [157] = 144, - [158] = 146, - [159] = 149, - [160] = 151, - [161] = 161, - [162] = 155, - [163] = 143, - [164] = 164, - [165] = 165, - [166] = 165, - [167] = 143, - [168] = 148, - [169] = 165, - [170] = 143, - [171] = 148, - [172] = 165, - [173] = 148, + [155] = 154, + [156] = 156, + [157] = 156, + [158] = 158, + [159] = 159, + [160] = 159, + [161] = 152, + [162] = 150, + [163] = 151, + [164] = 159, + [165] = 152, + [166] = 151, + [167] = 159, + [168] = 152, + [169] = 151, + [170] = 144, + [171] = 171, + [172] = 172, + [173] = 171, [174] = 174, [175] = 175, - [176] = 176, + [176] = 172, [177] = 177, [178] = 178, [179] = 179, @@ -4198,320 +4212,320 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [186] = 186, [187] = 187, [188] = 188, - [189] = 189, + [189] = 180, [190] = 190, [191] = 191, [192] = 192, - [193] = 161, + [193] = 193, [194] = 194, [195] = 195, [196] = 196, [197] = 197, [198] = 187, - [199] = 196, - [200] = 200, - [201] = 201, - [202] = 202, - [203] = 203, + [199] = 188, + [200] = 190, + [201] = 191, + [202] = 180, + [203] = 193, [204] = 204, [205] = 205, - [206] = 206, - [207] = 207, + [206] = 187, + [207] = 188, [208] = 208, [209] = 209, - [210] = 209, + [210] = 180, [211] = 211, - [212] = 207, - [213] = 213, - [214] = 213, - [215] = 215, - [216] = 216, - [217] = 217, + [212] = 193, + [213] = 187, + [214] = 188, + [215] = 180, + [216] = 193, + [217] = 188, [218] = 218, [219] = 219, - [220] = 209, + [220] = 183, [221] = 218, [222] = 219, [223] = 223, - [224] = 211, - [225] = 223, - [226] = 188, - [227] = 191, - [228] = 209, - [229] = 211, - [230] = 211, - [231] = 192, - [232] = 176, - [233] = 203, - [234] = 213, - [235] = 174, - [236] = 219, + [224] = 224, + [225] = 193, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 224, + [231] = 175, + [232] = 187, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, [237] = 237, - [238] = 238, - [239] = 213, - [240] = 215, - [241] = 241, - [242] = 209, - [243] = 211, - [244] = 238, - [245] = 216, - [246] = 246, - [247] = 237, - [248] = 219, - [249] = 207, - [250] = 216, - [251] = 219, - [252] = 217, - [253] = 213, + [238] = 209, + [239] = 239, + [240] = 211, + [241] = 239, + [242] = 204, + [243] = 243, + [244] = 239, + [245] = 239, + [246] = 208, + [247] = 192, + [248] = 248, + [249] = 249, + [250] = 205, + [251] = 251, + [252] = 252, + [253] = 253, [254] = 254, [255] = 255, [256] = 256, - [257] = 254, - [258] = 255, - [259] = 256, - [260] = 255, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, [261] = 261, - [262] = 256, - [263] = 254, - [264] = 254, - [265] = 261, - [266] = 261, - [267] = 267, - [268] = 268, + [262] = 262, + [263] = 263, + [264] = 264, + [265] = 253, + [266] = 266, + [267] = 254, + [268] = 255, [269] = 269, - [270] = 270, - [271] = 271, + [270] = 256, + [271] = 257, [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, + [273] = 258, + [274] = 260, + [275] = 262, + [276] = 263, + [277] = 264, + [278] = 253, + [279] = 254, + [280] = 255, + [281] = 256, + [282] = 257, [283] = 283, - [284] = 284, - [285] = 285, - [286] = 268, - [287] = 269, - [288] = 288, - [289] = 270, + [284] = 259, + [285] = 261, + [286] = 259, + [287] = 261, + [288] = 261, + [289] = 289, [290] = 290, - [291] = 271, + [291] = 259, [292] = 292, [293] = 293, - [294] = 294, + [294] = 259, [295] = 295, - [296] = 296, - [297] = 270, - [298] = 298, - [299] = 270, - [300] = 270, - [301] = 270, + [296] = 259, + [297] = 259, + [298] = 289, + [299] = 293, + [300] = 300, + [301] = 301, [302] = 302, - [303] = 303, + [303] = 302, [304] = 304, - [305] = 302, - [306] = 306, + [305] = 305, + [306] = 289, [307] = 307, - [308] = 308, - [309] = 309, + [308] = 269, + [309] = 292, [310] = 310, - [311] = 277, - [312] = 278, - [313] = 279, - [314] = 280, - [315] = 281, - [316] = 282, - [317] = 283, - [318] = 318, - [319] = 319, + [311] = 311, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 269, + [316] = 269, + [317] = 317, + [318] = 289, + [319] = 293, [320] = 320, - [321] = 321, - [322] = 322, - [323] = 267, - [324] = 324, - [325] = 319, - [326] = 285, - [327] = 327, + [321] = 302, + [322] = 272, + [323] = 258, + [324] = 264, + [325] = 260, + [326] = 312, + [327] = 312, [328] = 328, - [329] = 329, - [330] = 284, - [331] = 302, - [332] = 285, - [333] = 268, - [334] = 269, - [335] = 275, - [336] = 302, - [337] = 270, - [338] = 275, - [339] = 277, - [340] = 319, - [341] = 278, - [342] = 279, - [343] = 280, - [344] = 281, - [345] = 282, - [346] = 283, - [347] = 284, - [348] = 285, - [349] = 268, - [350] = 269, - [351] = 351, - [352] = 270, - [353] = 271, - [354] = 354, - [355] = 351, + [329] = 272, + [330] = 262, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 263, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 264, + [339] = 339, + [340] = 253, + [341] = 254, + [342] = 255, + [343] = 256, + [344] = 257, + [345] = 272, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 295, + [350] = 350, + [351] = 317, + [352] = 352, + [353] = 252, + [354] = 311, + [355] = 266, [356] = 356, [357] = 357, - [358] = 358, - [359] = 359, - [360] = 271, - [361] = 275, - [362] = 359, - [363] = 310, - [364] = 356, - [365] = 272, - [366] = 295, - [367] = 277, - [368] = 318, - [369] = 324, - [370] = 354, - [371] = 273, - [372] = 276, - [373] = 292, - [374] = 296, - [375] = 306, - [376] = 308, - [377] = 309, - [378] = 278, - [379] = 327, - [380] = 279, - [381] = 359, - [382] = 280, - [383] = 272, - [384] = 281, - [385] = 324, - [386] = 296, - [387] = 282, - [388] = 359, - [389] = 283, - [390] = 272, - [391] = 284, - [392] = 296, - [393] = 393, + [358] = 300, + [359] = 301, + [360] = 310, + [361] = 328, + [362] = 332, + [363] = 335, + [364] = 339, + [365] = 348, + [366] = 352, + [367] = 357, + [368] = 356, + [369] = 307, + [370] = 259, + [371] = 295, + [372] = 311, + [373] = 293, + [374] = 301, + [375] = 339, + [376] = 258, + [377] = 295, + [378] = 260, + [379] = 311, + [380] = 262, + [381] = 263, + [382] = 339, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 384, + [387] = 387, + [388] = 388, + [389] = 384, + [390] = 388, + [391] = 387, + [392] = 387, + [393] = 388, [394] = 394, [395] = 395, - [396] = 396, + [396] = 395, [397] = 397, [398] = 398, [399] = 399, [400] = 400, - [401] = 401, + [401] = 395, [402] = 402, [403] = 403, - [404] = 404, + [404] = 249, [405] = 405, [406] = 406, [407] = 407, [408] = 408, [409] = 409, [410] = 410, - [411] = 411, + [411] = 243, [412] = 412, - [413] = 208, + [413] = 413, [414] = 414, [415] = 415, [416] = 416, [417] = 417, [418] = 418, [419] = 419, - [420] = 206, + [420] = 420, [421] = 421, [422] = 422, [423] = 423, - [424] = 418, - [425] = 418, + [424] = 424, + [425] = 425, [426] = 426, [427] = 427, - [428] = 410, + [428] = 428, [429] = 429, - [430] = 430, - [431] = 431, - [432] = 431, - [433] = 430, - [434] = 431, + [430] = 429, + [431] = 418, + [432] = 429, + [433] = 433, + [434] = 434, [435] = 435, [436] = 436, [437] = 436, - [438] = 435, - [439] = 430, - [440] = 440, - [441] = 440, - [442] = 442, - [443] = 443, + [438] = 436, + [439] = 439, + [440] = 434, + [441] = 435, + [442] = 435, + [443] = 439, [444] = 444, - [445] = 445, - [446] = 445, + [445] = 444, + [446] = 446, [447] = 447, - [448] = 447, - [449] = 444, - [450] = 445, - [451] = 444, - [452] = 444, - [453] = 447, - [454] = 445, - [455] = 447, - [456] = 456, - [457] = 457, - [458] = 457, - [459] = 457, - [460] = 457, + [448] = 448, + [449] = 448, + [450] = 450, + [451] = 451, + [452] = 450, + [453] = 451, + [454] = 448, + [455] = 450, + [456] = 448, + [457] = 451, + [458] = 450, + [459] = 451, + [460] = 460, [461] = 461, [462] = 461, - [463] = 290, + [463] = 461, [464] = 461, - [465] = 461, - [466] = 466, - [467] = 466, - [468] = 466, - [469] = 395, - [470] = 396, - [471] = 398, - [472] = 394, - [473] = 397, - [474] = 466, - [475] = 409, - [476] = 476, + [465] = 465, + [466] = 465, + [467] = 465, + [468] = 465, + [469] = 385, + [470] = 470, + [471] = 470, + [472] = 470, + [473] = 394, + [474] = 397, + [475] = 400, + [476] = 398, [477] = 402, - [478] = 422, + [478] = 470, [479] = 479, - [480] = 427, - [481] = 411, - [482] = 421, - [483] = 406, - [484] = 399, - [485] = 400, - [486] = 486, - [487] = 423, - [488] = 407, - [489] = 489, - [490] = 404, - [491] = 426, - [492] = 408, - [493] = 415, + [480] = 480, + [481] = 424, + [482] = 423, + [483] = 408, + [484] = 409, + [485] = 410, + [486] = 426, + [487] = 417, + [488] = 427, + [489] = 425, + [490] = 412, + [491] = 415, + [492] = 403, + [493] = 422, [494] = 414, - [495] = 476, - [496] = 405, - [497] = 416, - [498] = 401, - [499] = 499, - [500] = 500, - [501] = 500, - [502] = 499, + [495] = 407, + [496] = 413, + [497] = 421, + [498] = 405, + [499] = 420, + [500] = 480, + [501] = 501, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, @@ -4659,33 +4673,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [647] = 647, [648] = 648, [649] = 649, - [650] = 650, + [650] = 398, [651] = 651, [652] = 652, [653] = 653, [654] = 654, [655] = 655, - [656] = 395, - [657] = 657, + [656] = 656, + [657] = 402, [658] = 658, [659] = 659, - [660] = 660, + [660] = 400, [661] = 661, - [662] = 662, + [662] = 394, [663] = 663, [664] = 664, [665] = 665, [666] = 666, - [667] = 397, + [667] = 667, [668] = 668, [669] = 669, [670] = 670, - [671] = 398, + [671] = 671, [672] = 672, [673] = 673, [674] = 674, - [675] = 394, - [676] = 396, + [675] = 675, + [676] = 676, [677] = 677, [678] = 678, [679] = 679, @@ -4702,8 +4716,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [690] = 690, [691] = 691, [692] = 692, - [693] = 693, - [694] = 615, + [693] = 629, + [694] = 694, [695] = 695, [696] = 696, [697] = 697, @@ -4711,7 +4725,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [699] = 699, [700] = 700, [701] = 701, - [702] = 702, + [702] = 651, [703] = 703, [704] = 704, [705] = 705, @@ -4729,7 +4743,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [717] = 717, [718] = 718, [719] = 719, - [720] = 701, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, @@ -4792,15 +4806,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [780] = 780, [781] = 781, [782] = 782, - [783] = 783, + [783] = 397, [784] = 784, [785] = 785, [786] = 786, [787] = 787, [788] = 788, - [789] = 789, + [789] = 785, [790] = 790, - [791] = 791, + [791] = 787, [792] = 792, [793] = 793, [794] = 794, @@ -4809,303 +4823,303 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [797] = 797, [798] = 798, [799] = 799, - [800] = 797, + [800] = 800, [801] = 801, - [802] = 798, + [802] = 802, [803] = 803, - [804] = 799, + [804] = 804, [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, + [806] = 804, + [807] = 802, + [808] = 800, [809] = 809, [810] = 810, - [811] = 809, - [812] = 810, + [811] = 811, + [812] = 809, [813] = 813, [814] = 814, - [815] = 807, - [816] = 808, - [817] = 805, - [818] = 806, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 815, [819] = 819, - [820] = 820, - [821] = 821, - [822] = 821, - [823] = 823, - [824] = 824, + [820] = 817, + [821] = 810, + [822] = 822, + [823] = 811, + [824] = 822, [825] = 825, [826] = 826, [827] = 827, [828] = 828, [829] = 829, - [830] = 826, - [831] = 831, + [830] = 830, + [831] = 828, [832] = 832, [833] = 833, - [834] = 821, - [835] = 827, - [836] = 828, + [834] = 834, + [835] = 835, + [836] = 835, [837] = 837, - [838] = 838, - [839] = 829, + [838] = 830, + [839] = 839, [840] = 840, - [841] = 824, - [842] = 833, - [843] = 840, + [841] = 837, + [842] = 827, + [843] = 843, [844] = 844, - [845] = 832, - [846] = 837, + [845] = 845, + [846] = 843, [847] = 847, - [848] = 848, - [849] = 844, - [850] = 848, - [851] = 821, - [852] = 848, - [853] = 848, - [854] = 854, - [855] = 854, - [856] = 856, - [857] = 854, - [858] = 854, - [859] = 854, - [860] = 860, - [861] = 861, - [862] = 861, - [863] = 863, + [848] = 840, + [849] = 845, + [850] = 844, + [851] = 826, + [852] = 833, + [853] = 839, + [854] = 833, + [855] = 839, + [856] = 833, + [857] = 839, + [858] = 858, + [859] = 859, + [860] = 859, + [861] = 859, + [862] = 859, + [863] = 859, [864] = 864, [865] = 865, [866] = 866, - [867] = 861, - [868] = 864, + [867] = 867, + [868] = 868, [869] = 869, - [870] = 870, + [870] = 868, [871] = 871, - [872] = 864, - [873] = 865, - [874] = 871, - [875] = 871, - [876] = 876, - [877] = 863, - [878] = 878, - [879] = 860, - [880] = 863, - [881] = 861, - [882] = 863, - [883] = 861, - [884] = 884, - [885] = 863, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, + [872] = 872, + [873] = 868, + [874] = 869, + [875] = 875, + [876] = 871, + [877] = 877, + [878] = 869, + [879] = 864, + [880] = 880, + [881] = 881, + [882] = 875, + [883] = 880, + [884] = 871, + [885] = 864, + [886] = 871, + [887] = 864, + [888] = 864, + [889] = 871, [890] = 890, [891] = 891, [892] = 892, [893] = 893, [894] = 894, - [895] = 895, + [895] = 893, [896] = 896, - [897] = 887, + [897] = 896, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 886, - [903] = 903, + [902] = 902, + [903] = 891, [904] = 904, [905] = 905, [906] = 906, [907] = 907, [908] = 908, - [909] = 909, + [909] = 894, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, [915] = 915, - [916] = 916, + [916] = 891, [917] = 917, [918] = 918, [919] = 919, [920] = 920, [921] = 921, - [922] = 922, - [923] = 923, + [922] = 904, + [923] = 919, [924] = 924, - [925] = 917, - [926] = 926, - [927] = 927, - [928] = 928, + [925] = 925, + [926] = 906, + [927] = 907, + [928] = 894, [929] = 929, - [930] = 907, + [930] = 908, [931] = 931, [932] = 932, [933] = 933, - [934] = 934, + [934] = 921, [935] = 935, [936] = 936, [937] = 937, [938] = 938, - [939] = 939, - [940] = 917, + [939] = 893, + [940] = 940, [941] = 941, - [942] = 918, - [943] = 943, - [944] = 894, + [942] = 942, + [943] = 896, + [944] = 919, [945] = 945, [946] = 946, - [947] = 895, - [948] = 887, - [949] = 886, - [950] = 906, - [951] = 951, - [952] = 903, + [947] = 910, + [948] = 948, + [949] = 918, + [950] = 950, + [951] = 912, + [952] = 952, [953] = 953, - [954] = 954, - [955] = 918, - [956] = 935, - [957] = 957, - [958] = 936, - [959] = 943, - [960] = 907, - [961] = 923, - [962] = 921, - [963] = 929, - [964] = 907, - [965] = 905, - [966] = 931, + [954] = 914, + [955] = 955, + [956] = 910, + [957] = 912, + [958] = 914, + [959] = 959, + [960] = 960, + [961] = 961, + [962] = 920, + [963] = 963, + [964] = 918, + [965] = 894, + [966] = 966, [967] = 967, - [968] = 922, - [969] = 907, + [968] = 968, + [969] = 961, [970] = 970, - [971] = 971, + [971] = 938, [972] = 972, - [973] = 919, - [974] = 927, - [975] = 933, - [976] = 953, - [977] = 931, - [978] = 978, - [979] = 896, - [980] = 898, - [981] = 920, - [982] = 982, - [983] = 935, - [984] = 936, - [985] = 894, - [986] = 943, - [987] = 895, - [988] = 922, - [989] = 887, - [990] = 886, - [991] = 906, - [992] = 932, - [993] = 993, - [994] = 888, - [995] = 889, - [996] = 904, - [997] = 928, + [973] = 952, + [974] = 974, + [975] = 931, + [976] = 893, + [977] = 950, + [978] = 948, + [979] = 955, + [980] = 942, + [981] = 953, + [982] = 960, + [983] = 983, + [984] = 984, + [985] = 911, + [986] = 932, + [987] = 987, + [988] = 988, + [989] = 891, + [990] = 990, + [991] = 904, + [992] = 931, + [993] = 906, + [994] = 907, + [995] = 908, + [996] = 935, + [997] = 967, [998] = 998, - [999] = 998, + [999] = 999, [1000] = 1000, - [1001] = 926, - [1002] = 1002, - [1003] = 893, - [1004] = 901, - [1005] = 935, - [1006] = 936, - [1007] = 943, - [1008] = 1008, - [1009] = 1009, - [1010] = 911, - [1011] = 913, - [1012] = 1012, - [1013] = 899, - [1014] = 900, - [1015] = 1015, - [1016] = 934, - [1017] = 938, - [1018] = 951, - [1019] = 957, - [1020] = 970, - [1021] = 1021, - [1022] = 891, - [1023] = 892, - [1024] = 920, - [1025] = 945, - [1026] = 946, - [1027] = 954, - [1028] = 894, - [1029] = 967, - [1030] = 982, - [1031] = 1008, - [1032] = 1002, - [1033] = 924, + [1001] = 899, + [1002] = 892, + [1003] = 906, + [1004] = 917, + [1005] = 970, + [1006] = 983, + [1007] = 1007, + [1008] = 929, + [1009] = 910, + [1010] = 912, + [1011] = 914, + [1012] = 974, + [1013] = 1013, + [1014] = 1014, + [1015] = 984, + [1016] = 936, + [1017] = 937, + [1018] = 898, + [1019] = 900, + [1020] = 901, + [1021] = 902, + [1022] = 905, + [1023] = 913, + [1024] = 924, + [1025] = 925, + [1026] = 1026, + [1027] = 918, + [1028] = 1028, + [1029] = 1029, + [1030] = 1029, + [1031] = 1031, + [1032] = 1032, + [1033] = 1031, [1034] = 1034, - [1035] = 920, - [1036] = 923, - [1037] = 993, - [1038] = 978, - [1039] = 895, - [1040] = 922, - [1041] = 887, - [1042] = 1021, - [1043] = 929, - [1044] = 906, - [1045] = 971, + [1035] = 1007, + [1036] = 972, + [1037] = 959, + [1038] = 891, + [1039] = 961, + [1040] = 893, + [1041] = 907, + [1042] = 1032, + [1043] = 1013, + [1044] = 1014, + [1045] = 908, [1046] = 1046, - [1047] = 1000, - [1048] = 1048, - [1049] = 1009, - [1050] = 917, - [1051] = 919, - [1052] = 918, - [1053] = 931, - [1054] = 929, - [1055] = 894, - [1056] = 972, - [1057] = 929, - [1058] = 1058, - [1059] = 518, - [1060] = 1060, - [1061] = 1061, + [1047] = 998, + [1048] = 999, + [1049] = 1034, + [1050] = 1050, + [1051] = 1000, + [1052] = 890, + [1053] = 920, + [1054] = 931, + [1055] = 921, + [1056] = 904, + [1057] = 906, + [1058] = 920, + [1059] = 896, + [1060] = 921, + [1061] = 896, [1062] = 1062, - [1063] = 1063, - [1064] = 518, + [1063] = 580, + [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 1068, - [1069] = 395, + [1068] = 580, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 412, - [1074] = 398, - [1075] = 394, - [1076] = 208, + [1073] = 416, + [1074] = 1074, + [1075] = 249, + [1076] = 1076, [1077] = 1077, - [1078] = 396, - [1079] = 417, - [1080] = 1080, + [1078] = 402, + [1079] = 1079, + [1080] = 400, [1081] = 397, - [1082] = 206, + [1082] = 394, [1083] = 1083, - [1084] = 559, - [1085] = 1085, - [1086] = 1058, - [1087] = 682, + [1084] = 398, + [1085] = 243, + [1086] = 406, + [1087] = 691, [1088] = 1088, [1089] = 1089, - [1090] = 748, - [1091] = 617, - [1092] = 520, + [1090] = 610, + [1091] = 758, + [1092] = 552, [1093] = 1093, - [1094] = 1094, + [1094] = 512, [1095] = 1095, - [1096] = 1096, + [1096] = 1062, [1097] = 1097, [1098] = 1098, [1099] = 1099, @@ -5116,297 +5130,297 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1104] = 1104, [1105] = 1105, [1106] = 1106, - [1107] = 674, + [1107] = 1107, [1108] = 1108, - [1109] = 645, - [1110] = 648, - [1111] = 649, - [1112] = 650, - [1113] = 653, - [1114] = 654, - [1115] = 655, - [1116] = 663, - [1117] = 673, - [1118] = 678, - [1119] = 679, - [1120] = 681, - [1121] = 703, - [1122] = 704, - [1123] = 719, - [1124] = 725, - [1125] = 604, - [1126] = 605, - [1127] = 606, - [1128] = 607, - [1129] = 608, - [1130] = 609, - [1131] = 610, - [1132] = 611, - [1133] = 612, - [1134] = 613, - [1135] = 618, - [1136] = 619, - [1137] = 620, - [1138] = 621, - [1139] = 622, - [1140] = 623, - [1141] = 624, - [1142] = 625, - [1143] = 626, - [1144] = 627, - [1145] = 628, - [1146] = 629, - [1147] = 630, - [1148] = 631, - [1149] = 632, - [1150] = 633, - [1151] = 635, - [1152] = 637, - [1153] = 638, - [1154] = 639, - [1155] = 640, - [1156] = 641, - [1157] = 642, - [1158] = 643, - [1159] = 646, - [1160] = 647, - [1161] = 651, - [1162] = 652, - [1163] = 657, - [1164] = 658, - [1165] = 659, - [1166] = 660, - [1167] = 661, - [1168] = 662, - [1169] = 664, - [1170] = 665, - [1171] = 666, - [1172] = 668, - [1173] = 669, - [1174] = 670, - [1175] = 672, - [1176] = 677, - [1177] = 680, - [1178] = 683, - [1179] = 684, - [1180] = 685, - [1181] = 686, - [1182] = 687, - [1183] = 688, - [1184] = 689, - [1185] = 690, - [1186] = 691, - [1187] = 692, - [1188] = 693, - [1189] = 695, - [1190] = 696, - [1191] = 697, - [1192] = 698, - [1193] = 699, - [1194] = 700, - [1195] = 702, - [1196] = 705, - [1197] = 706, - [1198] = 707, - [1199] = 708, - [1200] = 709, - [1201] = 710, - [1202] = 711, - [1203] = 712, - [1204] = 713, - [1205] = 714, - [1206] = 715, - [1207] = 716, - [1208] = 721, - [1209] = 722, - [1210] = 726, - [1211] = 727, - [1212] = 728, - [1213] = 729, - [1214] = 730, - [1215] = 731, - [1216] = 732, - [1217] = 733, - [1218] = 734, - [1219] = 735, - [1220] = 736, - [1221] = 737, - [1222] = 738, - [1223] = 739, - [1224] = 740, - [1225] = 741, - [1226] = 742, - [1227] = 743, - [1228] = 744, - [1229] = 745, - [1230] = 747, - [1231] = 749, - [1232] = 750, - [1233] = 751, - [1234] = 752, - [1235] = 753, - [1236] = 754, - [1237] = 755, - [1238] = 756, - [1239] = 757, - [1240] = 758, - [1241] = 759, - [1242] = 760, - [1243] = 761, - [1244] = 762, - [1245] = 763, - [1246] = 764, - [1247] = 765, - [1248] = 766, - [1249] = 767, - [1250] = 768, - [1251] = 769, - [1252] = 770, - [1253] = 771, - [1254] = 772, - [1255] = 773, - [1256] = 774, - [1257] = 775, - [1258] = 776, - [1259] = 777, - [1260] = 778, - [1261] = 779, - [1262] = 780, - [1263] = 781, - [1264] = 782, - [1265] = 783, - [1266] = 784, - [1267] = 785, - [1268] = 786, - [1269] = 504, - [1270] = 505, - [1271] = 506, - [1272] = 507, - [1273] = 508, - [1274] = 509, - [1275] = 510, - [1276] = 511, - [1277] = 512, - [1278] = 513, - [1279] = 514, - [1280] = 515, - [1281] = 516, - [1282] = 517, - [1283] = 519, - [1284] = 521, - [1285] = 522, - [1286] = 523, - [1287] = 524, - [1288] = 525, - [1289] = 526, - [1290] = 527, - [1291] = 528, - [1292] = 529, - [1293] = 530, - [1294] = 531, - [1295] = 532, - [1296] = 533, - [1297] = 534, - [1298] = 787, - [1299] = 536, - [1300] = 537, - [1301] = 538, - [1302] = 539, - [1303] = 540, - [1304] = 541, - [1305] = 542, - [1306] = 543, - [1307] = 544, - [1308] = 545, - [1309] = 546, - [1310] = 547, - [1311] = 548, - [1312] = 549, - [1313] = 550, - [1314] = 551, - [1315] = 503, - [1316] = 552, - [1317] = 553, - [1318] = 554, - [1319] = 555, - [1320] = 556, - [1321] = 557, - [1322] = 558, - [1323] = 560, - [1324] = 561, - [1325] = 562, - [1326] = 563, - [1327] = 564, - [1328] = 565, - [1329] = 566, - [1330] = 567, - [1331] = 568, - [1332] = 569, - [1333] = 570, - [1334] = 571, - [1335] = 572, - [1336] = 573, - [1337] = 574, - [1338] = 575, - [1339] = 576, - [1340] = 577, - [1341] = 578, - [1342] = 579, - [1343] = 580, - [1344] = 581, - [1345] = 582, - [1346] = 583, - [1347] = 584, - [1348] = 585, - [1349] = 586, - [1350] = 587, - [1351] = 588, - [1352] = 589, - [1353] = 590, - [1354] = 591, - [1355] = 592, - [1356] = 593, - [1357] = 594, - [1358] = 595, - [1359] = 596, - [1360] = 597, - [1361] = 598, - [1362] = 599, - [1363] = 600, - [1364] = 601, - [1365] = 602, - [1366] = 603, - [1367] = 1367, - [1368] = 518, - [1369] = 1369, - [1370] = 1370, - [1371] = 651, - [1372] = 518, - [1373] = 518, - [1374] = 1374, - [1375] = 1108, - [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1108, - [1381] = 1381, - [1382] = 1382, - [1383] = 1108, - [1384] = 535, - [1385] = 1385, - [1386] = 1060, - [1387] = 1067, - [1388] = 614, - [1389] = 634, + [1109] = 1109, + [1110] = 1110, + [1111] = 752, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 655, + [1121] = 1121, + [1122] = 1064, + [1123] = 1070, + [1124] = 628, + [1125] = 503, + [1126] = 1072, + [1127] = 1071, + [1128] = 642, + [1129] = 653, + [1130] = 654, + [1131] = 656, + [1132] = 664, + [1133] = 675, + [1134] = 683, + [1135] = 687, + [1136] = 690, + [1137] = 712, + [1138] = 725, + [1139] = 726, + [1140] = 727, + [1141] = 728, + [1142] = 730, + [1143] = 754, + [1144] = 755, + [1145] = 598, + [1146] = 599, + [1147] = 600, + [1148] = 601, + [1149] = 602, + [1150] = 604, + [1151] = 605, + [1152] = 606, + [1153] = 607, + [1154] = 608, + [1155] = 611, + [1156] = 612, + [1157] = 613, + [1158] = 614, + [1159] = 615, + [1160] = 616, + [1161] = 617, + [1162] = 618, + [1163] = 619, + [1164] = 620, + [1165] = 621, + [1166] = 622, + [1167] = 623, + [1168] = 624, + [1169] = 625, + [1170] = 626, + [1171] = 630, + [1172] = 631, + [1173] = 632, + [1174] = 633, + [1175] = 634, + [1176] = 635, + [1177] = 636, + [1178] = 637, + [1179] = 643, + [1180] = 649, + [1181] = 658, + [1182] = 659, + [1183] = 663, + [1184] = 666, + [1185] = 667, + [1186] = 670, + [1187] = 673, + [1188] = 674, + [1189] = 676, + [1190] = 677, + [1191] = 678, + [1192] = 679, + [1193] = 680, + [1194] = 681, + [1195] = 682, + [1196] = 685, + [1197] = 686, + [1198] = 689, + [1199] = 692, + [1200] = 694, + [1201] = 695, + [1202] = 696, + [1203] = 697, + [1204] = 698, + [1205] = 699, + [1206] = 700, + [1207] = 701, + [1208] = 703, + [1209] = 704, + [1210] = 705, + [1211] = 706, + [1212] = 707, + [1213] = 708, + [1214] = 709, + [1215] = 710, + [1216] = 711, + [1217] = 713, + [1218] = 714, + [1219] = 715, + [1220] = 716, + [1221] = 717, + [1222] = 718, + [1223] = 719, + [1224] = 720, + [1225] = 721, + [1226] = 722, + [1227] = 723, + [1228] = 724, + [1229] = 729, + [1230] = 731, + [1231] = 733, + [1232] = 734, + [1233] = 735, + [1234] = 736, + [1235] = 737, + [1236] = 738, + [1237] = 739, + [1238] = 740, + [1239] = 741, + [1240] = 742, + [1241] = 743, + [1242] = 744, + [1243] = 745, + [1244] = 746, + [1245] = 747, + [1246] = 748, + [1247] = 749, + [1248] = 750, + [1249] = 751, + [1250] = 756, + [1251] = 759, + [1252] = 761, + [1253] = 762, + [1254] = 763, + [1255] = 764, + [1256] = 765, + [1257] = 766, + [1258] = 767, + [1259] = 768, + [1260] = 769, + [1261] = 770, + [1262] = 771, + [1263] = 772, + [1264] = 773, + [1265] = 774, + [1266] = 776, + [1267] = 1117, + [1268] = 778, + [1269] = 779, + [1270] = 780, + [1271] = 781, + [1272] = 782, + [1273] = 638, + [1274] = 661, + [1275] = 509, + [1276] = 603, + [1277] = 609, + [1278] = 627, + [1279] = 640, + [1280] = 641, + [1281] = 644, + [1282] = 645, + [1283] = 646, + [1284] = 647, + [1285] = 648, + [1286] = 652, + [1287] = 665, + [1288] = 668, + [1289] = 669, + [1290] = 671, + [1291] = 672, + [1292] = 684, + [1293] = 688, + [1294] = 753, + [1295] = 760, + [1296] = 775, + [1297] = 504, + [1298] = 505, + [1299] = 506, + [1300] = 507, + [1301] = 508, + [1302] = 510, + [1303] = 511, + [1304] = 513, + [1305] = 514, + [1306] = 515, + [1307] = 516, + [1308] = 517, + [1309] = 518, + [1310] = 519, + [1311] = 520, + [1312] = 521, + [1313] = 522, + [1314] = 523, + [1315] = 524, + [1316] = 525, + [1317] = 526, + [1318] = 527, + [1319] = 528, + [1320] = 529, + [1321] = 530, + [1322] = 531, + [1323] = 532, + [1324] = 533, + [1325] = 534, + [1326] = 535, + [1327] = 536, + [1328] = 537, + [1329] = 538, + [1330] = 539, + [1331] = 540, + [1332] = 541, + [1333] = 542, + [1334] = 543, + [1335] = 544, + [1336] = 545, + [1337] = 546, + [1338] = 547, + [1339] = 548, + [1340] = 549, + [1341] = 550, + [1342] = 551, + [1343] = 553, + [1344] = 554, + [1345] = 555, + [1346] = 556, + [1347] = 557, + [1348] = 558, + [1349] = 559, + [1350] = 560, + [1351] = 561, + [1352] = 562, + [1353] = 563, + [1354] = 564, + [1355] = 565, + [1356] = 566, + [1357] = 567, + [1358] = 568, + [1359] = 569, + [1360] = 570, + [1361] = 571, + [1362] = 572, + [1363] = 573, + [1364] = 574, + [1365] = 575, + [1366] = 576, + [1367] = 577, + [1368] = 578, + [1369] = 579, + [1370] = 581, + [1371] = 582, + [1372] = 583, + [1373] = 584, + [1374] = 585, + [1375] = 586, + [1376] = 587, + [1377] = 588, + [1378] = 589, + [1379] = 590, + [1380] = 591, + [1381] = 592, + [1382] = 593, + [1383] = 594, + [1384] = 595, + [1385] = 596, + [1386] = 597, + [1387] = 580, + [1388] = 658, + [1389] = 580, [1390] = 1390, - [1391] = 1066, - [1392] = 1068, - [1393] = 724, - [1394] = 1394, + [1391] = 1391, + [1392] = 580, + [1393] = 1117, + [1394] = 1117, [1395] = 1395, [1396] = 1396, - [1397] = 1397, + [1397] = 777, [1398] = 1398, [1399] = 1399, [1400] = 1400, @@ -5414,16 +5428,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 1405, + [1405] = 444, [1406] = 1406, - [1407] = 1072, + [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, - [1411] = 1411, + [1411] = 1083, [1412] = 1412, [1413] = 1413, - [1414] = 1072, + [1414] = 1414, [1415] = 1415, [1416] = 1416, [1417] = 1417, @@ -5432,130 +5446,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 440, + [1423] = 1423, [1424] = 1424, - [1425] = 1425, + [1425] = 1069, [1426] = 1426, - [1427] = 290, + [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 1431, + [1431] = 385, [1432] = 1432, - [1433] = 1065, - [1434] = 1434, + [1433] = 1433, + [1434] = 1083, [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 188, - [1443] = 206, + [1440] = 211, + [1441] = 400, + [1442] = 1442, + [1443] = 1443, [1444] = 1444, - [1445] = 406, - [1446] = 426, - [1447] = 401, - [1448] = 407, + [1445] = 1445, + [1446] = 425, + [1447] = 1447, + [1448] = 1448, [1449] = 1449, [1450] = 1450, [1451] = 1451, - [1452] = 405, - [1453] = 404, + [1452] = 1452, + [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 1456, + [1456] = 403, [1457] = 1457, [1458] = 1458, - [1459] = 1072, + [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, [1463] = 1463, [1464] = 1464, - [1465] = 1465, - [1466] = 192, + [1465] = 416, + [1466] = 1466, [1467] = 1467, [1468] = 1468, [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1472, + [1472] = 249, [1473] = 1473, - [1474] = 191, - [1475] = 417, - [1476] = 398, + [1474] = 398, + [1475] = 422, + [1476] = 405, [1477] = 1477, - [1478] = 1478, + [1478] = 420, [1479] = 1479, - [1480] = 400, + [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 174, - [1490] = 1490, - [1491] = 422, + [1484] = 243, + [1485] = 424, + [1486] = 421, + [1487] = 413, + [1488] = 423, + [1489] = 408, + [1490] = 409, + [1491] = 410, [1492] = 1492, - [1493] = 1493, - [1494] = 1494, + [1493] = 204, + [1494] = 402, [1495] = 1495, [1496] = 1496, - [1497] = 427, + [1497] = 1497, [1498] = 1498, [1499] = 1499, - [1500] = 416, + [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, [1504] = 1504, - [1505] = 1505, + [1505] = 412, [1506] = 1506, [1507] = 1507, - [1508] = 1508, - [1509] = 402, - [1510] = 409, - [1511] = 203, - [1512] = 1512, - [1513] = 1513, - [1514] = 1514, + [1508] = 414, + [1509] = 426, + [1510] = 406, + [1511] = 1511, + [1512] = 417, + [1513] = 397, + [1514] = 407, [1515] = 1515, [1516] = 1516, [1517] = 1517, [1518] = 1518, - [1519] = 1519, - [1520] = 208, + [1519] = 415, + [1520] = 1520, [1521] = 1521, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 396, - [1526] = 395, + [1525] = 1525, + [1526] = 1526, [1527] = 1527, - [1528] = 1528, - [1529] = 412, + [1528] = 205, + [1529] = 1529, [1530] = 1530, - [1531] = 1531, - [1532] = 408, - [1533] = 411, - [1534] = 399, - [1535] = 414, - [1536] = 415, - [1537] = 421, + [1531] = 1083, + [1532] = 427, + [1533] = 1533, + [1534] = 208, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, [1538] = 1538, [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, - [1543] = 397, + [1543] = 1543, [1544] = 1544, - [1545] = 394, - [1546] = 423, + [1545] = 1545, + [1546] = 394, [1547] = 1547, [1548] = 1548, [1549] = 1549, @@ -5566,803 +5580,803 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1554] = 1554, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 209, [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1561, + [1561] = 1083, [1562] = 1562, - [1563] = 1563, + [1563] = 1083, [1564] = 1564, [1565] = 1565, - [1566] = 1072, + [1566] = 1566, [1567] = 1567, - [1568] = 1561, - [1569] = 1072, - [1570] = 1562, - [1571] = 1559, - [1572] = 1572, - [1573] = 1080, - [1574] = 1574, - [1575] = 1575, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1567, + [1573] = 1573, + [1574] = 1569, + [1575] = 1573, [1576] = 1576, [1577] = 1577, [1578] = 1578, [1579] = 1579, - [1580] = 1580, + [1580] = 1079, [1581] = 1581, [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, - [1587] = 1070, - [1588] = 1374, - [1589] = 1385, - [1590] = 1590, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1396, [1591] = 1591, [1592] = 1592, [1593] = 1593, [1594] = 1594, [1595] = 1595, - [1596] = 1071, - [1597] = 1597, - [1598] = 1088, - [1599] = 1374, - [1600] = 1385, - [1601] = 1374, - [1602] = 1385, - [1603] = 1603, - [1604] = 1096, - [1605] = 1405, - [1606] = 1603, - [1607] = 1402, - [1608] = 1418, - [1609] = 1098, - [1610] = 1094, - [1611] = 1425, - [1612] = 1102, - [1613] = 1522, - [1614] = 1524, - [1615] = 1106, - [1616] = 1425, - [1617] = 1402, - [1618] = 1603, - [1619] = 1101, - [1620] = 1522, - [1621] = 1104, - [1622] = 1524, - [1623] = 1405, - [1624] = 1603, - [1625] = 1093, - [1626] = 1418, - [1627] = 1627, - [1628] = 1493, - [1629] = 1627, - [1630] = 1379, - [1631] = 1505, + [1596] = 1596, + [1597] = 1074, + [1598] = 1112, + [1599] = 1599, + [1600] = 1076, + [1601] = 1601, + [1602] = 1088, + [1603] = 1396, + [1604] = 1396, + [1605] = 1112, + [1606] = 1112, + [1607] = 1607, + [1608] = 1102, + [1609] = 1552, + [1610] = 1105, + [1611] = 1100, + [1612] = 1418, + [1613] = 1098, + [1614] = 1418, + [1615] = 1553, + [1616] = 1616, + [1617] = 1398, + [1618] = 1406, + [1619] = 1099, + [1620] = 1398, + [1621] = 1103, + [1622] = 1616, + [1623] = 1097, + [1624] = 1616, + [1625] = 1416, + [1626] = 1109, + [1627] = 1416, + [1628] = 1552, + [1629] = 1553, + [1630] = 1616, + [1631] = 1406, [1632] = 1632, - [1633] = 1493, - [1634] = 1399, - [1635] = 1367, - [1636] = 1636, - [1637] = 1558, - [1638] = 1632, - [1639] = 1557, - [1640] = 1401, - [1641] = 1400, - [1642] = 1522, - [1643] = 1643, - [1644] = 1524, - [1645] = 1416, - [1646] = 1627, - [1647] = 1419, - [1648] = 1400, - [1649] = 1643, - [1650] = 290, - [1651] = 1651, - [1652] = 1377, - [1653] = 1632, - [1654] = 1390, - [1655] = 1505, - [1656] = 1627, - [1657] = 1636, - [1658] = 1632, - [1659] = 1403, - [1660] = 1558, - [1661] = 1574, - [1662] = 1395, - [1663] = 1396, - [1664] = 1398, - [1665] = 1586, - [1666] = 1411, - [1667] = 1667, - [1668] = 1575, - [1669] = 1584, - [1670] = 1670, - [1671] = 1557, - [1672] = 1412, - [1673] = 1409, - [1674] = 1424, - [1675] = 395, - [1676] = 1592, - [1677] = 1413, - [1678] = 1417, - [1679] = 397, - [1680] = 1667, - [1681] = 1404, - [1682] = 1426, - [1683] = 1577, - [1684] = 1434, - [1685] = 1394, - [1686] = 1582, - [1687] = 1410, - [1688] = 1688, - [1689] = 398, - [1690] = 1591, - [1691] = 1578, - [1692] = 1572, - [1693] = 394, - [1694] = 1579, - [1695] = 1415, - [1696] = 1696, - [1697] = 1585, - [1698] = 1670, - [1699] = 1576, - [1700] = 1581, - [1701] = 1590, - [1702] = 1406, - [1703] = 1594, - [1704] = 1704, - [1705] = 1429, - [1706] = 1595, - [1707] = 1707, - [1708] = 396, - [1709] = 1432, - [1710] = 1580, - [1711] = 1593, - [1712] = 1408, - [1713] = 1420, - [1714] = 1714, - [1715] = 1421, - [1716] = 1422, - [1717] = 1428, - [1718] = 1430, - [1719] = 1707, - [1720] = 1431, - [1721] = 1583, - [1722] = 1460, + [1633] = 1633, + [1634] = 1436, + [1635] = 1552, + [1636] = 1553, + [1637] = 1502, + [1638] = 1449, + [1639] = 1436, + [1640] = 1121, + [1641] = 1113, + [1642] = 1114, + [1643] = 1502, + [1644] = 1116, + [1645] = 1449, + [1646] = 1412, + [1647] = 1432, + [1648] = 1407, + [1649] = 1417, + [1650] = 1650, + [1651] = 385, + [1652] = 1652, + [1653] = 1633, + [1654] = 1654, + [1655] = 1654, + [1656] = 1650, + [1657] = 1632, + [1658] = 1650, + [1659] = 1632, + [1660] = 1650, + [1661] = 1632, + [1662] = 1564, + [1663] = 1562, + [1664] = 1664, + [1665] = 1665, + [1666] = 1420, + [1667] = 1421, + [1668] = 1589, + [1669] = 1562, + [1670] = 1422, + [1671] = 1423, + [1672] = 1424, + [1673] = 1426, + [1674] = 1427, + [1675] = 1428, + [1676] = 1429, + [1677] = 1430, + [1678] = 1435, + [1679] = 1679, + [1680] = 1437, + [1681] = 1599, + [1682] = 1400, + [1683] = 1401, + [1684] = 1402, + [1685] = 1403, + [1686] = 1404, + [1687] = 1593, + [1688] = 1413, + [1689] = 1414, + [1690] = 1415, + [1691] = 1583, + [1692] = 1419, + [1693] = 1693, + [1694] = 1408, + [1695] = 1588, + [1696] = 1438, + [1697] = 1595, + [1698] = 1601, + [1699] = 1596, + [1700] = 1577, + [1701] = 398, + [1702] = 402, + [1703] = 400, + [1704] = 397, + [1705] = 394, + [1706] = 1578, + [1707] = 1586, + [1708] = 1594, + [1709] = 1576, + [1710] = 1581, + [1711] = 1579, + [1712] = 1584, + [1713] = 1587, + [1714] = 1693, + [1715] = 1715, + [1716] = 1591, + [1717] = 1717, + [1718] = 1592, + [1719] = 1717, + [1720] = 1582, + [1721] = 1409, + [1722] = 1410, [1723] = 1723, - [1724] = 408, - [1725] = 1725, - [1726] = 399, - [1727] = 414, - [1728] = 415, - [1729] = 421, - [1730] = 1730, - [1731] = 1490, - [1732] = 1585, - [1733] = 1551, - [1734] = 1734, - [1735] = 427, - [1736] = 1592, - [1737] = 1591, - [1738] = 416, - [1739] = 400, - [1740] = 402, - [1741] = 1578, - [1742] = 1579, - [1743] = 1580, - [1744] = 1581, - [1745] = 1575, - [1746] = 1574, - [1747] = 1577, - [1748] = 1582, - [1749] = 1583, - [1750] = 1584, - [1751] = 1572, - [1752] = 1492, - [1753] = 1496, - [1754] = 1593, - [1755] = 406, - [1756] = 407, - [1757] = 409, - [1758] = 1527, - [1759] = 1456, - [1760] = 1540, - [1761] = 426, - [1762] = 401, - [1763] = 404, - [1764] = 1586, - [1765] = 423, - [1766] = 405, - [1767] = 422, - [1768] = 188, - [1769] = 1769, - [1770] = 191, - [1771] = 411, - [1772] = 192, - [1773] = 1528, - [1774] = 1585, - [1775] = 203, - [1776] = 1592, - [1777] = 417, - [1778] = 174, - [1779] = 412, - [1780] = 1461, - [1781] = 1593, - [1782] = 1530, - [1783] = 1586, - [1784] = 208, - [1785] = 206, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1494, - [1791] = 1791, - [1792] = 1792, - [1793] = 1769, - [1794] = 1495, - [1795] = 1730, - [1796] = 1585, - [1797] = 1797, - [1798] = 1555, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1502, - [1804] = 1549, - [1805] = 1805, - [1806] = 1465, - [1807] = 1550, - [1808] = 1065, - [1809] = 1809, - [1810] = 1499, - [1811] = 1788, - [1812] = 1515, - [1813] = 1797, - [1814] = 1444, - [1815] = 1815, - [1816] = 1816, - [1817] = 1468, - [1818] = 1485, + [1724] = 1585, + [1725] = 1564, + [1726] = 1664, + [1727] = 1433, + [1728] = 1545, + [1729] = 1729, + [1730] = 1547, + [1731] = 1554, + [1732] = 1555, + [1733] = 1558, + [1734] = 1482, + [1735] = 1559, + [1736] = 1495, + [1737] = 1737, + [1738] = 1507, + [1739] = 1739, + [1740] = 1516, + [1741] = 1530, + [1742] = 1496, + [1743] = 1743, + [1744] = 1515, + [1745] = 1549, + [1746] = 1544, + [1747] = 1747, + [1748] = 1748, + [1749] = 1551, + [1750] = 1498, + [1751] = 1445, + [1752] = 1448, + [1753] = 1753, + [1754] = 1451, + [1755] = 1755, + [1756] = 1453, + [1757] = 1454, + [1758] = 1481, + [1759] = 1450, + [1760] = 1483, + [1761] = 1457, + [1762] = 1599, + [1763] = 1763, + [1764] = 1764, + [1765] = 1471, + [1766] = 1766, + [1767] = 1499, + [1768] = 1500, + [1769] = 1069, + [1770] = 1504, + [1771] = 1473, + [1772] = 1506, + [1773] = 1477, + [1774] = 1492, + [1775] = 1775, + [1776] = 1593, + [1777] = 1583, + [1778] = 1588, + [1779] = 1595, + [1780] = 1601, + [1781] = 1577, + [1782] = 1578, + [1783] = 1584, + [1784] = 1587, + [1785] = 1591, + [1786] = 1592, + [1787] = 1582, + [1788] = 1585, + [1789] = 1497, + [1790] = 1447, + [1791] = 1455, + [1792] = 1469, + [1793] = 1479, + [1794] = 1596, + [1795] = 1460, + [1796] = 1463, + [1797] = 1464, + [1798] = 1556, + [1799] = 1466, + [1800] = 1467, + [1801] = 1468, + [1802] = 1542, + [1803] = 1470, + [1804] = 1589, + [1805] = 1517, + [1806] = 1518, + [1807] = 1520, + [1808] = 1521, + [1809] = 1522, + [1810] = 1523, + [1811] = 1524, + [1812] = 1550, + [1813] = 1442, + [1814] = 1443, + [1815] = 1444, + [1816] = 1503, + [1817] = 1817, + [1818] = 1818, [1819] = 1819, [1820] = 1820, - [1821] = 1821, - [1822] = 1469, - [1823] = 1449, - [1824] = 1800, - [1825] = 1504, - [1826] = 1769, - [1827] = 1592, - [1828] = 1591, - [1829] = 1576, - [1830] = 1590, - [1831] = 1730, - [1832] = 1594, - [1833] = 1595, - [1834] = 1799, - [1835] = 1820, - [1836] = 1836, - [1837] = 1837, - [1838] = 1521, - [1839] = 1498, - [1840] = 1464, - [1841] = 1788, - [1842] = 1578, - [1843] = 1579, - [1844] = 1580, - [1845] = 1816, - [1846] = 440, - [1847] = 1575, - [1848] = 1574, - [1849] = 1577, - [1850] = 1582, - [1851] = 1583, - [1852] = 1769, - [1853] = 1815, - [1854] = 1730, - [1855] = 1799, - [1856] = 1584, - [1857] = 1572, - [1858] = 1450, - [1859] = 1451, - [1860] = 1788, - [1861] = 1487, - [1862] = 1816, - [1863] = 1488, - [1864] = 1819, - [1865] = 1769, - [1866] = 1799, - [1867] = 1805, - [1868] = 1788, - [1869] = 1816, - [1870] = 1556, - [1871] = 1769, - [1872] = 1799, - [1873] = 1508, - [1874] = 1503, - [1875] = 1788, - [1876] = 1816, - [1877] = 1769, - [1878] = 1799, - [1879] = 1788, - [1880] = 1501, - [1881] = 1816, - [1882] = 1809, - [1883] = 1593, + [1821] = 444, + [1822] = 424, + [1823] = 423, + [1824] = 408, + [1825] = 409, + [1826] = 410, + [1827] = 1526, + [1828] = 1599, + [1829] = 1501, + [1830] = 426, + [1831] = 1593, + [1832] = 1583, + [1833] = 417, + [1834] = 1452, + [1835] = 427, + [1836] = 425, + [1837] = 1588, + [1838] = 1595, + [1839] = 1601, + [1840] = 1577, + [1841] = 1578, + [1842] = 1584, + [1843] = 1587, + [1844] = 1591, + [1845] = 1592, + [1846] = 1582, + [1847] = 1585, + [1848] = 1459, + [1849] = 1462, + [1850] = 1458, + [1851] = 1596, + [1852] = 412, + [1853] = 415, + [1854] = 1854, + [1855] = 403, + [1856] = 1461, + [1857] = 1529, + [1858] = 422, + [1859] = 405, + [1860] = 421, + [1861] = 1589, + [1862] = 407, + [1863] = 414, + [1864] = 1527, + [1865] = 420, + [1866] = 204, + [1867] = 1867, + [1868] = 205, + [1869] = 413, + [1870] = 208, + [1871] = 1599, + [1872] = 209, + [1873] = 1593, + [1874] = 406, + [1875] = 211, + [1876] = 416, + [1877] = 1596, + [1878] = 1589, + [1879] = 1511, + [1880] = 1533, + [1881] = 243, + [1882] = 249, + [1883] = 1540, [1884] = 1884, - [1885] = 1513, - [1886] = 1517, - [1887] = 1816, - [1888] = 1523, - [1889] = 1470, - [1890] = 1531, - [1891] = 1791, - [1892] = 1514, - [1893] = 1542, - [1894] = 1507, - [1895] = 1472, - [1896] = 1516, - [1897] = 1454, - [1898] = 1547, - [1899] = 1457, - [1900] = 1548, - [1901] = 1462, - [1902] = 1463, - [1903] = 1473, - [1904] = 1471, - [1905] = 1799, - [1906] = 1552, - [1907] = 1478, - [1908] = 1486, - [1909] = 1441, - [1910] = 1576, - [1911] = 1519, - [1912] = 1590, - [1913] = 1884, - [1914] = 1455, - [1915] = 1586, - [1916] = 1916, - [1917] = 1594, - [1918] = 1595, - [1919] = 1553, - [1920] = 1467, - [1921] = 1554, - [1922] = 1477, - [1923] = 1479, - [1924] = 1924, - [1925] = 1436, - [1926] = 1482, - [1927] = 1437, - [1928] = 1506, - [1929] = 1438, - [1930] = 1435, - [1931] = 1512, - [1932] = 1439, - [1933] = 1440, - [1934] = 1518, - [1935] = 1935, - [1936] = 1544, - [1937] = 1481, - [1938] = 1538, - [1939] = 1539, - [1940] = 1541, - [1941] = 1483, - [1942] = 1484, - [1943] = 1792, - [1944] = 1944, - [1945] = 1458, - [1946] = 1581, + [1885] = 1817, + [1886] = 1820, + [1887] = 1586, + [1888] = 1888, + [1889] = 1766, + [1890] = 1594, + [1891] = 1439, + [1892] = 1576, + [1893] = 1854, + [1894] = 1894, + [1895] = 1895, + [1896] = 1896, + [1897] = 1897, + [1898] = 1729, + [1899] = 1748, + [1900] = 1753, + [1901] = 1737, + [1902] = 1560, + [1903] = 1903, + [1904] = 1817, + [1905] = 1480, + [1906] = 1586, + [1907] = 1594, + [1908] = 1576, + [1909] = 1820, + [1910] = 1581, + [1911] = 1579, + [1912] = 1888, + [1913] = 1896, + [1914] = 1914, + [1915] = 1525, + [1916] = 1896, + [1917] = 1748, + [1918] = 1817, + [1919] = 1820, + [1920] = 1888, + [1921] = 1897, + [1922] = 1922, + [1923] = 1581, + [1924] = 1896, + [1925] = 1579, + [1926] = 1748, + [1927] = 1817, + [1928] = 1928, + [1929] = 1888, + [1930] = 1896, + [1931] = 1748, + [1932] = 1817, + [1933] = 1888, + [1934] = 1884, + [1935] = 1896, + [1936] = 1748, + [1937] = 1817, + [1938] = 1888, + [1939] = 1896, + [1940] = 1748, + [1941] = 1535, + [1942] = 1942, + [1943] = 1536, + [1944] = 1541, + [1945] = 1942, + [1946] = 1914, [1947] = 1947, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, - [1951] = 1947, - [1952] = 1952, - [1953] = 1953, - [1954] = 1954, + [1948] = 1537, + [1949] = 1538, + [1950] = 1539, + [1951] = 1903, + [1952] = 1543, + [1953] = 1888, + [1954] = 1548, [1955] = 1955, [1956] = 1956, - [1957] = 1949, - [1958] = 1958, - [1959] = 1959, + [1957] = 1819, + [1958] = 1947, + [1959] = 1956, [1960] = 1960, - [1961] = 1961, - [1962] = 1958, + [1961] = 1955, + [1962] = 1962, [1963] = 1963, - [1964] = 1837, - [1965] = 1954, + [1964] = 1964, + [1965] = 1965, [1966] = 1966, - [1967] = 1967, + [1967] = 1960, [1968] = 1968, - [1969] = 1959, + [1969] = 1963, [1970] = 1970, - [1971] = 1955, + [1971] = 1971, [1972] = 1972, - [1973] = 1967, - [1974] = 1950, - [1975] = 1948, - [1976] = 1956, - [1977] = 1935, - [1978] = 1978, - [1979] = 1961, - [1980] = 1801, - [1981] = 1968, - [1982] = 1947, - [1983] = 1983, - [1984] = 1983, - [1985] = 1978, - [1986] = 1970, + [1973] = 1962, + [1974] = 1974, + [1975] = 1971, + [1976] = 1970, + [1977] = 1966, + [1978] = 1775, + [1979] = 1979, + [1980] = 1980, + [1981] = 1972, + [1982] = 1982, + [1983] = 1965, + [1984] = 1984, + [1985] = 1985, + [1986] = 1966, [1987] = 1987, [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1990, - [1992] = 1992, - [1993] = 1990, - [1994] = 1992, - [1995] = 1992, - [1996] = 1992, - [1997] = 1992, - [1998] = 1992, - [1999] = 1999, - [2000] = 1999, - [2001] = 174, - [2002] = 192, - [2003] = 2003, - [2004] = 1101, - [2005] = 1106, - [2006] = 1102, - [2007] = 1104, - [2008] = 1104, - [2009] = 1106, - [2010] = 1419, - [2011] = 1401, - [2012] = 1416, - [2013] = 1399, - [2014] = 1070, - [2015] = 1102, - [2016] = 1071, - [2017] = 1080, - [2018] = 1101, - [2019] = 1377, - [2020] = 1390, - [2021] = 1379, - [2022] = 1367, - [2023] = 2023, - [2024] = 1088, - [2025] = 1429, - [2026] = 1431, - [2027] = 1098, - [2028] = 2028, - [2029] = 1430, - [2030] = 2030, - [2031] = 1093, - [2032] = 1094, - [2033] = 1428, - [2034] = 2034, - [2035] = 2030, - [2036] = 1096, + [1989] = 1985, + [1990] = 1968, + [1991] = 1991, + [1992] = 1964, + [1993] = 1984, + [1994] = 1991, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1998, + [2000] = 1998, + [2001] = 1998, + [2002] = 2002, + [2003] = 2002, + [2004] = 1998, + [2005] = 1998, + [2006] = 2002, + [2007] = 2007, + [2008] = 2007, + [2009] = 208, + [2010] = 211, + [2011] = 1098, + [2012] = 1105, + [2013] = 2013, + [2014] = 1102, + [2015] = 1100, + [2016] = 1076, + [2017] = 1079, + [2018] = 1412, + [2019] = 1432, + [2020] = 1417, + [2021] = 1100, + [2022] = 1102, + [2023] = 1407, + [2024] = 1105, + [2025] = 1074, + [2026] = 1098, + [2027] = 2027, + [2028] = 1114, + [2029] = 1113, + [2030] = 1116, + [2031] = 1121, + [2032] = 1088, + [2033] = 1400, + [2034] = 1424, + [2035] = 2035, + [2036] = 2036, [2037] = 2037, - [2038] = 1421, - [2039] = 1567, - [2040] = 208, - [2041] = 1403, - [2042] = 1413, - [2043] = 2037, - [2044] = 1432, - [2045] = 206, - [2046] = 417, - [2047] = 2047, - [2048] = 1417, - [2049] = 412, - [2050] = 2037, - [2051] = 1422, - [2052] = 1426, - [2053] = 2053, - [2054] = 1404, - [2055] = 2028, - [2056] = 1411, - [2057] = 1420, - [2058] = 1406, - [2059] = 1487, - [2060] = 1564, - [2061] = 2061, - [2062] = 2062, - [2063] = 2028, - [2064] = 1436, - [2065] = 1563, - [2066] = 1556, - [2067] = 1547, - [2068] = 1554, - [2069] = 1441, - [2070] = 1531, - [2071] = 1439, - [2072] = 1548, - [2073] = 1550, - [2074] = 1485, - [2075] = 1523, - [2076] = 1440, - [2077] = 1527, - [2078] = 1488, - [2079] = 1530, - [2080] = 1456, - [2081] = 1492, - [2082] = 1538, - [2083] = 1539, - [2084] = 1528, - [2085] = 1541, - [2086] = 1496, - [2087] = 1553, - [2088] = 1438, - [2089] = 1499, - [2090] = 1552, - [2091] = 1503, - [2092] = 1551, - [2093] = 1549, - [2094] = 1437, - [2095] = 1560, - [2096] = 1542, - [2097] = 2097, - [2098] = 1415, - [2099] = 1434, - [2100] = 1394, - [2101] = 1395, - [2102] = 1396, - [2103] = 1398, - [2104] = 191, - [2105] = 1408, - [2106] = 203, - [2107] = 2107, - [2108] = 1102, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 1101, - [2113] = 1102, - [2114] = 1101, - [2115] = 1101, + [2038] = 2037, + [2039] = 1103, + [2040] = 1109, + [2041] = 1423, + [2042] = 1099, + [2043] = 1097, + [2044] = 1422, + [2045] = 2045, + [2046] = 406, + [2047] = 1419, + [2048] = 2035, + [2049] = 1413, + [2050] = 1421, + [2051] = 2051, + [2052] = 1570, + [2053] = 416, + [2054] = 1420, + [2055] = 1414, + [2056] = 2056, + [2057] = 1433, + [2058] = 2051, + [2059] = 1428, + [2060] = 2051, + [2061] = 243, + [2062] = 1401, + [2063] = 1438, + [2064] = 1427, + [2065] = 249, + [2066] = 1408, + [2067] = 1462, + [2068] = 1517, + [2069] = 1499, + [2070] = 1500, + [2071] = 1447, + [2072] = 1571, + [2073] = 1455, + [2074] = 1459, + [2075] = 1460, + [2076] = 1479, + [2077] = 1461, + [2078] = 2035, + [2079] = 1463, + [2080] = 2080, + [2081] = 1464, + [2082] = 2082, + [2083] = 1466, + [2084] = 1467, + [2085] = 1529, + [2086] = 1468, + [2087] = 1470, + [2088] = 1521, + [2089] = 1566, + [2090] = 1522, + [2091] = 1469, + [2092] = 1442, + [2093] = 1523, + [2094] = 1506, + [2095] = 1524, + [2096] = 1504, + [2097] = 1443, + [2098] = 1444, + [2099] = 1501, + [2100] = 1568, + [2101] = 1483, + [2102] = 1481, + [2103] = 1520, + [2104] = 1518, + [2105] = 2105, + [2106] = 209, + [2107] = 205, + [2108] = 1426, + [2109] = 1429, + [2110] = 1430, + [2111] = 1402, + [2112] = 1403, + [2113] = 1404, + [2114] = 1415, + [2115] = 2115, [2116] = 2116, - [2117] = 1106, - [2118] = 2118, - [2119] = 1104, - [2120] = 1104, + [2117] = 1098, + [2118] = 1098, + [2119] = 2119, + [2120] = 1100, [2121] = 1102, - [2122] = 1106, - [2123] = 2003, - [2124] = 1106, - [2125] = 1104, - [2126] = 2126, - [2127] = 2126, - [2128] = 2128, - [2129] = 2129, - [2130] = 2128, - [2131] = 2129, + [2122] = 1102, + [2123] = 2013, + [2124] = 2124, + [2125] = 1100, + [2126] = 1100, + [2127] = 1105, + [2128] = 1105, + [2129] = 1102, + [2130] = 1098, + [2131] = 2131, [2132] = 2132, - [2133] = 2133, + [2133] = 1105, [2134] = 2134, - [2135] = 2135, - [2136] = 398, + [2135] = 2134, + [2136] = 2136, [2137] = 2137, [2138] = 2138, - [2139] = 2139, - [2140] = 2139, - [2141] = 1070, + [2139] = 2137, + [2140] = 2140, + [2141] = 2140, [2142] = 2142, - [2143] = 1106, + [2143] = 2143, [2144] = 2144, - [2145] = 2145, - [2146] = 1101, - [2147] = 2147, - [2148] = 2148, + [2145] = 1102, + [2146] = 1105, + [2147] = 1100, + [2148] = 1098, [2149] = 2149, - [2150] = 1102, - [2151] = 1104, - [2152] = 394, - [2153] = 1080, + [2150] = 400, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 395, + [2155] = 2142, + [2156] = 2152, + [2157] = 1076, [2158] = 2158, - [2159] = 2034, - [2160] = 396, - [2161] = 2138, + [2159] = 2159, + [2160] = 2160, + [2161] = 397, [2162] = 2162, - [2163] = 2163, + [2163] = 394, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2165, - [2168] = 2168, - [2169] = 1071, - [2170] = 2156, - [2171] = 2155, - [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 2135, - [2176] = 2176, - [2177] = 2134, - [2178] = 397, - [2179] = 2172, + [2167] = 2167, + [2168] = 398, + [2169] = 2169, + [2170] = 1079, + [2171] = 2151, + [2172] = 2162, + [2173] = 1074, + [2174] = 402, + [2175] = 2175, + [2176] = 2036, + [2177] = 2177, + [2178] = 2178, + [2179] = 2158, [2180] = 2180, - [2181] = 2181, - [2182] = 2182, + [2181] = 2166, + [2182] = 2169, [2183] = 2183, [2184] = 2184, - [2185] = 2185, - [2186] = 2183, - [2187] = 2034, + [2185] = 2180, + [2186] = 2186, + [2187] = 2187, [2188] = 2188, - [2189] = 2189, + [2189] = 2188, [2190] = 2190, [2191] = 2191, [2192] = 2192, [2193] = 2193, [2194] = 2194, - [2195] = 2195, - [2196] = 2195, + [2195] = 2036, + [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2195, - [2200] = 2047, - [2201] = 1088, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, [2205] = 2205, [2206] = 2206, - [2207] = 2207, + [2207] = 1088, [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 2034, + [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, [2215] = 2215, - [2216] = 2195, - [2217] = 2217, - [2218] = 411, - [2219] = 2195, + [2216] = 2216, + [2217] = 2191, + [2218] = 2191, + [2219] = 2219, [2220] = 2220, [2221] = 2221, - [2222] = 2222, + [2222] = 2045, [2223] = 2223, [2224] = 2224, - [2225] = 2225, - [2226] = 2226, + [2225] = 2191, + [2226] = 2036, [2227] = 2227, [2228] = 2228, - [2229] = 2223, + [2229] = 2229, [2230] = 2230, [2231] = 2231, - [2232] = 2208, - [2233] = 2213, + [2232] = 2232, + [2233] = 2212, [2234] = 2234, - [2235] = 1094, - [2236] = 2047, - [2237] = 1377, - [2238] = 2238, - [2239] = 2239, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 2214, + [2239] = 2235, [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2239, + [2241] = 2191, + [2242] = 413, + [2243] = 2243, [2244] = 2244, - [2245] = 2245, + [2245] = 2045, [2246] = 2246, - [2247] = 2246, - [2248] = 2047, + [2247] = 2247, + [2248] = 1103, [2249] = 2249, [2250] = 2250, - [2251] = 2251, + [2251] = 2250, [2252] = 2252, [2253] = 2253, - [2254] = 2239, - [2255] = 2255, - [2256] = 2238, - [2257] = 2252, - [2258] = 2258, - [2259] = 2255, + [2254] = 1097, + [2255] = 1121, + [2256] = 2256, + [2257] = 2257, + [2258] = 2257, + [2259] = 2259, [2260] = 2260, - [2261] = 2261, - [2262] = 2034, - [2263] = 1096, - [2264] = 2241, - [2265] = 2242, - [2266] = 2249, + [2261] = 1113, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, [2267] = 2267, - [2268] = 1098, - [2269] = 1367, - [2270] = 2240, - [2271] = 1379, + [2268] = 2263, + [2269] = 2260, + [2270] = 2045, + [2271] = 2262, [2272] = 2272, - [2273] = 2260, - [2274] = 2251, - [2275] = 2261, - [2276] = 2250, - [2277] = 2267, - [2278] = 1093, + [2273] = 2243, + [2274] = 2274, + [2275] = 1099, + [2276] = 2276, + [2277] = 2276, + [2278] = 2244, [2279] = 2279, - [2280] = 1390, - [2281] = 2258, + [2280] = 2272, + [2281] = 1114, [2282] = 2282, - [2283] = 2240, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2253, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, + [2283] = 2276, + [2284] = 2252, + [2285] = 1116, + [2286] = 2279, + [2287] = 2247, + [2288] = 2272, + [2289] = 2036, + [2290] = 2256, + [2291] = 2265, + [2292] = 2264, + [2293] = 2259, + [2294] = 1109, [2295] = 2295, [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2299, + [2299] = 2297, [2300] = 2300, [2301] = 2301, [2302] = 2302, [2303] = 2303, [2304] = 2304, [2305] = 2305, - [2306] = 2304, + [2306] = 2306, [2307] = 2307, - [2308] = 2296, - [2309] = 2309, - [2310] = 2293, - [2311] = 2301, - [2312] = 2312, - [2313] = 2312, + [2308] = 2308, + [2309] = 2298, + [2310] = 2310, + [2311] = 2311, + [2312] = 2300, + [2313] = 2313, [2314] = 2314, - [2315] = 2315, + [2315] = 2302, [2316] = 2316, [2317] = 2317, - [2318] = 2292, - [2319] = 2294, - [2320] = 2314, - [2321] = 2298, - [2322] = 2305, - [2323] = 2302, - [2324] = 2303, + [2318] = 2318, + [2319] = 2045, + [2320] = 2320, + [2321] = 2305, + [2322] = 2322, + [2323] = 2314, + [2324] = 2324, [2325] = 2325, - [2326] = 2315, - [2327] = 2047, + [2326] = 2307, + [2327] = 2301, [2328] = 2328, - [2329] = 2328, - [2330] = 2289, + [2329] = 2311, + [2330] = 2330, [2331] = 2331, - [2332] = 2332, - [2333] = 2333, - [2334] = 2334, - [2335] = 2309, + [2332] = 2308, + [2333] = 2328, + [2334] = 2303, + [2335] = 2335, [2336] = 2336, - [2337] = 2316, - [2338] = 2307, - [2339] = 2317, - [2340] = 2295, + [2337] = 2325, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, [2341] = 2341, - [2342] = 2097, - [2343] = 2343, - [2344] = 2344, - [2345] = 2345, - [2346] = 2346, - [2347] = 2347, - [2348] = 2348, + [2342] = 2338, + [2343] = 2317, + [2344] = 2318, + [2345] = 2313, + [2346] = 2340, + [2347] = 2341, + [2348] = 2330, [2349] = 2349, [2350] = 2350, - [2351] = 2351, + [2351] = 2349, [2352] = 2352, - [2353] = 2341, + [2353] = 2353, [2354] = 2354, [2355] = 2355, [2356] = 2356, @@ -6370,164 +6384,164 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2358] = 2358, [2359] = 2359, [2360] = 2360, - [2361] = 2355, - [2362] = 2362, + [2361] = 2361, + [2362] = 2350, [2363] = 2363, - [2364] = 2355, - [2365] = 2351, + [2364] = 2359, + [2365] = 2365, [2366] = 2366, - [2367] = 2367, - [2368] = 2352, - [2369] = 2369, + [2367] = 2354, + [2368] = 2368, + [2369] = 2356, [2370] = 2370, [2371] = 2371, - [2372] = 2355, - [2373] = 2347, - [2374] = 2348, - [2375] = 2350, - [2376] = 2371, + [2372] = 2365, + [2373] = 2373, + [2374] = 2374, + [2375] = 2375, + [2376] = 2376, [2377] = 2377, [2378] = 2378, - [2379] = 2379, + [2379] = 2377, [2380] = 2380, - [2381] = 2359, - [2382] = 2360, - [2383] = 2363, - [2384] = 2370, - [2385] = 2366, - [2386] = 2367, - [2387] = 2387, - [2388] = 2388, - [2389] = 2389, - [2390] = 2349, - [2391] = 2354, - [2392] = 2345, - [2393] = 2346, - [2394] = 2394, - [2395] = 2395, - [2396] = 2357, - [2397] = 2367, - [2398] = 2343, + [2381] = 2381, + [2382] = 2361, + [2383] = 2383, + [2384] = 2366, + [2385] = 2385, + [2386] = 2386, + [2387] = 2373, + [2388] = 2385, + [2389] = 2353, + [2390] = 2350, + [2391] = 2391, + [2392] = 2381, + [2393] = 2366, + [2394] = 2358, + [2395] = 2391, + [2396] = 2105, + [2397] = 2397, + [2398] = 2386, [2399] = 2399, - [2400] = 2394, - [2401] = 2362, - [2402] = 2344, + [2400] = 2400, + [2401] = 2352, + [2402] = 2357, [2403] = 2403, - [2404] = 2355, - [2405] = 2405, + [2404] = 2404, + [2405] = 2366, [2406] = 2406, - [2407] = 2107, - [2408] = 191, - [2409] = 2409, - [2410] = 192, - [2411] = 203, - [2412] = 174, + [2407] = 2366, + [2408] = 2383, + [2409] = 2375, + [2410] = 2376, + [2411] = 2378, + [2412] = 2371, [2413] = 2413, [2414] = 2414, - [2415] = 2415, - [2416] = 2416, + [2415] = 1426, + [2416] = 2414, [2417] = 2417, - [2418] = 2418, + [2418] = 1402, [2419] = 2419, - [2420] = 2406, + [2420] = 2420, [2421] = 2421, - [2422] = 2409, - [2423] = 2423, + [2422] = 1403, + [2423] = 1404, [2424] = 2424, - [2425] = 2425, + [2425] = 2419, [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 2429, + [2429] = 2132, [2430] = 2430, [2431] = 2431, [2432] = 1415, [2433] = 2433, [2434] = 2434, - [2435] = 2431, + [2435] = 2435, [2436] = 2436, [2437] = 2437, - [2438] = 2434, - [2439] = 2431, + [2438] = 2413, + [2439] = 2439, [2440] = 2440, - [2441] = 2116, - [2442] = 2433, + [2441] = 2441, + [2442] = 2442, [2443] = 2443, - [2444] = 2437, - [2445] = 2436, + [2444] = 2442, + [2445] = 2419, [2446] = 2446, - [2447] = 2110, - [2448] = 2431, + [2447] = 2447, + [2448] = 2435, [2449] = 2449, - [2450] = 2431, - [2451] = 1395, + [2450] = 2450, + [2451] = 2451, [2452] = 2452, - [2453] = 1396, - [2454] = 1398, + [2453] = 2451, + [2454] = 2437, [2455] = 2455, [2456] = 2456, - [2457] = 1434, - [2458] = 1408, - [2459] = 2459, - [2460] = 2423, + [2457] = 2457, + [2458] = 2458, + [2459] = 2426, + [2460] = 2428, [2461] = 2461, - [2462] = 2424, - [2463] = 2414, - [2464] = 2415, - [2465] = 1394, - [2466] = 2449, - [2467] = 2426, - [2468] = 2430, - [2469] = 2443, - [2470] = 2470, - [2471] = 2452, - [2472] = 2472, - [2473] = 2456, - [2474] = 2474, - [2475] = 2475, - [2476] = 2433, - [2477] = 2433, - [2478] = 2449, - [2479] = 2436, - [2480] = 2405, - [2481] = 2429, + [2462] = 2462, + [2463] = 2434, + [2464] = 2464, + [2465] = 2465, + [2466] = 2464, + [2467] = 2427, + [2468] = 2446, + [2469] = 2469, + [2470] = 2457, + [2471] = 2447, + [2472] = 2458, + [2473] = 2430, + [2474] = 2437, + [2475] = 2437, + [2476] = 2476, + [2477] = 2477, + [2478] = 2433, + [2479] = 2479, + [2480] = 2424, + [2481] = 2440, [2482] = 2482, - [2483] = 2483, - [2484] = 2475, - [2485] = 2427, + [2483] = 2452, + [2484] = 2452, + [2485] = 1430, [2486] = 2486, - [2487] = 2446, - [2488] = 2474, - [2489] = 2416, - [2490] = 2417, - [2491] = 2418, - [2492] = 2419, - [2493] = 2431, - [2494] = 2436, - [2495] = 2474, - [2496] = 2440, - [2497] = 2497, + [2487] = 2487, + [2488] = 2469, + [2489] = 2465, + [2490] = 2419, + [2491] = 2491, + [2492] = 2417, + [2493] = 2476, + [2494] = 1429, + [2495] = 2441, + [2496] = 2477, + [2497] = 2462, [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2483, - [2502] = 2500, - [2503] = 2472, - [2504] = 2504, - [2505] = 2459, - [2506] = 2425, - [2507] = 2499, - [2508] = 2504, - [2509] = 2413, - [2510] = 2428, - [2511] = 2511, - [2512] = 1065, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, - [2518] = 2517, + [2499] = 2449, + [2500] = 2431, + [2501] = 2436, + [2502] = 2446, + [2503] = 2434, + [2504] = 2491, + [2505] = 2115, + [2506] = 205, + [2507] = 2419, + [2508] = 2419, + [2509] = 208, + [2510] = 2482, + [2511] = 209, + [2512] = 2479, + [2513] = 2486, + [2514] = 211, + [2515] = 2446, + [2516] = 2461, + [2517] = 2119, + [2518] = 2498, [2519] = 2519, [2520] = 2520, [2521] = 2521, @@ -6535,682 +6549,682 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2523] = 2523, [2524] = 2524, [2525] = 2525, - [2526] = 2133, - [2527] = 2132, + [2526] = 2526, + [2527] = 1069, [2528] = 2528, - [2529] = 1399, - [2530] = 2519, - [2531] = 2513, - [2532] = 2528, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, + [2529] = 1104, + [2530] = 2530, + [2531] = 1412, + [2532] = 2532, + [2533] = 1432, + [2534] = 1407, + [2535] = 1417, [2536] = 2536, [2537] = 2537, - [2538] = 1401, - [2539] = 2533, + [2538] = 2538, + [2539] = 2539, [2540] = 2540, - [2541] = 1416, - [2542] = 1419, - [2543] = 2511, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, [2544] = 2544, [2545] = 2545, [2546] = 2546, [2547] = 2547, - [2548] = 2534, + [2548] = 2548, [2549] = 2549, [2550] = 2550, [2551] = 2551, - [2552] = 2552, - [2553] = 2553, + [2552] = 1106, + [2553] = 2521, [2554] = 2554, - [2555] = 2514, + [2555] = 2555, [2556] = 2556, - [2557] = 1097, - [2558] = 2516, + [2557] = 2554, + [2558] = 2519, [2559] = 2559, [2560] = 2560, [2561] = 2561, - [2562] = 2562, - [2563] = 2562, + [2562] = 2559, + [2563] = 2563, [2564] = 2564, - [2565] = 2565, - [2566] = 2566, - [2567] = 2567, - [2568] = 2567, - [2569] = 2517, - [2570] = 2519, - [2571] = 2564, - [2572] = 2519, + [2565] = 2528, + [2566] = 2564, + [2567] = 2525, + [2568] = 2568, + [2569] = 2520, + [2570] = 1110, + [2571] = 2571, + [2572] = 2572, [2573] = 2573, [2574] = 2574, - [2575] = 2513, - [2576] = 2559, - [2577] = 2577, - [2578] = 2578, - [2579] = 2560, - [2580] = 2517, + [2575] = 2575, + [2576] = 2576, + [2577] = 2537, + [2578] = 2560, + [2579] = 2571, + [2580] = 2580, [2581] = 2581, - [2582] = 2533, - [2583] = 1103, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, - [2588] = 2547, - [2589] = 2589, - [2590] = 2590, - [2591] = 2567, - [2592] = 2520, - [2593] = 2566, - [2594] = 2550, + [2582] = 2582, + [2583] = 2530, + [2584] = 2532, + [2585] = 2538, + [2586] = 2554, + [2587] = 2519, + [2588] = 2564, + [2589] = 2525, + [2590] = 2580, + [2591] = 2591, + [2592] = 2572, + [2593] = 2564, + [2594] = 2594, [2595] = 2595, [2596] = 2596, - [2597] = 1099, + [2597] = 2597, [2598] = 2598, - [2599] = 2549, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2603, + [2599] = 2568, + [2600] = 2522, + [2601] = 2572, + [2602] = 2136, + [2603] = 2138, [2604] = 2604, [2605] = 2605, [2606] = 2606, - [2607] = 2577, - [2608] = 2522, - [2609] = 2609, - [2610] = 2567, + [2607] = 2525, + [2608] = 2595, + [2609] = 2573, + [2610] = 2610, [2611] = 2611, - [2612] = 2553, - [2613] = 1100, - [2614] = 2544, - [2615] = 2578, - [2616] = 2561, - [2617] = 2523, - [2618] = 2556, - [2619] = 2559, - [2620] = 2577, - [2621] = 2621, + [2612] = 2612, + [2613] = 2575, + [2614] = 2574, + [2615] = 2595, + [2616] = 1107, + [2617] = 2617, + [2618] = 2582, + [2619] = 2619, + [2620] = 2581, + [2621] = 2522, [2622] = 2622, [2623] = 2623, [2624] = 2624, - [2625] = 2163, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, + [2625] = 2623, + [2626] = 2576, + [2627] = 2519, + [2628] = 2624, [2629] = 2629, [2630] = 2630, - [2631] = 2142, + [2631] = 2631, [2632] = 2632, - [2633] = 2154, - [2634] = 181, + [2633] = 2633, + [2634] = 2634, [2635] = 2635, [2636] = 2636, [2637] = 2637, - [2638] = 2637, - [2639] = 2621, + [2638] = 2638, + [2639] = 2639, [2640] = 2640, - [2641] = 2162, + [2641] = 2641, [2642] = 2642, [2643] = 2643, [2644] = 2644, [2645] = 2645, [2646] = 2646, - [2647] = 2635, + [2647] = 2647, [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, [2652] = 2652, - [2653] = 2653, + [2653] = 2635, [2654] = 2654, [2655] = 2655, [2656] = 2656, - [2657] = 2657, + [2657] = 2640, [2658] = 2658, - [2659] = 2630, + [2659] = 2629, [2660] = 2660, - [2661] = 2646, - [2662] = 2627, + [2661] = 2655, + [2662] = 2662, [2663] = 2663, - [2664] = 2636, + [2664] = 2664, [2665] = 2665, [2666] = 2666, [2667] = 2667, - [2668] = 2623, + [2668] = 2668, [2669] = 2669, - [2670] = 2645, - [2671] = 2621, - [2672] = 2672, + [2670] = 2670, + [2671] = 2671, + [2672] = 196, [2673] = 2673, - [2674] = 2674, + [2674] = 2666, [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2174, - [2679] = 2679, - [2680] = 2626, + [2676] = 2670, + [2677] = 2645, + [2678] = 2678, + [2679] = 2184, + [2680] = 2680, [2681] = 2681, - [2682] = 2673, - [2683] = 2672, - [2684] = 2674, - [2685] = 2677, - [2686] = 2623, + [2682] = 2144, + [2683] = 2159, + [2684] = 2684, + [2685] = 2164, + [2686] = 2678, [2687] = 2687, [2688] = 2688, [2689] = 2689, - [2690] = 2637, - [2691] = 2621, - [2692] = 2640, - [2693] = 2693, - [2694] = 2642, - [2695] = 2643, - [2696] = 2627, + [2690] = 2690, + [2691] = 2646, + [2692] = 2647, + [2693] = 2654, + [2694] = 2684, + [2695] = 2695, + [2696] = 2656, [2697] = 2697, - [2698] = 2650, - [2699] = 2651, - [2700] = 2652, - [2701] = 2654, - [2702] = 2655, - [2703] = 2656, - [2704] = 2630, - [2705] = 2660, - [2706] = 2663, - [2707] = 2666, - [2708] = 2629, - [2709] = 2658, - [2710] = 2623, - [2711] = 2642, - [2712] = 2643, - [2713] = 2676, - [2714] = 2637, - [2715] = 2715, - [2716] = 2673, - [2717] = 2626, - [2718] = 2640, - [2719] = 2672, + [2698] = 2634, + [2699] = 2699, + [2700] = 2675, + [2701] = 2651, + [2702] = 2702, + [2703] = 2671, + [2704] = 2652, + [2705] = 2705, + [2706] = 2658, + [2707] = 2707, + [2708] = 2708, + [2709] = 2643, + [2710] = 2658, + [2711] = 2660, + [2712] = 2662, + [2713] = 2713, + [2714] = 2667, + [2715] = 2670, + [2716] = 2684, + [2717] = 2707, + [2718] = 2718, + [2719] = 2719, [2720] = 2720, - [2721] = 2640, - [2722] = 2722, - [2723] = 2642, - [2724] = 2643, - [2725] = 2725, - [2726] = 2650, - [2727] = 2655, - [2728] = 2656, - [2729] = 2630, - [2730] = 2660, - [2731] = 2663, - [2732] = 2666, + [2721] = 2641, + [2722] = 2697, + [2723] = 2723, + [2724] = 2631, + [2725] = 2633, + [2726] = 2726, + [2727] = 2650, + [2728] = 2728, + [2729] = 2729, + [2730] = 2730, + [2731] = 2304, + [2732] = 2705, [2733] = 2733, - [2734] = 2642, + [2734] = 2734, [2735] = 2735, - [2736] = 2640, - [2737] = 2643, - [2738] = 2655, - [2739] = 2640, - [2740] = 2663, - [2741] = 2666, - [2742] = 2687, - [2743] = 2688, - [2744] = 2644, - [2745] = 2663, - [2746] = 2663, - [2747] = 2666, - [2748] = 2650, - [2749] = 2622, - [2750] = 2629, - [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2752, - [2757] = 2757, - [2758] = 2758, - [2759] = 2757, - [2760] = 2648, - [2761] = 2761, - [2762] = 2164, - [2763] = 2763, - [2764] = 2635, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2166, - [2769] = 2665, - [2770] = 2770, - [2771] = 2650, + [2736] = 2629, + [2737] = 2632, + [2738] = 2738, + [2739] = 2718, + [2740] = 2643, + [2741] = 2741, + [2742] = 2742, + [2743] = 2629, + [2744] = 2719, + [2745] = 2720, + [2746] = 2746, + [2747] = 2747, + [2748] = 2663, + [2749] = 2664, + [2750] = 2665, + [2751] = 2680, + [2752] = 2681, + [2753] = 2658, + [2754] = 2660, + [2755] = 2662, + [2756] = 2667, + [2757] = 2670, + [2758] = 2718, + [2759] = 2719, + [2760] = 2720, + [2761] = 2697, + [2762] = 2723, + [2763] = 2631, + [2764] = 2650, + [2765] = 2728, + [2766] = 2705, + [2767] = 2735, + [2768] = 2632, + [2769] = 2687, + [2770] = 2632, + [2771] = 2771, [2772] = 2772, - [2773] = 2666, - [2774] = 2651, - [2775] = 2652, - [2776] = 2772, - [2777] = 2144, - [2778] = 2649, - [2779] = 2779, - [2780] = 2780, - [2781] = 2628, - [2782] = 2782, - [2783] = 2654, - [2784] = 2655, - [2785] = 2656, - [2786] = 2786, - [2787] = 2667, + [2773] = 2773, + [2774] = 2667, + [2775] = 2670, + [2776] = 2776, + [2777] = 2718, + [2778] = 2723, + [2779] = 2631, + [2780] = 2650, + [2781] = 2728, + [2782] = 2705, + [2783] = 2735, + [2784] = 2697, + [2785] = 2785, + [2786] = 2680, + [2787] = 2662, [2788] = 2788, - [2789] = 2687, - [2790] = 2657, - [2791] = 2651, - [2792] = 2658, - [2793] = 2688, - [2794] = 2644, - [2795] = 2674, - [2796] = 2796, - [2797] = 2797, - [2798] = 2626, + [2789] = 2723, + [2790] = 2705, + [2791] = 2735, + [2792] = 2792, + [2793] = 2793, + [2794] = 2718, + [2795] = 2681, + [2796] = 2705, + [2797] = 2735, + [2798] = 2723, [2799] = 2799, - [2800] = 2755, - [2801] = 2801, - [2802] = 2677, - [2803] = 2803, - [2804] = 2669, - [2805] = 2145, - [2806] = 2806, - [2807] = 2807, - [2808] = 2693, - [2809] = 2697, - [2810] = 2722, - [2811] = 2763, - [2812] = 2812, - [2813] = 2630, - [2814] = 2660, - [2815] = 2815, - [2816] = 2646, - [2817] = 2786, - [2818] = 2788, - [2819] = 2733, - [2820] = 2803, - [2821] = 2806, - [2822] = 2654, - [2823] = 2735, - [2824] = 2824, - [2825] = 2815, - [2826] = 2799, - [2827] = 2827, - [2828] = 2652, - [2829] = 2635, - [2830] = 2635, - [2831] = 2831, - [2832] = 2832, - [2833] = 2663, - [2834] = 2752, - [2835] = 2168, - [2836] = 2665, - [2837] = 2763, - [2838] = 2655, - [2839] = 2666, - [2840] = 2753, - [2841] = 2656, + [2800] = 2660, + [2801] = 2662, + [2802] = 2634, + [2803] = 2143, + [2804] = 2149, + [2805] = 2154, + [2806] = 2799, + [2807] = 2160, + [2808] = 2644, + [2809] = 2631, + [2810] = 2810, + [2811] = 2633, + [2812] = 2637, + [2813] = 2638, + [2814] = 2814, + [2815] = 2719, + [2816] = 2175, + [2817] = 2726, + [2818] = 2178, + [2819] = 2183, + [2820] = 2636, + [2821] = 2186, + [2822] = 2822, + [2823] = 2823, + [2824] = 2726, + [2825] = 2825, + [2826] = 2826, + [2827] = 2663, + [2828] = 2828, + [2829] = 2741, + [2830] = 2690, + [2831] = 2650, + [2832] = 2720, + [2833] = 2664, + [2834] = 2834, + [2835] = 2665, + [2836] = 2728, + [2837] = 2708, + [2838] = 2838, + [2839] = 2810, + [2840] = 2840, + [2841] = 2729, [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2752, - [2846] = 2780, - [2847] = 2763, + [2843] = 2840, + [2844] = 2723, + [2845] = 2707, + [2846] = 2846, + [2847] = 2814, [2848] = 2848, - [2849] = 2657, - [2850] = 2850, - [2851] = 2851, - [2852] = 2842, - [2853] = 2844, - [2854] = 2854, - [2855] = 2752, - [2856] = 2850, - [2857] = 2824, - [2858] = 2858, - [2859] = 2851, - [2860] = 2860, - [2861] = 2827, - [2862] = 2148, - [2863] = 2863, - [2864] = 2149, - [2865] = 2660, - [2866] = 2797, - [2867] = 2770, - [2868] = 2848, - [2869] = 2858, + [2849] = 2849, + [2850] = 2705, + [2851] = 2728, + [2852] = 2834, + [2853] = 2776, + [2854] = 2734, + [2855] = 2823, + [2856] = 2630, + [2857] = 2707, + [2858] = 2707, + [2859] = 2634, + [2860] = 2734, + [2861] = 2735, + [2862] = 2810, + [2863] = 2667, + [2864] = 2733, + [2865] = 2634, + [2866] = 2735, + [2867] = 2810, + [2868] = 2868, + [2869] = 2637, [2870] = 2870, [2871] = 2871, - [2872] = 2854, - [2873] = 180, - [2874] = 2874, - [2875] = 2860, - [2876] = 2758, - [2877] = 2665, - [2878] = 2878, - [2879] = 2632, - [2880] = 2863, - [2881] = 2297, - [2882] = 2882, + [2872] = 2702, + [2873] = 2738, + [2874] = 2848, + [2875] = 2842, + [2876] = 2688, + [2877] = 2638, + [2878] = 2742, + [2879] = 2747, + [2880] = 2846, + [2881] = 2881, + [2882] = 2838, [2883] = 2883, - [2884] = 188, - [2885] = 2885, - [2886] = 2886, - [2887] = 2887, - [2888] = 2888, - [2889] = 2225, + [2884] = 197, + [2885] = 2673, + [2886] = 2649, + [2887] = 2734, + [2888] = 2729, + [2889] = 2662, [2890] = 2890, [2891] = 2891, - [2892] = 2212, + [2892] = 2892, [2893] = 2893, [2894] = 2894, [2895] = 2895, [2896] = 2896, - [2897] = 2204, + [2897] = 2897, [2898] = 2898, [2899] = 2899, [2900] = 2900, - [2901] = 2193, + [2901] = 2901, [2902] = 2902, - [2903] = 2209, + [2903] = 2903, [2904] = 2904, [2905] = 2905, - [2906] = 2906, + [2906] = 2192, [2907] = 2907, - [2908] = 2908, + [2908] = 2193, [2909] = 2909, [2910] = 2910, [2911] = 2911, [2912] = 2912, [2913] = 2913, - [2914] = 2914, + [2914] = 2913, [2915] = 2915, [2916] = 2916, - [2917] = 2917, - [2918] = 2918, + [2917] = 2911, + [2918] = 2205, [2919] = 2919, [2920] = 2920, [2921] = 2921, - [2922] = 2912, - [2923] = 2923, + [2922] = 2922, + [2923] = 413, [2924] = 2924, [2925] = 2925, - [2926] = 2222, + [2926] = 2926, [2927] = 2927, - [2928] = 2928, - [2929] = 2189, - [2930] = 2190, - [2931] = 2191, - [2932] = 2932, + [2928] = 2922, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2891, [2933] = 2933, [2934] = 2934, [2935] = 2935, [2936] = 2936, [2937] = 2937, - [2938] = 2895, - [2939] = 2899, + [2938] = 2938, + [2939] = 2939, [2940] = 2940, - [2941] = 2906, - [2942] = 2182, - [2943] = 2943, - [2944] = 2924, + [2941] = 2941, + [2942] = 2232, + [2943] = 2237, + [2944] = 2944, [2945] = 2945, - [2946] = 2940, + [2946] = 2196, [2947] = 2947, - [2948] = 2948, + [2948] = 2199, [2949] = 2949, - [2950] = 2950, + [2950] = 2213, [2951] = 2951, [2952] = 2952, [2953] = 2953, - [2954] = 2954, + [2954] = 2216, [2955] = 2955, [2956] = 2956, - [2957] = 2957, + [2957] = 204, [2958] = 2958, [2959] = 2959, - [2960] = 2947, + [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2948, + [2963] = 2963, [2964] = 2964, - [2965] = 2882, - [2966] = 2920, - [2967] = 2967, - [2968] = 2968, - [2969] = 2964, - [2970] = 2885, - [2971] = 2971, + [2965] = 2965, + [2966] = 2966, + [2967] = 2206, + [2968] = 2208, + [2969] = 2969, + [2970] = 2234, + [2971] = 2210, [2972] = 2972, [2973] = 2973, [2974] = 2974, [2975] = 2975, - [2976] = 2910, + [2976] = 2921, [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, + [2978] = 2925, + [2979] = 2936, + [2980] = 2224, + [2981] = 2201, [2982] = 2982, [2983] = 2983, [2984] = 2984, - [2985] = 2985, - [2986] = 2950, - [2987] = 2951, - [2988] = 2988, - [2989] = 2989, + [2985] = 2915, + [2986] = 2986, + [2987] = 2987, + [2988] = 2964, + [2989] = 2198, [2990] = 2990, [2991] = 2991, [2992] = 2992, [2993] = 2993, - [2994] = 2908, - [2995] = 2918, - [2996] = 2933, - [2997] = 2943, - [2998] = 2972, - [2999] = 2923, + [2994] = 2994, + [2995] = 2221, + [2996] = 2996, + [2997] = 2997, + [2998] = 2916, + [2999] = 2999, [3000] = 3000, - [3001] = 3001, + [3001] = 2899, [3002] = 3002, [3003] = 3003, [3004] = 3004, - [3005] = 2967, - [3006] = 2230, - [3007] = 2205, - [3008] = 2990, + [3005] = 3005, + [3006] = 3006, + [3007] = 3007, + [3008] = 3008, [3009] = 3009, - [3010] = 2206, + [3010] = 3010, [3011] = 3011, - [3012] = 2231, + [3012] = 2991, [3013] = 3013, [3014] = 3014, - [3015] = 2886, - [3016] = 411, + [3015] = 3015, + [3016] = 3016, [3017] = 3017, [3018] = 3018, [3019] = 3019, - [3020] = 2188, - [3021] = 2954, - [3022] = 3019, - [3023] = 2228, - [3024] = 3013, - [3025] = 2955, - [3026] = 2888, + [3020] = 2992, + [3021] = 2996, + [3022] = 3015, + [3023] = 2203, + [3024] = 2927, + [3025] = 3025, + [3026] = 3026, [3027] = 3027, - [3028] = 3028, - [3029] = 2991, - [3030] = 3030, - [3031] = 2888, - [3032] = 2956, - [3033] = 2891, - [3034] = 2893, - [3035] = 2894, + [3028] = 2236, + [3029] = 3029, + [3030] = 3016, + [3031] = 3031, + [3032] = 2898, + [3033] = 3033, + [3034] = 3034, + [3035] = 3035, [3036] = 3036, - [3037] = 2217, - [3038] = 2227, - [3039] = 2184, - [3040] = 2935, - [3041] = 2936, - [3042] = 2194, - [3043] = 2198, - [3044] = 2202, - [3045] = 2924, - [3046] = 2925, - [3047] = 2940, - [3048] = 2947, - [3049] = 2948, - [3050] = 2971, - [3051] = 2971, - [3052] = 2974, - [3053] = 3053, + [3037] = 3037, + [3038] = 2963, + [3039] = 3039, + [3040] = 2895, + [3041] = 2899, + [3042] = 2901, + [3043] = 2902, + [3044] = 3044, + [3045] = 2965, + [3046] = 3017, + [3047] = 2933, + [3048] = 2934, + [3049] = 2941, + [3050] = 3050, + [3051] = 2944, + [3052] = 3034, + [3053] = 2947, [3054] = 3054, - [3055] = 2915, - [3056] = 3056, - [3057] = 3057, - [3058] = 3019, - [3059] = 3059, - [3060] = 3027, - [3061] = 2215, - [3062] = 3062, - [3063] = 2957, - [3064] = 2891, - [3065] = 3065, - [3066] = 2935, - [3067] = 2936, - [3068] = 3068, - [3069] = 2971, - [3070] = 3070, + [3055] = 2949, + [3056] = 2983, + [3057] = 2936, + [3058] = 2983, + [3059] = 2898, + [3060] = 3060, + [3061] = 3061, + [3062] = 2987, + [3063] = 2898, + [3064] = 3064, + [3065] = 2209, + [3066] = 3037, + [3067] = 3067, + [3068] = 3003, + [3069] = 3069, + [3070] = 3004, [3071] = 3071, [3072] = 3072, - [3073] = 3019, - [3074] = 3027, - [3075] = 3075, - [3076] = 3076, + [3073] = 3073, + [3074] = 3074, + [3075] = 2933, + [3076] = 2934, [3077] = 3077, - [3078] = 3078, - [3079] = 2958, - [3080] = 3000, - [3081] = 2974, - [3082] = 3082, + [3078] = 2936, + [3079] = 2202, + [3080] = 2211, + [3081] = 3081, + [3082] = 2898, [3083] = 3083, - [3084] = 3084, + [3084] = 2930, [3085] = 3085, - [3086] = 3001, + [3086] = 3086, [3087] = 3087, - [3088] = 3011, - [3089] = 2893, - [3090] = 2894, - [3091] = 3091, - [3092] = 2959, - [3093] = 3019, - [3094] = 2911, + [3088] = 3088, + [3089] = 3089, + [3090] = 2919, + [3091] = 2901, + [3092] = 2902, + [3093] = 2933, + [3094] = 2934, [3095] = 3095, [3096] = 3096, - [3097] = 2977, - [3098] = 3082, - [3099] = 3099, - [3100] = 3057, - [3101] = 3101, - [3102] = 3102, - [3103] = 3014, - [3104] = 3104, - [3105] = 2978, - [3106] = 2979, + [3097] = 2935, + [3098] = 3098, + [3099] = 2223, + [3100] = 3100, + [3101] = 2227, + [3102] = 2937, + [3103] = 3035, + [3104] = 3017, + [3105] = 2974, + [3106] = 3036, [3107] = 3107, - [3108] = 3108, - [3109] = 3075, - [3110] = 2181, - [3111] = 2220, - [3112] = 2185, - [3113] = 2214, - [3114] = 2221, - [3115] = 2192, - [3116] = 2896, - [3117] = 2989, - [3118] = 2981, - [3119] = 3119, - [3120] = 2982, - [3121] = 3030, - [3122] = 3122, - [3123] = 3123, - [3124] = 3013, - [3125] = 2898, - [3126] = 3126, - [3127] = 2983, - [3128] = 3128, + [3108] = 2955, + [3109] = 3071, + [3110] = 3110, + [3111] = 2938, + [3112] = 2194, + [3113] = 2939, + [3114] = 2197, + [3115] = 3115, + [3116] = 3037, + [3117] = 3117, + [3118] = 3118, + [3119] = 2215, + [3120] = 2904, + [3121] = 2219, + [3122] = 2220, + [3123] = 3085, + [3124] = 2941, + [3125] = 2909, + [3126] = 2240, + [3127] = 3037, + [3128] = 3067, [3129] = 3129, - [3130] = 3130, - [3131] = 3027, + [3130] = 2228, + [3131] = 2944, [3132] = 3132, - [3133] = 3133, - [3134] = 3101, - [3135] = 3135, + [3133] = 2231, + [3134] = 2229, + [3135] = 2910, [3136] = 3136, [3137] = 3137, - [3138] = 2917, + [3138] = 3138, [3139] = 3139, [3140] = 3140, - [3141] = 2984, - [3142] = 3057, - [3143] = 3143, - [3144] = 3144, - [3145] = 2932, - [3146] = 2962, - [3147] = 2988, + [3141] = 2975, + [3142] = 2947, + [3143] = 2949, + [3144] = 2966, + [3145] = 3145, + [3146] = 3146, + [3147] = 2893, [3148] = 3148, - [3149] = 2980, - [3150] = 3102, + [3149] = 3027, + [3150] = 3150, [3151] = 3151, - [3152] = 2203, - [3153] = 2226, - [3154] = 2180, - [3155] = 2234, - [3156] = 3036, - [3157] = 3157, - [3158] = 3158, - [3159] = 3159, - [3160] = 3160, + [3152] = 3152, + [3153] = 2969, + [3154] = 2952, + [3155] = 3005, + [3156] = 2953, + [3157] = 3150, + [3158] = 3006, + [3159] = 2895, + [3160] = 3132, [3161] = 3161, - [3162] = 2904, - [3163] = 3163, - [3164] = 2905, - [3165] = 2953, - [3166] = 3166, - [3167] = 3167, - [3168] = 2907, - [3169] = 2961, + [3162] = 3162, + [3163] = 3008, + [3164] = 2907, + [3165] = 3060, + [3166] = 3009, + [3167] = 2972, + [3168] = 3168, + [3169] = 3169, [3170] = 3170, - [3171] = 3171, + [3171] = 2920, [3172] = 3172, - [3173] = 3173, + [3173] = 2958, [3174] = 3174, - [3175] = 3175, - [3176] = 3176, - [3177] = 2935, - [3178] = 3167, - [3179] = 2207, - [3180] = 3076, - [3181] = 2210, - [3182] = 3018, - [3183] = 3099, - [3184] = 2936, - [3185] = 3148, - [3186] = 3119, - [3187] = 3161, - [3188] = 3188, - [3189] = 3163, - [3190] = 3129, - [3191] = 3173, - [3192] = 3192, - [3193] = 2937, - [3194] = 3194, + [3175] = 3083, + [3176] = 2959, + [3177] = 3177, + [3178] = 3011, + [3179] = 3179, + [3180] = 3180, + [3181] = 2986, + [3182] = 2973, + [3183] = 3050, + [3184] = 3161, + [3185] = 3185, + [3186] = 2926, + [3187] = 2230, + [3188] = 2892, + [3189] = 2984, + [3190] = 3110, + [3191] = 3191, + [3192] = 2999, + [3193] = 3002, + [3194] = 3117, [3195] = 3195, - [3196] = 3196, - [3197] = 3197, + [3196] = 2994, + [3197] = 2977, [3198] = 3198, - [3199] = 3199, - [3200] = 3200, - [3201] = 3201, + [3199] = 2190, + [3200] = 2961, + [3201] = 3035, [3202] = 3202, [3203] = 3203, [3204] = 3204, @@ -7220,10 +7234,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3208] = 3208, [3209] = 3209, [3210] = 3210, - [3211] = 3198, + [3211] = 3211, [3212] = 3212, [3213] = 3213, - [3214] = 3196, + [3214] = 3214, [3215] = 3215, [3216] = 3216, [3217] = 3217, @@ -7236,286 +7250,286 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3224] = 3224, [3225] = 3225, [3226] = 3226, - [3227] = 3201, + [3227] = 3227, [3228] = 3228, - [3229] = 3222, - [3230] = 3230, + [3229] = 3229, + [3230] = 3208, [3231] = 3231, - [3232] = 3232, + [3232] = 3213, [3233] = 3233, [3234] = 3234, - [3235] = 3235, + [3235] = 3214, [3236] = 3236, [3237] = 3237, [3238] = 3238, [3239] = 3239, - [3240] = 3240, - [3241] = 3241, - [3242] = 3204, + [3240] = 3136, + [3241] = 3139, + [3242] = 3207, [3243] = 3243, [3244] = 3244, - [3245] = 3245, + [3245] = 3244, [3246] = 3246, [3247] = 3247, - [3248] = 3244, + [3248] = 3248, [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, + [3250] = 3212, + [3251] = 3216, + [3252] = 3207, [3253] = 3253, - [3254] = 3196, - [3255] = 1492, - [3256] = 1496, - [3257] = 3201, + [3254] = 3254, + [3255] = 3255, + [3256] = 3216, + [3257] = 3257, [3258] = 3258, - [3259] = 3204, - [3260] = 3205, - [3261] = 3206, + [3259] = 3203, + [3260] = 3260, + [3261] = 3261, [3262] = 3262, - [3263] = 1456, - [3264] = 3205, - [3265] = 3216, - [3266] = 3233, - [3267] = 3204, - [3268] = 3268, - [3269] = 3202, - [3270] = 3270, - [3271] = 3271, - [3272] = 3250, + [3263] = 3208, + [3264] = 3220, + [3265] = 3207, + [3266] = 3266, + [3267] = 3213, + [3268] = 3216, + [3269] = 3217, + [3270] = 3218, + [3271] = 3212, + [3272] = 3213, [3273] = 3273, - [3274] = 3210, + [3274] = 3274, [3275] = 3275, - [3276] = 3276, - [3277] = 3244, - [3278] = 3253, + [3276] = 3228, + [3277] = 3214, + [3278] = 3255, [3279] = 3279, - [3280] = 3280, - [3281] = 3250, - [3282] = 3197, - [3283] = 3196, - [3284] = 3284, - [3285] = 1551, - [3286] = 3204, + [3280] = 3275, + [3281] = 3281, + [3282] = 3282, + [3283] = 3283, + [3284] = 3203, + [3285] = 3285, + [3286] = 3208, [3287] = 3287, - [3288] = 3205, - [3289] = 3206, - [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3216, - [3294] = 3294, + [3288] = 3207, + [3289] = 3289, + [3290] = 3216, + [3291] = 3217, + [3292] = 3218, + [3293] = 3293, + [3294] = 3228, [3295] = 3295, [3296] = 3296, - [3297] = 3297, + [3297] = 3229, [3298] = 3298, - [3299] = 3235, - [3300] = 3250, - [3301] = 3122, - [3302] = 3128, - [3303] = 3204, - [3304] = 3205, - [3305] = 3206, + [3299] = 3216, + [3300] = 3208, + [3301] = 3301, + [3302] = 3287, + [3303] = 3216, + [3304] = 3217, + [3305] = 3218, [3306] = 3306, [3307] = 3307, - [3308] = 3250, - [3309] = 3250, - [3310] = 3204, - [3311] = 3205, - [3312] = 3206, - [3313] = 3196, + [3308] = 3308, + [3309] = 3309, + [3310] = 3221, + [3311] = 3211, + [3312] = 3312, + [3313] = 3217, [3314] = 3314, - [3315] = 3315, + [3315] = 3208, [3316] = 3316, - [3317] = 3206, - [3318] = 3250, - [3319] = 3204, - [3320] = 3205, - [3321] = 3206, - [3322] = 3250, - [3323] = 3205, - [3324] = 3206, - [3325] = 3250, - [3326] = 3205, - [3327] = 3206, - [3328] = 3250, - [3329] = 3205, - [3330] = 3206, - [3331] = 3250, - [3332] = 3205, - [3333] = 3206, - [3334] = 3224, - [3335] = 3335, - [3336] = 3336, - [3337] = 3212, - [3338] = 3338, - [3339] = 3339, - [3340] = 1527, + [3317] = 3216, + [3318] = 3217, + [3319] = 3218, + [3320] = 3218, + [3321] = 3321, + [3322] = 3228, + [3323] = 3237, + [3324] = 3208, + [3325] = 3216, + [3326] = 3217, + [3327] = 3218, + [3328] = 3208, + [3329] = 3217, + [3330] = 3218, + [3331] = 3208, + [3332] = 3217, + [3333] = 3218, + [3334] = 3208, + [3335] = 3217, + [3336] = 3218, + [3337] = 3208, + [3338] = 3217, + [3339] = 3218, + [3340] = 3340, [3341] = 3341, [3342] = 3342, - [3343] = 3275, - [3344] = 1420, - [3345] = 1421, - [3346] = 3335, - [3347] = 3200, + [3343] = 3343, + [3344] = 3217, + [3345] = 3345, + [3346] = 3346, + [3347] = 3209, [3348] = 3348, - [3349] = 3201, + [3349] = 3307, [3350] = 3350, - [3351] = 3202, - [3352] = 3352, - [3353] = 3247, + [3351] = 3211, + [3352] = 1419, + [3353] = 1420, [3354] = 3354, - [3355] = 3199, - [3356] = 3280, - [3357] = 3268, - [3358] = 3358, + [3355] = 3355, + [3356] = 3356, + [3357] = 3357, + [3358] = 3223, [3359] = 3359, - [3360] = 3221, - [3361] = 3361, - [3362] = 3195, + [3360] = 3360, + [3361] = 3216, + [3362] = 3362, [3363] = 3363, - [3364] = 3364, - [3365] = 3275, - [3366] = 3366, - [3367] = 3367, - [3368] = 3363, - [3369] = 3213, - [3370] = 3237, + [3364] = 3225, + [3365] = 3365, + [3366] = 3215, + [3367] = 1529, + [3368] = 3368, + [3369] = 3369, + [3370] = 1501, [3371] = 3371, - [3372] = 3372, - [3373] = 3373, - [3374] = 3220, - [3375] = 3204, - [3376] = 3225, - [3377] = 3314, - [3378] = 3236, - [3379] = 3239, - [3380] = 3241, - [3381] = 3290, - [3382] = 3205, - [3383] = 3206, - [3384] = 3245, - [3385] = 3366, - [3386] = 3386, - [3387] = 3292, + [3372] = 3363, + [3373] = 3205, + [3374] = 3223, + [3375] = 3375, + [3376] = 3234, + [3377] = 3377, + [3378] = 3378, + [3379] = 3258, + [3380] = 3341, + [3381] = 3266, + [3382] = 3343, + [3383] = 3383, + [3384] = 3378, + [3385] = 3365, + [3386] = 3368, + [3387] = 3387, [3388] = 3388, - [3389] = 3210, - [3390] = 3336, - [3391] = 3354, - [3392] = 3372, - [3393] = 3373, - [3394] = 3394, + [3389] = 3236, + [3390] = 3204, + [3391] = 3210, + [3392] = 3228, + [3393] = 3393, + [3394] = 3206, [3395] = 3395, - [3396] = 3212, - [3397] = 3230, - [3398] = 3217, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3401, - [3403] = 3216, - [3404] = 3404, - [3405] = 3386, - [3406] = 3406, + [3396] = 3396, + [3397] = 3262, + [3398] = 3203, + [3399] = 3295, + [3400] = 3289, + [3401] = 3340, + [3402] = 3248, + [3403] = 3254, + [3404] = 3273, + [3405] = 3274, + [3406] = 3283, [3407] = 3407, - [3408] = 3352, - [3409] = 3409, - [3410] = 3410, - [3411] = 3216, - [3412] = 3338, - [3413] = 3273, - [3414] = 3367, + [3408] = 3316, + [3409] = 3238, + [3410] = 3346, + [3411] = 3411, + [3412] = 3359, + [3413] = 3369, + [3414] = 3218, [3415] = 3415, - [3416] = 3416, - [3417] = 3417, - [3418] = 3219, - [3419] = 3341, - [3420] = 3207, - [3421] = 3421, - [3422] = 1420, - [3423] = 1421, - [3424] = 3342, - [3425] = 3335, - [3426] = 3246, - [3427] = 3221, - [3428] = 3204, - [3429] = 3228, - [3430] = 3217, - [3431] = 3406, - [3432] = 3270, - [3433] = 3433, - [3434] = 3341, - [3435] = 3245, - [3436] = 3335, + [3416] = 3229, + [3417] = 3312, + [3418] = 3355, + [3419] = 3282, + [3420] = 3420, + [3421] = 1459, + [3422] = 1462, + [3423] = 3246, + [3424] = 3424, + [3425] = 3216, + [3426] = 3209, + [3427] = 3224, + [3428] = 3428, + [3429] = 1419, + [3430] = 1420, + [3431] = 3355, + [3432] = 3301, + [3433] = 3368, + [3434] = 3360, + [3435] = 3435, + [3436] = 3436, [3437] = 3437, - [3438] = 3438, - [3439] = 3409, - [3440] = 3440, - [3441] = 3404, - [3442] = 3341, - [3443] = 3335, - [3444] = 3361, - [3445] = 3287, - [3446] = 3244, - [3447] = 3447, - [3448] = 3275, - [3449] = 3364, - [3450] = 3348, - [3451] = 3451, - [3452] = 3358, - [3453] = 3221, - [3454] = 3210, - [3455] = 3455, - [3456] = 3456, - [3457] = 3204, - [3458] = 3231, - [3459] = 3447, - [3460] = 3200, - [3461] = 3451, - [3462] = 3243, - [3463] = 3240, - [3464] = 3464, - [3465] = 3226, - [3466] = 3224, - [3467] = 3438, - [3468] = 3268, - [3469] = 3284, - [3470] = 3250, - [3471] = 3407, - [3472] = 3204, - [3473] = 3275, - [3474] = 3252, - [3475] = 3410, - [3476] = 3361, - [3477] = 3348, - [3478] = 3252, - [3479] = 3348, - [3480] = 3252, - [3481] = 3341, - [3482] = 3197, - [3483] = 3209, - [3484] = 3197, - [3485] = 3485, - [3486] = 3456, - [3487] = 3262, - [3488] = 3212, - [3489] = 3447, - [3490] = 3271, - [3491] = 3294, - [3492] = 3359, - [3493] = 3297, - [3494] = 3224, - [3495] = 3314, - [3496] = 3496, - [3497] = 3244, - [3498] = 3455, + [3438] = 3215, + [3439] = 3439, + [3440] = 3216, + [3441] = 3247, + [3442] = 3442, + [3443] = 3377, + [3444] = 3209, + [3445] = 3203, + [3446] = 3355, + [3447] = 3415, + [3448] = 3298, + [3449] = 3306, + [3450] = 3209, + [3451] = 3355, + [3452] = 3452, + [3453] = 3428, + [3454] = 3454, + [3455] = 3314, + [3456] = 3383, + [3457] = 3457, + [3458] = 3211, + [3459] = 1461, + [3460] = 3350, + [3461] = 3454, + [3462] = 3308, + [3463] = 3463, + [3464] = 3368, + [3465] = 3223, + [3466] = 3466, + [3467] = 3233, + [3468] = 3237, + [3469] = 3469, + [3470] = 3411, + [3471] = 3362, + [3472] = 3472, + [3473] = 3473, + [3474] = 3474, + [3475] = 3208, + [3476] = 3469, + [3477] = 3211, + [3478] = 3407, + [3479] = 3354, + [3480] = 3480, + [3481] = 3243, + [3482] = 3221, + [3483] = 3226, + [3484] = 3396, + [3485] = 3362, + [3486] = 3357, + [3487] = 3279, + [3488] = 3454, + [3489] = 3350, + [3490] = 3226, + [3491] = 3350, + [3492] = 3226, + [3493] = 3221, + [3494] = 3363, + [3495] = 3474, + [3496] = 3231, + [3497] = 3225, + [3498] = 3287, [3499] = 3499, - [3500] = 3500, - [3501] = 3501, - [3502] = 3502, - [3503] = 177, - [3504] = 3504, + [3500] = 3371, + [3501] = 3225, + [3502] = 3309, + [3503] = 3473, + [3504] = 3237, [3505] = 3505, - [3506] = 3500, + [3506] = 3506, [3507] = 3507, [3508] = 3508, [3509] = 3509, @@ -7524,13 +7538,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3512] = 3512, [3513] = 3513, [3514] = 3514, - [3515] = 3500, + [3515] = 3515, [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 3517, - [3521] = 3508, + [3520] = 3520, + [3521] = 3521, [3522] = 3522, [3523] = 3523, [3524] = 3524, @@ -7539,301 +7553,309 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 3505, - [3531] = 3531, + [3530] = 3530, + [3531] = 3507, [3532] = 3532, - [3533] = 3531, + [3533] = 3533, [3534] = 3534, - [3535] = 3516, + [3535] = 3535, [3536] = 3536, [3537] = 3537, [3538] = 3538, [3539] = 3539, - [3540] = 3536, + [3540] = 3540, [3541] = 3541, [3542] = 3542, [3543] = 3543, - [3544] = 3505, + [3544] = 3544, [3545] = 3545, [3546] = 3546, - [3547] = 3517, - [3548] = 3539, - [3549] = 3525, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, [3550] = 3550, [3551] = 3551, - [3552] = 3552, + [3552] = 3507, [3553] = 3553, [3554] = 3554, - [3555] = 3555, - [3556] = 3526, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, + [3555] = 3519, + [3556] = 3556, + [3557] = 3509, + [3558] = 3527, + [3559] = 3516, [3560] = 3560, [3561] = 3561, [3562] = 3562, - [3563] = 3541, - [3564] = 3504, + [3563] = 3563, + [3564] = 3564, [3565] = 3565, [3566] = 3566, [3567] = 3567, [3568] = 3568, [3569] = 3569, [3570] = 3570, - [3571] = 3513, + [3571] = 3571, [3572] = 3572, - [3573] = 3573, + [3573] = 3550, [3574] = 3574, [3575] = 3575, - [3576] = 3504, - [3577] = 3504, - [3578] = 3578, - [3579] = 3579, - [3580] = 3580, - [3581] = 3581, - [3582] = 3582, - [3583] = 3543, - [3584] = 3537, + [3576] = 3576, + [3577] = 3577, + [3578] = 3515, + [3579] = 3513, + [3580] = 3512, + [3581] = 3525, + [3582] = 3523, + [3583] = 3517, + [3584] = 3535, [3585] = 3585, [3586] = 3586, - [3587] = 3580, - [3588] = 3588, - [3589] = 3509, + [3587] = 3517, + [3588] = 3569, + [3589] = 3589, [3590] = 3590, - [3591] = 3529, + [3591] = 3591, [3592] = 3592, - [3593] = 3536, + [3593] = 3512, [3594] = 3594, [3595] = 3595, [3596] = 3596, [3597] = 3597, [3598] = 3598, - [3599] = 3578, - [3600] = 3579, + [3599] = 3599, + [3600] = 3507, [3601] = 3601, - [3602] = 3581, - [3603] = 3536, + [3602] = 3562, + [3603] = 3603, [3604] = 3604, [3605] = 3605, [3606] = 3606, [3607] = 3607, - [3608] = 3555, + [3608] = 3608, [3609] = 3609, [3610] = 3610, [3611] = 3611, [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3578, - [3617] = 3553, - [3618] = 3566, - [3619] = 3554, - [3620] = 3518, - [3621] = 3621, - [3622] = 3527, - [3623] = 3623, - [3624] = 3514, + [3613] = 3546, + [3614] = 3567, + [3615] = 3528, + [3616] = 3616, + [3617] = 3566, + [3618] = 3618, + [3619] = 3522, + [3620] = 3560, + [3621] = 3551, + [3622] = 3512, + [3623] = 3530, + [3624] = 3598, [3625] = 3625, [3626] = 3626, - [3627] = 3625, - [3628] = 3601, - [3629] = 3629, + [3627] = 3535, + [3628] = 3628, + [3629] = 3560, [3630] = 3630, - [3631] = 3596, - [3632] = 3502, + [3631] = 3591, + [3632] = 3632, [3633] = 3633, - [3634] = 3551, - [3635] = 3635, - [3636] = 3636, - [3637] = 3504, + [3634] = 3519, + [3635] = 3603, + [3636] = 3585, + [3637] = 3547, [3638] = 3638, [3639] = 3639, - [3640] = 3539, + [3640] = 3507, [3641] = 3641, [3642] = 3642, - [3643] = 3604, + [3643] = 3643, [3644] = 3644, - [3645] = 3536, - [3646] = 3633, - [3647] = 3565, - [3648] = 3598, - [3649] = 3606, + [3645] = 3645, + [3646] = 3646, + [3647] = 3647, + [3648] = 3648, + [3649] = 3571, [3650] = 3650, - [3651] = 3651, - [3652] = 3652, - [3653] = 3513, - [3654] = 3514, - [3655] = 3500, + [3651] = 3604, + [3652] = 3537, + [3653] = 3653, + [3654] = 3654, + [3655] = 3563, [3656] = 3656, - [3657] = 3518, - [3658] = 3658, - [3659] = 3659, - [3660] = 3660, - [3661] = 3644, - [3662] = 3629, - [3663] = 3605, - [3664] = 3664, - [3665] = 3625, + [3657] = 3520, + [3658] = 3520, + [3659] = 3521, + [3660] = 3522, + [3661] = 3661, + [3662] = 3525, + [3663] = 3618, + [3664] = 3569, + [3665] = 3665, [3666] = 3666, - [3667] = 3667, - [3668] = 3659, - [3669] = 3502, - [3670] = 3536, - [3671] = 3541, - [3672] = 3636, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3541, - [3679] = 3513, - [3680] = 3514, - [3681] = 3518, - [3682] = 3534, - [3683] = 3683, - [3684] = 3684, - [3685] = 3575, - [3686] = 3625, - [3687] = 3636, - [3688] = 3688, - [3689] = 3633, - [3690] = 3625, - [3691] = 3691, - [3692] = 3518, - [3693] = 3625, - [3694] = 3636, - [3695] = 3633, + [3667] = 3599, + [3668] = 3553, + [3669] = 3535, + [3670] = 3670, + [3671] = 3591, + [3672] = 3672, + [3673] = 3524, + [3674] = 3518, + [3675] = 3547, + [3676] = 3666, + [3677] = 3521, + [3678] = 3641, + [3679] = 3679, + [3680] = 3680, + [3681] = 3681, + [3682] = 194, + [3683] = 3545, + [3684] = 3605, + [3685] = 3685, + [3686] = 3521, + [3687] = 3525, + [3688] = 3650, + [3689] = 3544, + [3690] = 3690, + [3691] = 3512, + [3692] = 3591, + [3693] = 3641, + [3694] = 3690, + [3695] = 3604, [3696] = 3696, - [3697] = 3518, - [3698] = 3636, - [3699] = 3633, - [3700] = 3518, - [3701] = 3636, - [3702] = 3636, - [3703] = 3636, - [3704] = 3636, - [3705] = 3636, - [3706] = 3706, - [3707] = 3614, - [3708] = 3586, - [3709] = 3568, - [3710] = 3710, - [3711] = 3610, - [3712] = 3612, - [3713] = 3611, - [3714] = 3613, - [3715] = 3715, + [3697] = 3591, + [3698] = 3525, + [3699] = 3591, + [3700] = 3641, + [3701] = 3604, + [3702] = 3702, + [3703] = 3525, + [3704] = 3641, + [3705] = 3604, + [3706] = 3525, + [3707] = 3641, + [3708] = 3641, + [3709] = 3641, + [3710] = 3641, + [3711] = 3641, + [3712] = 3712, + [3713] = 3575, + [3714] = 3714, + [3715] = 3586, [3716] = 3716, - [3717] = 3717, - [3718] = 3595, - [3719] = 3621, - [3720] = 3641, - [3721] = 3677, - [3722] = 3594, - [3723] = 3667, - [3724] = 3504, - [3725] = 3674, - [3726] = 3726, - [3727] = 3635, - [3728] = 3673, - [3729] = 3726, - [3730] = 3524, - [3731] = 3552, - [3732] = 3732, - [3733] = 3733, + [3717] = 3607, + [3718] = 3548, + [3719] = 3719, + [3720] = 3646, + [3721] = 3648, + [3722] = 3654, + [3723] = 3609, + [3724] = 3679, + [3725] = 3725, + [3726] = 3611, + [3727] = 195, + [3728] = 3616, + [3729] = 3594, + [3730] = 3730, + [3731] = 3731, + [3732] = 3702, + [3733] = 3596, [3734] = 3734, [3735] = 3735, - [3736] = 3519, - [3737] = 3737, - [3738] = 3596, - [3739] = 3542, - [3740] = 3502, - [3741] = 3741, - [3742] = 3582, - [3743] = 3666, - [3744] = 3744, - [3745] = 3745, - [3746] = 3604, - [3747] = 3585, - [3748] = 3741, - [3749] = 3638, - [3750] = 3636, - [3751] = 3501, - [3752] = 3752, - [3753] = 3592, + [3736] = 3736, + [3737] = 3647, + [3738] = 3738, + [3739] = 3739, + [3740] = 3740, + [3741] = 3585, + [3742] = 3547, + [3743] = 3563, + [3744] = 3612, + [3745] = 3529, + [3746] = 3746, + [3747] = 3730, + [3748] = 3641, + [3749] = 3738, + [3750] = 3608, + [3751] = 3608, + [3752] = 3670, + [3753] = 3577, [3754] = 3754, - [3755] = 3664, - [3756] = 3756, - [3757] = 3572, - [3758] = 3528, - [3759] = 3675, - [3760] = 3642, - [3761] = 3761, - [3762] = 3636, - [3763] = 179, + [3755] = 3755, + [3756] = 3641, + [3757] = 3757, + [3758] = 3672, + [3759] = 3569, + [3760] = 3760, + [3761] = 3560, + [3762] = 3590, + [3763] = 3574, [3764] = 3764, - [3765] = 3509, - [3766] = 3642, - [3767] = 3767, - [3768] = 3744, - [3769] = 3523, - [3770] = 3650, - [3771] = 3610, - [3772] = 3612, - [3773] = 3595, - [3774] = 3621, - [3775] = 3644, - [3776] = 3537, - [3777] = 3610, - [3778] = 3621, - [3779] = 3779, - [3780] = 3633, - [3781] = 3621, - [3782] = 3621, - [3783] = 3621, - [3784] = 3501, - [3785] = 3683, - [3786] = 3509, - [3787] = 3604, - [3788] = 3499, - [3789] = 3789, - [3790] = 3790, - [3791] = 3501, - [3792] = 3652, - [3793] = 3793, - [3794] = 3522, - [3795] = 3550, - [3796] = 3573, - [3797] = 3630, - [3798] = 3592, - [3799] = 3691, - [3800] = 3688, - [3801] = 3706, - [3802] = 3537, - [3803] = 3734, - [3804] = 3606, - [3805] = 3561, - [3806] = 3623, - [3807] = 3609, - [3808] = 3570, - [3809] = 3717, - [3810] = 3588, - [3811] = 3737, - [3812] = 3710, - [3813] = 3696, - [3814] = 3752, - [3815] = 3644, - [3816] = 3816, - [3817] = 3633, - [3818] = 3818, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, + [3765] = 3765, + [3766] = 3606, + [3767] = 3735, + [3768] = 3540, + [3769] = 3512, + [3770] = 3647, + [3771] = 3771, + [3772] = 3571, + [3773] = 3598, + [3774] = 3764, + [3775] = 3556, + [3776] = 3765, + [3777] = 3607, + [3778] = 3548, + [3779] = 3609, + [3780] = 3679, + [3781] = 3604, + [3782] = 3527, + [3783] = 3607, + [3784] = 3679, + [3785] = 3785, + [3786] = 3725, + [3787] = 3679, + [3788] = 3679, + [3789] = 3679, + [3790] = 3625, + [3791] = 3533, + [3792] = 3734, + [3793] = 3731, + [3794] = 3541, + [3795] = 3520, + [3796] = 3754, + [3797] = 3545, + [3798] = 3798, + [3799] = 3598, + [3800] = 3639, + [3801] = 3532, + [3802] = 3539, + [3803] = 3739, + [3804] = 3630, + [3805] = 3654, + [3806] = 3561, + [3807] = 3643, + [3808] = 3808, + [3809] = 3665, + [3810] = 3507, + [3811] = 3811, + [3812] = 3680, + [3813] = 3771, + [3814] = 3570, + [3815] = 3543, + [3816] = 3527, + [3817] = 3644, + [3818] = 3746, + [3819] = 3628, + [3820] = 3808, + [3821] = 3798, + [3822] = 3571, + [3823] = 3811, + [3824] = 3522, + [3825] = 3604, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3832, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -7845,11 +7867,11 @@ static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { }; static const TSMapSlice ts_supertype_map_slices[] = { - [sym__expression] = {.index = 0, .length = 40}, - [sym__literal] = {.index = 40, .length = 6}, - [sym__literal_pattern] = {.index = 46, .length = 7}, - [sym__pattern] = {.index = 53, .length = 18}, - [sym__type] = {.index = 71, .length = 33}, + [sym__expression] = {.index = 0, .length = 41}, + [sym__literal] = {.index = 41, .length = 6}, + [sym__literal_pattern] = {.index = 47, .length = 7}, + [sym__pattern] = {.index = 54, .length = 18}, + [sym__type] = {.index = 72, .length = 33}, }; static const TSSymbol ts_supertype_map_entries[] = { @@ -7859,6 +7881,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_assignment_expression, sym_async_block, sym_await_expression, + sym_become_expression, sym_binary_expression, sym_block, sym_break_expression, @@ -7894,14 +7917,14 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_unsafe_block, sym_while_expression, sym_yield_expression, - [40] = + [41] = sym_boolean_literal, sym_char_literal, sym_float_literal, sym_integer_literal, sym_raw_string_literal, sym_string_literal, - [46] = + [47] = sym_boolean_literal, sym_char_literal, sym_float_literal, @@ -7909,7 +7932,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_negative_literal, sym_raw_string_literal, sym_string_literal, - [53] = + [54] = anon_sym__, sym__literal_pattern, sym_captured_pattern, @@ -7928,7 +7951,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_struct_pattern, sym_tuple_pattern, sym_tuple_struct_pattern, - [71] = + [72] = alias_sym_type_identifier, anon_sym_bool, anon_sym_char, @@ -9863,748 +9886,764 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'w') ADVANCE(21); END_STATE(); case 3: - if (lookahead == 'l') ADVANCE(22); - if (lookahead == 'o') ADVANCE(23); - if (lookahead == 'r') ADVANCE(24); + if (lookahead == 'e') ADVANCE(22); + if (lookahead == 'l') ADVANCE(23); + if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'r') ADVANCE(25); END_STATE(); case 4: - if (lookahead == 'h') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); - if (lookahead == 'r') ADVANCE(27); + if (lookahead == 'h') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); + if (lookahead == 'r') ADVANCE(28); END_STATE(); case 5: - if (lookahead == 'e') ADVANCE(28); - if (lookahead == 'y') ADVANCE(29); + if (lookahead == 'e') ADVANCE(29); + if (lookahead == 'y') ADVANCE(30); END_STATE(); case 6: - if (lookahead == 'l') ADVANCE(30); - if (lookahead == 'n') ADVANCE(31); - if (lookahead == 'x') ADVANCE(32); + if (lookahead == 'l') ADVANCE(31); + if (lookahead == 'n') ADVANCE(32); + if (lookahead == 'x') ADVANCE(33); END_STATE(); case 7: - 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); + if (lookahead == '3') ADVANCE(34); + if (lookahead == '6') ADVANCE(35); + if (lookahead == 'a') ADVANCE(36); + if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'o') ADVANCE(38); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'e') ADVANCE(39); END_STATE(); case 9: ADVANCE_MAP( - '1', 39, - '3', 40, - '6', 41, - '8', 42, - 'd', 43, - 'f', 44, - 'm', 45, - 'n', 46, - 's', 47, - 't', 48, + '1', 40, + '3', 41, + '6', 42, + '8', 43, + 'd', 44, + 'f', 45, + 'm', 46, + 'n', 47, + 's', 48, + 't', 49, ); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'i') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); + if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'i') ADVANCE(51); + if (lookahead == 'o') ADVANCE(52); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'e') ADVANCE(53); - if (lookahead == 'o') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'e') ADVANCE(54); + if (lookahead == 'o') ADVANCE(55); + if (lookahead == 'u') ADVANCE(56); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(56); - if (lookahead == 'u') ADVANCE(57); + if (lookahead == 'a') ADVANCE(57); + if (lookahead == 'u') ADVANCE(58); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(58); - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'a') ADVANCE(59); + if (lookahead == 'e') ADVANCE(60); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); - if (lookahead == 'u') ADVANCE(62); + if (lookahead == 'e') ADVANCE(61); + if (lookahead == 't') ADVANCE(62); + if (lookahead == 'u') ADVANCE(63); END_STATE(); case 15: - if (lookahead == 'r') ADVANCE(63); - if (lookahead == 't') ADVANCE(64); - if (lookahead == 'y') ADVANCE(65); + if (lookahead == 'r') ADVANCE(64); + if (lookahead == 't') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); END_STATE(); case 16: - if (lookahead == '1') ADVANCE(66); - if (lookahead == '3') ADVANCE(67); - if (lookahead == '6') ADVANCE(68); - if (lookahead == '8') ADVANCE(69); - if (lookahead == 'n') ADVANCE(70); - if (lookahead == 's') ADVANCE(71); + if (lookahead == '1') ADVANCE(67); + if (lookahead == '3') ADVANCE(68); + if (lookahead == '6') ADVANCE(69); + if (lookahead == '8') ADVANCE(70); + if (lookahead == 'n') ADVANCE(71); + if (lookahead == 's') ADVANCE(72); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(72); + if (lookahead == 'i') ADVANCE(73); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(73); + if (lookahead == 'h') ADVANCE(74); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(74); + if (lookahead == 'i') ADVANCE(75); END_STATE(); case 20: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(75); + if (lookahead == 'y') ADVANCE(76); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(76); + if (lookahead == 'a') ADVANCE(77); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(77); + if (lookahead == 'c') ADVANCE(78); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(78); + if (lookahead == 'o') ADVANCE(79); END_STATE(); case 24: - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'o') ADVANCE(80); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(80); + if (lookahead == 'e') ADVANCE(81); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'a') ADVANCE(82); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(82); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 28: - if (lookahead == 'f') ADVANCE(83); + if (lookahead == 'a') ADVANCE(84); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(84); + if (lookahead == 'f') ADVANCE(85); END_STATE(); case 30: - if (lookahead == 's') ADVANCE(85); + if (lookahead == 'n') ADVANCE(86); END_STATE(); case 31: - if (lookahead == 'u') ADVANCE(86); + if (lookahead == 's') ADVANCE(87); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(87); - if (lookahead == 't') ADVANCE(88); + if (lookahead == 'u') ADVANCE(88); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(89); + if (lookahead == 'p') ADVANCE(89); + if (lookahead == 't') ADVANCE(90); END_STATE(); case 34: - if (lookahead == '4') ADVANCE(90); + if (lookahead == '2') ADVANCE(91); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(91); + if (lookahead == '4') ADVANCE(92); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_fn); + if (lookahead == 'l') ADVANCE(93); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(93); + if (lookahead == 'r') ADVANCE(94); END_STATE(); case 39: - if (lookahead == '2') ADVANCE(94); - if (lookahead == '6') ADVANCE(95); + if (lookahead == 'n') ADVANCE(95); END_STATE(); case 40: if (lookahead == '2') ADVANCE(96); + if (lookahead == '6') ADVANCE(97); END_STATE(); case 41: - if (lookahead == '4') ADVANCE(97); + if (lookahead == '2') ADVANCE(98); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_i8); + if (lookahead == '4') ADVANCE(99); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'p') ADVANCE(101); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'i') ADVANCE(102); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(102); + if (lookahead == 'e') ADVANCE(103); END_STATE(); case 50: - if (lookahead == 'f') ADVANCE(103); if (lookahead == 't') ADVANCE(104); END_STATE(); case 51: - if (lookahead == 'o') ADVANCE(105); + if (lookahead == 'f') ADVANCE(105); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 'o') ADVANCE(107); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 54: - if (lookahead == 'd') ADVANCE(108); - if (lookahead == 'v') ADVANCE(109); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(110); + if (lookahead == 'd') ADVANCE(110); + if (lookahead == 'v') ADVANCE(111); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(111); + if (lookahead == 't') ADVANCE(112); END_STATE(); case 57: - if (lookahead == 'b') ADVANCE(112); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 58: - if (lookahead == 'w') ADVANCE(113); + if (lookahead == 'b') ADVANCE(114); END_STATE(); case 59: - if (lookahead == 'f') ADVANCE(114); - if (lookahead == 't') ADVANCE(115); + if (lookahead == 'w') ADVANCE(115); END_STATE(); case 60: - if (lookahead == 'l') ADVANCE(116); + if (lookahead == 'f') ADVANCE(116); + if (lookahead == 't') ADVANCE(117); END_STATE(); case 61: - if (lookahead == 'a') ADVANCE(117); - if (lookahead == 'm') ADVANCE(118); - if (lookahead == 'r') ADVANCE(119); + if (lookahead == 'l') ADVANCE(118); END_STATE(); case 62: - if (lookahead == 'p') ADVANCE(120); + if (lookahead == 'a') ADVANCE(119); + if (lookahead == 'm') ADVANCE(120); + if (lookahead == 'r') ADVANCE(121); END_STATE(); case 63: - if (lookahead == 'a') ADVANCE(121); - if (lookahead == 'u') ADVANCE(122); - if (lookahead == 'y') ADVANCE(123); + if (lookahead == 'p') ADVANCE(122); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'a') ADVANCE(123); + if (lookahead == 'u') ADVANCE(124); + if (lookahead == 'y') ADVANCE(125); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 66: - if (lookahead == '2') ADVANCE(125); - if (lookahead == '6') ADVANCE(126); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(126); END_STATE(); case 67: if (lookahead == '2') ADVANCE(127); + if (lookahead == '6') ADVANCE(128); END_STATE(); case 68: - if (lookahead == '4') ADVANCE(128); + if (lookahead == '2') ADVANCE(129); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '4') ADVANCE(130); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(129); - if (lookahead == 's') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 71: - if (lookahead == 'e') ADVANCE(131); - if (lookahead == 'i') ADVANCE(132); + if (lookahead == 'i') ADVANCE(131); + if (lookahead == 's') ADVANCE(132); END_STATE(); case 72: - if (lookahead == 's') ADVANCE(133); + if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 73: - if (lookahead == 'e') ADVANCE(134); - if (lookahead == 'i') ADVANCE(135); + if (lookahead == 's') ADVANCE(135); END_STATE(); case 74: if (lookahead == 'e') ADVANCE(136); + if (lookahead == 'i') ADVANCE(137); END_STATE(); case 75: - if (lookahead == 'n') ADVANCE(137); + if (lookahead == 'e') ADVANCE(138); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(138); + if (lookahead == 'n') ADVANCE(139); END_STATE(); case 77: - if (lookahead == 'c') ADVANCE(139); + if (lookahead == 'i') ADVANCE(140); END_STATE(); case 78: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'o') ADVANCE(141); END_STATE(); case 79: - if (lookahead == 'a') ADVANCE(141); + if (lookahead == 'c') ADVANCE(142); END_STATE(); case 80: - if (lookahead == 'r') ADVANCE(142); + if (lookahead == 'l') ADVANCE(143); END_STATE(); case 81: - if (lookahead == 's') ADVANCE(143); - if (lookahead == 't') ADVANCE(144); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 82: - if (lookahead == 't') ADVANCE(145); + if (lookahead == 'r') ADVANCE(145); END_STATE(); case 83: - if (lookahead == 'a') ADVANCE(146); + if (lookahead == 's') ADVANCE(146); + if (lookahead == 't') ADVANCE(147); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 't') ADVANCE(148); END_STATE(); case 85: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'a') ADVANCE(149); END_STATE(); case 86: - if (lookahead == 'm') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 87: - if (lookahead == 'r') ADVANCE(149); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 88: - if (lookahead == 'e') ADVANCE(150); + if (lookahead == 'm') ADVANCE(151); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_f64); + if (lookahead == 'e') ADVANCE(153); END_STATE(); case 91: - if (lookahead == 's') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_for); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_gen); + if (lookahead == 's') ADVANCE(154); END_STATE(); case 94: - if (lookahead == '8') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_i16); + ACCEPT_TOKEN(anon_sym_gen); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_i32); + if (lookahead == '8') ADVANCE(155); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 98: - if (lookahead == 'n') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 99: - if (lookahead == 'l') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 100: - if (lookahead == 'z') ADVANCE(155); + if (lookahead == 'n') ADVANCE(156); END_STATE(); case 101: - if (lookahead == 'm') ADVANCE(156); + if (lookahead == 'l') ADVANCE(157); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'z') ADVANCE(158); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(157); + if (lookahead == 'm') ADVANCE(159); END_STATE(); case 104: - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 105: - if (lookahead == 'p') ADVANCE(159); + if (lookahead == 'e') ADVANCE(160); END_STATE(); case 106: - if (lookahead == 'c') ADVANCE(160); + if (lookahead == 'e') ADVANCE(161); END_STATE(); case 107: - if (lookahead == 'a') ADVANCE(161); + if (lookahead == 'p') ADVANCE(162); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'c') ADVANCE(163); END_STATE(); case 109: - if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'a') ADVANCE(164); END_STATE(); case 110: - ACCEPT_TOKEN(sym_mutable_specifier); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == '_') ADVANCE(163); - if (lookahead == 'h') ADVANCE(164); + if (lookahead == 'e') ADVANCE(165); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_raw); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == '_') ADVANCE(166); + if (lookahead == 'h') ADVANCE(167); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 115: - if (lookahead == 'u') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_raw); END_STATE(); case 116: - if (lookahead == 'f') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 117: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 'u') ADVANCE(168); END_STATE(); case 118: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'f') ADVANCE(169); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(169); + if (lookahead == 't') ADVANCE(170); END_STATE(); case 120: - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 't') ADVANCE(171); END_STATE(); case 121: - if (lookahead == 'i') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(172); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(172); + if (lookahead == 'e') ADVANCE(173); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'i') ADVANCE(174); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(173); + if (lookahead == 'e') ADVANCE(175); END_STATE(); case 125: - if (lookahead == '8') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'e') ADVANCE(176); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == '8') ADVANCE(177); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 129: - if (lookahead == 'o') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 130: - if (lookahead == 'a') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'o') ADVANCE(178); END_STATE(); case 132: - if (lookahead == 'z') ADVANCE(177); + if (lookahead == 'a') ADVANCE(179); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(178); + if (lookahead == 'z') ADVANCE(180); END_STATE(); case 135: - if (lookahead == 'l') ADVANCE(179); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 136: - if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 137: - if (lookahead == 'c') ADVANCE(181); + if (lookahead == 'l') ADVANCE(182); END_STATE(); case 138: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 'l') ADVANCE(183); END_STATE(); case 139: - if (lookahead == 'k') ADVANCE(183); + if (lookahead == 'c') ADVANCE(184); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 't') ADVANCE(185); END_STATE(); case 141: - if (lookahead == 'k') ADVANCE(184); + if (lookahead == 'm') ADVANCE(186); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_char); + if (lookahead == 'k') ADVANCE(187); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 144: - if (lookahead == 'i') ADVANCE(186); + if (lookahead == 'k') ADVANCE(188); END_STATE(); case 145: - if (lookahead == 'e') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 146: - if (lookahead == 'u') ADVANCE(188); + if (lookahead == 't') ADVANCE(189); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'i') ADVANCE(190); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_expr); - if (lookahead == '_') ADVANCE(189); + if (lookahead == 'u') ADVANCE(192); END_STATE(); case 150: - if (lookahead == 'r') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_i128); + ACCEPT_TOKEN(anon_sym_expr); + if (lookahead == '_') ADVANCE(193); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(192); + if (lookahead == 'r') ADVANCE(194); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_impl); + if (lookahead == 'e') ADVANCE(195); END_STATE(); case 155: - if (lookahead == 'e') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_item); + if (lookahead == 't') ADVANCE(196); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 158: - if (lookahead == 'r') ADVANCE(195); + if (lookahead == 'e') ADVANCE(197); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_loop); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 160: - if (lookahead == 'h') ADVANCE(196); + if (lookahead == 't') ADVANCE(198); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_meta); + if (lookahead == 'r') ADVANCE(199); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_move); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 163: - if (lookahead == 'p') ADVANCE(197); + if (lookahead == 'h') ADVANCE(200); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 165: - if (lookahead == 'r') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 166: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'p') ADVANCE(201); END_STATE(); case 167: - if (lookahead == 'i') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_stmt); + if (lookahead == 'r') ADVANCE(202); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(200); + ACCEPT_TOKEN(sym_self); END_STATE(); case 170: - if (lookahead == 'r') ADVANCE(201); + if (lookahead == 'i') ADVANCE(203); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'c') ADVANCE(204); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'r') ADVANCE(205); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_u128); + if (lookahead == 't') ADVANCE(206); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 176: - if (lookahead == 'f') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 177: - if (lookahead == 'e') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 178: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'n') ADVANCE(207); END_STATE(); case 179: - if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(208); END_STATE(); case 180: - if (lookahead == 'd') ADVANCE(208); + if (lookahead == 'e') ADVANCE(209); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(210); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(211); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_block); + if (lookahead == 'd') ADVANCE(212); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(209); + if (lookahead == 'e') ADVANCE(213); END_STATE(); case 187: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 188: - if (lookahead == 'l') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 189: - if (lookahead == '2') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 190: - if (lookahead == 'n') ADVANCE(212); + if (lookahead == 'n') ADVANCE(214); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'l') ADVANCE(215); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_isize); + if (lookahead == '2') ADVANCE(216); END_STATE(); case 194: - if (lookahead == 'i') ADVANCE(213); + if (lookahead == 'n') ADVANCE(217); END_STATE(); case 195: - if (lookahead == 'a') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 197: - if (lookahead == 'a') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 198: - if (lookahead == 'n') ADVANCE(216); + if (lookahead == 'i') ADVANCE(218); END_STATE(); case 199: - if (lookahead == 'c') ADVANCE(217); + if (lookahead == 'a') ADVANCE(219); END_STATE(); case 200: - if (lookahead == 't') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 201: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'a') ADVANCE(220); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 'n') ADVANCE(221); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_union); + if (lookahead == 'c') ADVANCE(222); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(219); + if (lookahead == 't') ADVANCE(223); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(sym_super); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_yield); + if (lookahead == 'e') ADVANCE(224); END_STATE(); case 209: - if (lookahead == 'u') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 210: - if (lookahead == 't') ADVANCE(221); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 211: - if (lookahead == '0') ADVANCE(222); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 213: - if (lookahead == 'm') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_become); END_STATE(); case 214: - if (lookahead == 'l') ADVANCE(224); + if (lookahead == 'u') ADVANCE(225); END_STATE(); case 215: - if (lookahead == 'r') ADVANCE(225); + if (lookahead == 't') ADVANCE(226); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == '0') ADVANCE(227); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_struct); + if (lookahead == 'm') ADVANCE(228); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_unsafe); + if (lookahead == 'l') ADVANCE(229); END_STATE(); case 220: - if (lookahead == 'e') ADVANCE(226); + if (lookahead == 'r') ADVANCE(230); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 222: - if (lookahead == '2') ADVANCE(227); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 223: - if (lookahead == 'e') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_literal); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 225: - if (lookahead == 'a') ADVANCE(229); + if (lookahead == 'e') ADVANCE(231); END_STATE(); case 226: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 227: - if (lookahead == '1') ADVANCE(230); + if (lookahead == '2') ADVANCE(232); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_lifetime); + if (lookahead == 'e') ADVANCE(233); END_STATE(); case 229: - if (lookahead == 'm') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_literal); END_STATE(); case 230: - ACCEPT_TOKEN(anon_sym_expr_2021); + if (lookahead == 'a') ADVANCE(234); END_STATE(); case 231: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 232: + if (lookahead == '1') ADVANCE(235); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_lifetime); + END_STATE(); + case 234: + if (lookahead == 'm') ADVANCE(236); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_expr_2021); + END_STATE(); + case 236: ACCEPT_TOKEN(anon_sym_pat_param); END_STATE(); default: @@ -10657,14 +10696,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 5, .external_lex_state = 2}, [42] = {.lex_state = 5, .external_lex_state = 2}, [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 5, .external_lex_state = 2}, - [45] = {.lex_state = 7, .external_lex_state = 2}, + [44] = {.lex_state = 7, .external_lex_state = 2}, + [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 7, .external_lex_state = 2}, - [47] = {.lex_state = 7, .external_lex_state = 2}, + [47] = {.lex_state = 5, .external_lex_state = 2}, [48] = {.lex_state = 7, .external_lex_state = 2}, [49] = {.lex_state = 7, .external_lex_state = 2}, [50] = {.lex_state = 7, .external_lex_state = 2}, - [51] = {.lex_state = 5, .external_lex_state = 2}, + [51] = {.lex_state = 7, .external_lex_state = 2}, [52] = {.lex_state = 7, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, @@ -10685,7 +10724,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [69] = {.lex_state = 4, .external_lex_state = 2}, [70] = {.lex_state = 4, .external_lex_state = 2}, [71] = {.lex_state = 4, .external_lex_state = 2}, - [72] = {.lex_state = 4, .external_lex_state = 2}, + [72] = {.lex_state = 6, .external_lex_state = 2}, [73] = {.lex_state = 4, .external_lex_state = 2}, [74] = {.lex_state = 4, .external_lex_state = 2}, [75] = {.lex_state = 4, .external_lex_state = 2}, @@ -10696,39 +10735,39 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 4, .external_lex_state = 2}, [81] = {.lex_state = 4, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 6, .external_lex_state = 2}, - [84] = {.lex_state = 6, .external_lex_state = 2}, + [83] = {.lex_state = 4, .external_lex_state = 2}, + [84] = {.lex_state = 4, .external_lex_state = 2}, [85] = {.lex_state = 6, .external_lex_state = 2}, [86] = {.lex_state = 6, .external_lex_state = 2}, [87] = {.lex_state = 6, .external_lex_state = 2}, [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 2}, - [91] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 6, .external_lex_state = 2}, + [90] = {.lex_state = 6, .external_lex_state = 2}, + [91] = {.lex_state = 6, .external_lex_state = 2}, [92] = {.lex_state = 4, .external_lex_state = 2}, [93] = {.lex_state = 4, .external_lex_state = 2}, - [94] = {.lex_state = 6, .external_lex_state = 2}, - [95] = {.lex_state = 6, .external_lex_state = 2}, - [96] = {.lex_state = 6, .external_lex_state = 2}, - [97] = {.lex_state = 6, .external_lex_state = 2}, - [98] = {.lex_state = 6, .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}, + [98] = {.lex_state = 4, .external_lex_state = 2}, [99] = {.lex_state = 6, .external_lex_state = 2}, [100] = {.lex_state = 6, .external_lex_state = 2}, [101] = {.lex_state = 6, .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}, + [102] = {.lex_state = 6, .external_lex_state = 2}, + [103] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 6, .external_lex_state = 2}, [105] = {.lex_state = 6, .external_lex_state = 2}, [106] = {.lex_state = 6, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, - [108] = {.lex_state = 6, .external_lex_state = 2}, + [108] = {.lex_state = 4, .external_lex_state = 2}, [109] = {.lex_state = 6, .external_lex_state = 2}, [110] = {.lex_state = 6, .external_lex_state = 2}, - [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, + [111] = {.lex_state = 4, .external_lex_state = 2}, + [112] = {.lex_state = 6, .external_lex_state = 2}, [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, - [115] = {.lex_state = 6, .external_lex_state = 2}, + [115] = {.lex_state = 4, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 6, .external_lex_state = 2}, @@ -10741,11 +10780,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 6, .external_lex_state = 2}, [126] = {.lex_state = 6, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, + [128] = {.lex_state = 6, .external_lex_state = 2}, + [129] = {.lex_state = 6, .external_lex_state = 2}, [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 2}, + [131] = {.lex_state = 6, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 6, .external_lex_state = 2}, [134] = {.lex_state = 13, .external_lex_state = 2}, [135] = {.lex_state = 13, .external_lex_state = 2}, @@ -10766,7 +10805,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [150] = {.lex_state = 13, .external_lex_state = 2}, [151] = {.lex_state = 13, .external_lex_state = 2}, [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 4, .external_lex_state = 2}, + [153] = {.lex_state = 13, .external_lex_state = 2}, [154] = {.lex_state = 13, .external_lex_state = 2}, [155] = {.lex_state = 13, .external_lex_state = 2}, [156] = {.lex_state = 13, .external_lex_state = 2}, @@ -10774,10 +10813,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 13, .external_lex_state = 2}, [159] = {.lex_state = 13, .external_lex_state = 2}, [160] = {.lex_state = 13, .external_lex_state = 2}, - [161] = {.lex_state = 4, .external_lex_state = 2}, + [161] = {.lex_state = 13, .external_lex_state = 2}, [162] = {.lex_state = 13, .external_lex_state = 2}, [163] = {.lex_state = 13, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 2}, + [164] = {.lex_state = 13, .external_lex_state = 2}, [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 13, .external_lex_state = 2}, @@ -10788,98 +10827,98 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 13, .external_lex_state = 2}, [173] = {.lex_state = 13, .external_lex_state = 2}, [174] = {.lex_state = 4, .external_lex_state = 2}, - [175] = {.lex_state = 6, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, - [177] = {.lex_state = 4, .external_lex_state = 2}, + [175] = {.lex_state = 4, .external_lex_state = 2}, + [176] = {.lex_state = 13, .external_lex_state = 2}, + [177] = {.lex_state = 13, .external_lex_state = 2}, [178] = {.lex_state = 4, .external_lex_state = 2}, - [179] = {.lex_state = 4, .external_lex_state = 2}, - [180] = {.lex_state = 4, .external_lex_state = 2}, + [179] = {.lex_state = 13, .external_lex_state = 2}, + [180] = {.lex_state = 15, .external_lex_state = 2}, [181] = {.lex_state = 4, .external_lex_state = 2}, [182] = {.lex_state = 4, .external_lex_state = 2}, - [183] = {.lex_state = 4, .external_lex_state = 2}, + [183] = {.lex_state = 13, .external_lex_state = 2}, [184] = {.lex_state = 4, .external_lex_state = 2}, [185] = {.lex_state = 4, .external_lex_state = 2}, [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 13, .external_lex_state = 2}, - [188] = {.lex_state = 4, .external_lex_state = 2}, - [189] = {.lex_state = 4, .external_lex_state = 2}, - [190] = {.lex_state = 4, .external_lex_state = 2}, - [191] = {.lex_state = 4, .external_lex_state = 2}, + [187] = {.lex_state = 15, .external_lex_state = 2}, + [188] = {.lex_state = 15, .external_lex_state = 2}, + [189] = {.lex_state = 15, .external_lex_state = 2}, + [190] = {.lex_state = 13, .external_lex_state = 2}, + [191] = {.lex_state = 13, .external_lex_state = 2}, [192] = {.lex_state = 4, .external_lex_state = 2}, - [193] = {.lex_state = 6, .external_lex_state = 2}, + [193] = {.lex_state = 15, .external_lex_state = 2}, [194] = {.lex_state = 4, .external_lex_state = 2}, - [195] = {.lex_state = 13, .external_lex_state = 2}, - [196] = {.lex_state = 13, .external_lex_state = 2}, + [195] = {.lex_state = 4, .external_lex_state = 2}, + [196] = {.lex_state = 4, .external_lex_state = 2}, [197] = {.lex_state = 4, .external_lex_state = 2}, - [198] = {.lex_state = 13, .external_lex_state = 2}, - [199] = {.lex_state = 13, .external_lex_state = 2}, + [198] = {.lex_state = 15, .external_lex_state = 2}, + [199] = {.lex_state = 15, .external_lex_state = 2}, [200] = {.lex_state = 13, .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 = 6, .external_lex_state = 2}, - [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 12, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, - [209] = {.lex_state = 15, .external_lex_state = 2}, + [201] = {.lex_state = 13, .external_lex_state = 2}, + [202] = {.lex_state = 15, .external_lex_state = 2}, + [203] = {.lex_state = 15, .external_lex_state = 2}, + [204] = {.lex_state = 4, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, + [206] = {.lex_state = 15, .external_lex_state = 2}, + [207] = {.lex_state = 15, .external_lex_state = 2}, + [208] = {.lex_state = 4, .external_lex_state = 2}, + [209] = {.lex_state = 4, .external_lex_state = 2}, [210] = {.lex_state = 15, .external_lex_state = 2}, - [211] = {.lex_state = 15, .external_lex_state = 2}, - [212] = {.lex_state = 12, .external_lex_state = 2}, + [211] = {.lex_state = 4, .external_lex_state = 2}, + [212] = {.lex_state = 15, .external_lex_state = 2}, [213] = {.lex_state = 15, .external_lex_state = 2}, [214] = {.lex_state = 15, .external_lex_state = 2}, - [215] = {.lex_state = 13, .external_lex_state = 2}, - [216] = {.lex_state = 12, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, + [215] = {.lex_state = 15, .external_lex_state = 2}, + [216] = {.lex_state = 15, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 15, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, + [219] = {.lex_state = 13, .external_lex_state = 2}, + [220] = {.lex_state = 13, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 15, .external_lex_state = 2}, - [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 15, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 6, .external_lex_state = 2}, - [227] = {.lex_state = 6, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, - [230] = {.lex_state = 15, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 6, .external_lex_state = 2}, + [224] = {.lex_state = 13, .external_lex_state = 2}, + [225] = {.lex_state = 15, .external_lex_state = 2}, + [226] = {.lex_state = 4, .external_lex_state = 2}, + [227] = {.lex_state = 4, .external_lex_state = 2}, + [228] = {.lex_state = 4, .external_lex_state = 2}, + [229] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 13, .external_lex_state = 2}, [231] = {.lex_state = 6, .external_lex_state = 2}, - [232] = {.lex_state = 6, .external_lex_state = 2}, - [233] = {.lex_state = 6, .external_lex_state = 2}, - [234] = {.lex_state = 15, .external_lex_state = 2}, - [235] = {.lex_state = 6, .external_lex_state = 2}, - [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 13, .external_lex_state = 2}, - [239] = {.lex_state = 15, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 4, .external_lex_state = 2}, + [234] = {.lex_state = 4, .external_lex_state = 2}, + [235] = {.lex_state = 4, .external_lex_state = 2}, + [236] = {.lex_state = 4, .external_lex_state = 2}, + [237] = {.lex_state = 6, .external_lex_state = 2}, + [238] = {.lex_state = 6, .external_lex_state = 2}, + [239] = {.lex_state = 13, .external_lex_state = 2}, + [240] = {.lex_state = 6, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 15, .external_lex_state = 2}, - [243] = {.lex_state = 15, .external_lex_state = 2}, + [242] = {.lex_state = 6, .external_lex_state = 2}, + [243] = {.lex_state = 6, .external_lex_state = 2}, [244] = {.lex_state = 13, .external_lex_state = 2}, - [245] = {.lex_state = 12, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, [246] = {.lex_state = 6, .external_lex_state = 2}, - [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 12, .external_lex_state = 2}, - [250] = {.lex_state = 12, .external_lex_state = 2}, - [251] = {.lex_state = 15, .external_lex_state = 2}, + [247] = {.lex_state = 6, .external_lex_state = 2}, + [248] = {.lex_state = 6, .external_lex_state = 2}, + [249] = {.lex_state = 6, .external_lex_state = 2}, + [250] = {.lex_state = 6, .external_lex_state = 2}, + [251] = {.lex_state = 6, .external_lex_state = 2}, [252] = {.lex_state = 13, .external_lex_state = 2}, - [253] = {.lex_state = 15, .external_lex_state = 2}, + [253] = {.lex_state = 13, .external_lex_state = 2}, [254] = {.lex_state = 13, .external_lex_state = 2}, - [255] = {.lex_state = 12, .external_lex_state = 2}, - [256] = {.lex_state = 12, .external_lex_state = 2}, + [255] = {.lex_state = 13, .external_lex_state = 2}, + [256] = {.lex_state = 13, .external_lex_state = 2}, [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, - [259] = {.lex_state = 12, .external_lex_state = 2}, - [260] = {.lex_state = 12, .external_lex_state = 2}, - [261] = {.lex_state = 12, .external_lex_state = 2}, - [262] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 13, .external_lex_state = 2}, + [259] = {.lex_state = 13, .external_lex_state = 2}, + [260] = {.lex_state = 13, .external_lex_state = 2}, + [261] = {.lex_state = 13, .external_lex_state = 2}, + [262] = {.lex_state = 13, .external_lex_state = 2}, [263] = {.lex_state = 13, .external_lex_state = 2}, [264] = {.lex_state = 13, .external_lex_state = 2}, - [265] = {.lex_state = 12, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 13, .external_lex_state = 2}, + [266] = {.lex_state = 13, .external_lex_state = 2}, [267] = {.lex_state = 13, .external_lex_state = 2}, [268] = {.lex_state = 13, .external_lex_state = 2}, [269] = {.lex_state = 13, .external_lex_state = 2}, @@ -10903,7 +10942,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [287] = {.lex_state = 13, .external_lex_state = 2}, [288] = {.lex_state = 13, .external_lex_state = 2}, [289] = {.lex_state = 13, .external_lex_state = 2}, - [290] = {.lex_state = 71, .external_lex_state = 2}, + [290] = {.lex_state = 13, .external_lex_state = 2}, [291] = {.lex_state = 13, .external_lex_state = 2}, [292] = {.lex_state = 13, .external_lex_state = 2}, [293] = {.lex_state = 13, .external_lex_state = 2}, @@ -10915,8 +10954,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [299] = {.lex_state = 13, .external_lex_state = 2}, [300] = {.lex_state = 13, .external_lex_state = 2}, [301] = {.lex_state = 13, .external_lex_state = 2}, - [302] = {.lex_state = 13, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 2}, + [302] = {.lex_state = 12, .external_lex_state = 2}, + [303] = {.lex_state = 12, .external_lex_state = 2}, [304] = {.lex_state = 13, .external_lex_state = 2}, [305] = {.lex_state = 13, .external_lex_state = 2}, [306] = {.lex_state = 13, .external_lex_state = 2}, @@ -10925,22 +10964,22 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [309] = {.lex_state = 13, .external_lex_state = 2}, [310] = {.lex_state = 13, .external_lex_state = 2}, [311] = {.lex_state = 13, .external_lex_state = 2}, - [312] = {.lex_state = 13, .external_lex_state = 2}, + [312] = {.lex_state = 12, .external_lex_state = 2}, [313] = {.lex_state = 13, .external_lex_state = 2}, [314] = {.lex_state = 13, .external_lex_state = 2}, [315] = {.lex_state = 13, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 14, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, + [320] = {.lex_state = 13, .external_lex_state = 2}, + [321] = {.lex_state = 12, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, [323] = {.lex_state = 13, .external_lex_state = 2}, [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 14, .external_lex_state = 2}, - [326] = {.lex_state = 13, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, + [325] = {.lex_state = 13, .external_lex_state = 2}, + [326] = {.lex_state = 12, .external_lex_state = 2}, + [327] = {.lex_state = 12, .external_lex_state = 2}, [328] = {.lex_state = 13, .external_lex_state = 2}, [329] = {.lex_state = 13, .external_lex_state = 2}, [330] = {.lex_state = 13, .external_lex_state = 2}, @@ -10953,7 +10992,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [337] = {.lex_state = 13, .external_lex_state = 2}, [338] = {.lex_state = 13, .external_lex_state = 2}, [339] = {.lex_state = 13, .external_lex_state = 2}, - [340] = {.lex_state = 14, .external_lex_state = 2}, + [340] = {.lex_state = 13, .external_lex_state = 2}, [341] = {.lex_state = 13, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, @@ -10997,26 +11036,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [381] = {.lex_state = 13, .external_lex_state = 2}, [382] = {.lex_state = 13, .external_lex_state = 2}, [383] = {.lex_state = 13, .external_lex_state = 2}, - [384] = {.lex_state = 13, .external_lex_state = 2}, - [385] = {.lex_state = 13, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 13, .external_lex_state = 2}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 13, .external_lex_state = 2}, - [390] = {.lex_state = 13, .external_lex_state = 2}, - [391] = {.lex_state = 13, .external_lex_state = 2}, - [392] = {.lex_state = 13, .external_lex_state = 2}, - [393] = {.lex_state = 13, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, + [385] = {.lex_state = 71, .external_lex_state = 2}, + [386] = {.lex_state = 12, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 12, .external_lex_state = 2}, + [390] = {.lex_state = 12, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 2}, + [393] = {.lex_state = 12, .external_lex_state = 2}, [394] = {.lex_state = 71, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, - [396] = {.lex_state = 71, .external_lex_state = 2}, + [395] = {.lex_state = 14, .external_lex_state = 2}, + [396] = {.lex_state = 14, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, [398] = {.lex_state = 71, .external_lex_state = 2}, - [399] = {.lex_state = 71, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, [400] = {.lex_state = 71, .external_lex_state = 2}, - [401] = {.lex_state = 71, .external_lex_state = 2}, + [401] = {.lex_state = 14, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 71, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, @@ -11031,21 +11070,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [415] = {.lex_state = 71, .external_lex_state = 2}, [416] = {.lex_state = 71, .external_lex_state = 2}, [417] = {.lex_state = 71, .external_lex_state = 2}, - [418] = {.lex_state = 12, .external_lex_state = 2}, + [418] = {.lex_state = 71, .external_lex_state = 2}, [419] = {.lex_state = 71, .external_lex_state = 2}, [420] = {.lex_state = 71, .external_lex_state = 2}, [421] = {.lex_state = 71, .external_lex_state = 2}, [422] = {.lex_state = 71, .external_lex_state = 2}, [423] = {.lex_state = 71, .external_lex_state = 2}, - [424] = {.lex_state = 12, .external_lex_state = 2}, - [425] = {.lex_state = 12, .external_lex_state = 2}, + [424] = {.lex_state = 71, .external_lex_state = 2}, + [425] = {.lex_state = 71, .external_lex_state = 2}, [426] = {.lex_state = 71, .external_lex_state = 2}, [427] = {.lex_state = 71, .external_lex_state = 2}, - [428] = {.lex_state = 71, .external_lex_state = 2}, - [429] = {.lex_state = 14, .external_lex_state = 2}, - [430] = {.lex_state = 14, .external_lex_state = 2}, - [431] = {.lex_state = 14, .external_lex_state = 2}, - [432] = {.lex_state = 14, .external_lex_state = 2}, + [428] = {.lex_state = 12, .external_lex_state = 2}, + [429] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 12, .external_lex_state = 2}, + [431] = {.lex_state = 71, .external_lex_state = 2}, + [432] = {.lex_state = 12, .external_lex_state = 2}, [433] = {.lex_state = 14, .external_lex_state = 2}, [434] = {.lex_state = 14, .external_lex_state = 2}, [435] = {.lex_state = 14, .external_lex_state = 2}, @@ -11053,14 +11092,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [437] = {.lex_state = 14, .external_lex_state = 2}, [438] = {.lex_state = 14, .external_lex_state = 2}, [439] = {.lex_state = 14, .external_lex_state = 2}, - [440] = {.lex_state = 5, .external_lex_state = 2}, - [441] = {.lex_state = 7, .external_lex_state = 2}, - [442] = {.lex_state = 16, .external_lex_state = 2}, - [443] = {.lex_state = 16, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 13, .external_lex_state = 2}, - [446] = {.lex_state = 13, .external_lex_state = 2}, - [447] = {.lex_state = 13, .external_lex_state = 2}, + [440] = {.lex_state = 14, .external_lex_state = 2}, + [441] = {.lex_state = 14, .external_lex_state = 2}, + [442] = {.lex_state = 14, .external_lex_state = 2}, + [443] = {.lex_state = 14, .external_lex_state = 2}, + [444] = {.lex_state = 5, .external_lex_state = 2}, + [445] = {.lex_state = 7, .external_lex_state = 2}, + [446] = {.lex_state = 16, .external_lex_state = 2}, + [447] = {.lex_state = 16, .external_lex_state = 2}, [448] = {.lex_state = 13, .external_lex_state = 2}, [449] = {.lex_state = 13, .external_lex_state = 2}, [450] = {.lex_state = 13, .external_lex_state = 2}, @@ -11074,32 +11113,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 13, .external_lex_state = 2}, [459] = {.lex_state = 13, .external_lex_state = 2}, [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 14, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 14, .external_lex_state = 2}, + [461] = {.lex_state = 13, .external_lex_state = 2}, + [462] = {.lex_state = 13, .external_lex_state = 2}, + [463] = {.lex_state = 13, .external_lex_state = 2}, + [464] = {.lex_state = 13, .external_lex_state = 2}, [465] = {.lex_state = 14, .external_lex_state = 2}, [466] = {.lex_state = 14, .external_lex_state = 2}, [467] = {.lex_state = 14, .external_lex_state = 2}, [468] = {.lex_state = 14, .external_lex_state = 2}, [469] = {.lex_state = 5, .external_lex_state = 2}, - [470] = {.lex_state = 5, .external_lex_state = 2}, - [471] = {.lex_state = 5, .external_lex_state = 2}, - [472] = {.lex_state = 5, .external_lex_state = 2}, + [470] = {.lex_state = 14, .external_lex_state = 2}, + [471] = {.lex_state = 14, .external_lex_state = 2}, + [472] = {.lex_state = 14, .external_lex_state = 2}, [473] = {.lex_state = 5, .external_lex_state = 2}, - [474] = {.lex_state = 14, .external_lex_state = 2}, + [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, - [476] = {.lex_state = 14, .external_lex_state = 2}, + [476] = {.lex_state = 5, .external_lex_state = 2}, [477] = {.lex_state = 5, .external_lex_state = 2}, - [478] = {.lex_state = 5, .external_lex_state = 2}, + [478] = {.lex_state = 14, .external_lex_state = 2}, [479] = {.lex_state = 5, .external_lex_state = 2}, - [480] = {.lex_state = 5, .external_lex_state = 2}, + [480] = {.lex_state = 14, .external_lex_state = 2}, [481] = {.lex_state = 5, .external_lex_state = 2}, [482] = {.lex_state = 5, .external_lex_state = 2}, [483] = {.lex_state = 5, .external_lex_state = 2}, [484] = {.lex_state = 5, .external_lex_state = 2}, [485] = {.lex_state = 5, .external_lex_state = 2}, - [486] = {.lex_state = 14, .external_lex_state = 2}, + [486] = {.lex_state = 5, .external_lex_state = 2}, [487] = {.lex_state = 5, .external_lex_state = 2}, [488] = {.lex_state = 5, .external_lex_state = 2}, [489] = {.lex_state = 5, .external_lex_state = 2}, @@ -11108,14 +11147,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [492] = {.lex_state = 5, .external_lex_state = 2}, [493] = {.lex_state = 5, .external_lex_state = 2}, [494] = {.lex_state = 5, .external_lex_state = 2}, - [495] = {.lex_state = 14, .external_lex_state = 2}, + [495] = {.lex_state = 5, .external_lex_state = 2}, [496] = {.lex_state = 5, .external_lex_state = 2}, [497] = {.lex_state = 5, .external_lex_state = 2}, [498] = {.lex_state = 5, .external_lex_state = 2}, - [499] = {.lex_state = 14, .external_lex_state = 2}, + [499] = {.lex_state = 5, .external_lex_state = 2}, [500] = {.lex_state = 14, .external_lex_state = 2}, [501] = {.lex_state = 14, .external_lex_state = 2}, - [502] = {.lex_state = 14, .external_lex_state = 2}, + [502] = {.lex_state = 5, .external_lex_state = 2}, [503] = {.lex_state = 73, .external_lex_state = 2}, [504] = {.lex_state = 73, .external_lex_state = 2}, [505] = {.lex_state = 73, .external_lex_state = 2}, @@ -11228,8 +11267,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [612] = {.lex_state = 73, .external_lex_state = 2}, [613] = {.lex_state = 73, .external_lex_state = 2}, [614] = {.lex_state = 73, .external_lex_state = 2}, - [615] = {.lex_state = 23}, - [616] = {.lex_state = 14, .external_lex_state = 2}, + [615] = {.lex_state = 73, .external_lex_state = 2}, + [616] = {.lex_state = 73, .external_lex_state = 2}, [617] = {.lex_state = 73, .external_lex_state = 2}, [618] = {.lex_state = 73, .external_lex_state = 2}, [619] = {.lex_state = 73, .external_lex_state = 2}, @@ -11242,14 +11281,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 73, .external_lex_state = 2}, [627] = {.lex_state = 73, .external_lex_state = 2}, [628] = {.lex_state = 73, .external_lex_state = 2}, - [629] = {.lex_state = 73, .external_lex_state = 2}, + [629] = {.lex_state = 14, .external_lex_state = 2}, [630] = {.lex_state = 73, .external_lex_state = 2}, [631] = {.lex_state = 73, .external_lex_state = 2}, [632] = {.lex_state = 73, .external_lex_state = 2}, [633] = {.lex_state = 73, .external_lex_state = 2}, [634] = {.lex_state = 73, .external_lex_state = 2}, [635] = {.lex_state = 73, .external_lex_state = 2}, - [636] = {.lex_state = 23}, + [636] = {.lex_state = 73, .external_lex_state = 2}, [637] = {.lex_state = 73, .external_lex_state = 2}, [638] = {.lex_state = 73, .external_lex_state = 2}, [639] = {.lex_state = 73, .external_lex_state = 2}, @@ -11264,7 +11303,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [648] = {.lex_state = 73, .external_lex_state = 2}, [649] = {.lex_state = 73, .external_lex_state = 2}, [650] = {.lex_state = 73, .external_lex_state = 2}, - [651] = {.lex_state = 73, .external_lex_state = 2}, + [651] = {.lex_state = 14, .external_lex_state = 2}, [652] = {.lex_state = 73, .external_lex_state = 2}, [653] = {.lex_state = 73, .external_lex_state = 2}, [654] = {.lex_state = 73, .external_lex_state = 2}, @@ -11306,16 +11345,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [690] = {.lex_state = 73, .external_lex_state = 2}, [691] = {.lex_state = 73, .external_lex_state = 2}, [692] = {.lex_state = 73, .external_lex_state = 2}, - [693] = {.lex_state = 73, .external_lex_state = 2}, - [694] = {.lex_state = 23}, + [693] = {.lex_state = 14, .external_lex_state = 2}, + [694] = {.lex_state = 73, .external_lex_state = 2}, [695] = {.lex_state = 73, .external_lex_state = 2}, [696] = {.lex_state = 73, .external_lex_state = 2}, [697] = {.lex_state = 73, .external_lex_state = 2}, [698] = {.lex_state = 73, .external_lex_state = 2}, [699] = {.lex_state = 73, .external_lex_state = 2}, [700] = {.lex_state = 73, .external_lex_state = 2}, - [701] = {.lex_state = 23}, - [702] = {.lex_state = 73, .external_lex_state = 2}, + [701] = {.lex_state = 73, .external_lex_state = 2}, + [702] = {.lex_state = 14, .external_lex_state = 2}, [703] = {.lex_state = 73, .external_lex_state = 2}, [704] = {.lex_state = 73, .external_lex_state = 2}, [705] = {.lex_state = 73, .external_lex_state = 2}, @@ -11333,10 +11372,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [717] = {.lex_state = 73, .external_lex_state = 2}, [718] = {.lex_state = 73, .external_lex_state = 2}, [719] = {.lex_state = 73, .external_lex_state = 2}, - [720] = {.lex_state = 23}, + [720] = {.lex_state = 73, .external_lex_state = 2}, [721] = {.lex_state = 73, .external_lex_state = 2}, [722] = {.lex_state = 73, .external_lex_state = 2}, - [723] = {.lex_state = 14, .external_lex_state = 2}, + [723] = {.lex_state = 73, .external_lex_state = 2}, [724] = {.lex_state = 73, .external_lex_state = 2}, [725] = {.lex_state = 73, .external_lex_state = 2}, [726] = {.lex_state = 73, .external_lex_state = 2}, @@ -11359,7 +11398,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [743] = {.lex_state = 73, .external_lex_state = 2}, [744] = {.lex_state = 73, .external_lex_state = 2}, [745] = {.lex_state = 73, .external_lex_state = 2}, - [746] = {.lex_state = 14, .external_lex_state = 2}, + [746] = {.lex_state = 73, .external_lex_state = 2}, [747] = {.lex_state = 73, .external_lex_state = 2}, [748] = {.lex_state = 73, .external_lex_state = 2}, [749] = {.lex_state = 73, .external_lex_state = 2}, @@ -11397,28 +11436,28 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [781] = {.lex_state = 73, .external_lex_state = 2}, [782] = {.lex_state = 73, .external_lex_state = 2}, [783] = {.lex_state = 73, .external_lex_state = 2}, - [784] = {.lex_state = 73, .external_lex_state = 2}, - [785] = {.lex_state = 73, .external_lex_state = 2}, - [786] = {.lex_state = 73, .external_lex_state = 2}, - [787] = {.lex_state = 73, .external_lex_state = 2}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, + [784] = {.lex_state = 14, .external_lex_state = 2}, + [785] = {.lex_state = 23}, + [786] = {.lex_state = 23}, + [787] = {.lex_state = 23}, + [788] = {.lex_state = 14, .external_lex_state = 2}, + [789] = {.lex_state = 23}, + [790] = {.lex_state = 14, .external_lex_state = 2}, + [791] = {.lex_state = 23}, [792] = {.lex_state = 17}, [793] = {.lex_state = 17}, [794] = {.lex_state = 17}, [795] = {.lex_state = 17}, [796] = {.lex_state = 17}, - [797] = {.lex_state = 14, .external_lex_state = 2}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, + [797] = {.lex_state = 17}, + [798] = {.lex_state = 17}, + [799] = {.lex_state = 17}, [800] = {.lex_state = 14, .external_lex_state = 2}, [801] = {.lex_state = 17}, [802] = {.lex_state = 14, .external_lex_state = 2}, [803] = {.lex_state = 17}, [804] = {.lex_state = 14, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, + [805] = {.lex_state = 17}, [806] = {.lex_state = 14, .external_lex_state = 2}, [807] = {.lex_state = 14, .external_lex_state = 2}, [808] = {.lex_state = 14, .external_lex_state = 2}, @@ -11467,10 +11506,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [851] = {.lex_state = 14, .external_lex_state = 2}, [852] = {.lex_state = 14, .external_lex_state = 2}, [853] = {.lex_state = 14, .external_lex_state = 2}, - [854] = {.lex_state = 17}, - [855] = {.lex_state = 17}, - [856] = {.lex_state = 17}, - [857] = {.lex_state = 17}, + [854] = {.lex_state = 14, .external_lex_state = 2}, + [855] = {.lex_state = 14, .external_lex_state = 2}, + [856] = {.lex_state = 14, .external_lex_state = 2}, + [857] = {.lex_state = 14, .external_lex_state = 2}, [858] = {.lex_state = 17}, [859] = {.lex_state = 17}, [860] = {.lex_state = 17}, @@ -11671,76 +11710,76 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 17}, [1056] = {.lex_state = 17}, [1057] = {.lex_state = 17}, - [1058] = {.lex_state = 13, .external_lex_state = 2}, - [1059] = {.lex_state = 13, .external_lex_state = 2}, - [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 15, .external_lex_state = 2}, - [1062] = {.lex_state = 15, .external_lex_state = 2}, + [1058] = {.lex_state = 17}, + [1059] = {.lex_state = 17}, + [1060] = {.lex_state = 17}, + [1061] = {.lex_state = 17}, + [1062] = {.lex_state = 13, .external_lex_state = 2}, [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 17}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, + [1064] = {.lex_state = 13, .external_lex_state = 2}, + [1065] = {.lex_state = 15, .external_lex_state = 2}, + [1066] = {.lex_state = 15, .external_lex_state = 2}, [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, - [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 8}, - [1071] = {.lex_state = 8}, - [1072] = {.lex_state = 9}, + [1068] = {.lex_state = 12, .external_lex_state = 2}, + [1069] = {.lex_state = 17}, + [1070] = {.lex_state = 13, .external_lex_state = 2}, + [1071] = {.lex_state = 13, .external_lex_state = 2}, + [1072] = {.lex_state = 13, .external_lex_state = 2}, [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, + [1074] = {.lex_state = 8}, [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, + [1076] = {.lex_state = 8}, [1077] = {.lex_state = 14, .external_lex_state = 2}, [1078] = {.lex_state = 23}, - [1079] = {.lex_state = 23}, - [1080] = {.lex_state = 8}, + [1079] = {.lex_state = 8}, + [1080] = {.lex_state = 23}, [1081] = {.lex_state = 23}, [1082] = {.lex_state = 23}, - [1083] = {.lex_state = 17}, - [1084] = {.lex_state = 26}, - [1085] = {.lex_state = 17}, - [1086] = {.lex_state = 17}, + [1083] = {.lex_state = 9}, + [1084] = {.lex_state = 23}, + [1085] = {.lex_state = 23}, + [1086] = {.lex_state = 23}, [1087] = {.lex_state = 26}, [1088] = {.lex_state = 8}, [1089] = {.lex_state = 17}, [1090] = {.lex_state = 26}, [1091] = {.lex_state = 26}, [1092] = {.lex_state = 26}, - [1093] = {.lex_state = 8}, - [1094] = {.lex_state = 8}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, - [1096] = {.lex_state = 8}, - [1097] = {.lex_state = 17}, + [1093] = {.lex_state = 17}, + [1094] = {.lex_state = 26}, + [1095] = {.lex_state = 17}, + [1096] = {.lex_state = 17}, + [1097] = {.lex_state = 8}, [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 17}, - [1100] = {.lex_state = 17}, - [1101] = {.lex_state = 8}, + [1099] = {.lex_state = 8}, + [1100] = {.lex_state = 8}, + [1101] = {.lex_state = 14, .external_lex_state = 2}, [1102] = {.lex_state = 8}, - [1103] = {.lex_state = 17}, - [1104] = {.lex_state = 8}, - [1105] = {.lex_state = 14, .external_lex_state = 2}, - [1106] = {.lex_state = 8}, - [1107] = {.lex_state = 23}, - [1108] = {.lex_state = 17}, - [1109] = {.lex_state = 23}, - [1110] = {.lex_state = 23}, + [1103] = {.lex_state = 8}, + [1104] = {.lex_state = 17}, + [1105] = {.lex_state = 8}, + [1106] = {.lex_state = 17}, + [1107] = {.lex_state = 17}, + [1108] = {.lex_state = 14, .external_lex_state = 2}, + [1109] = {.lex_state = 8}, + [1110] = {.lex_state = 17}, [1111] = {.lex_state = 23}, - [1112] = {.lex_state = 23}, - [1113] = {.lex_state = 23}, - [1114] = {.lex_state = 23}, + [1112] = {.lex_state = 9}, + [1113] = {.lex_state = 9}, + [1114] = {.lex_state = 9}, [1115] = {.lex_state = 23}, - [1116] = {.lex_state = 23}, - [1117] = {.lex_state = 23}, - [1118] = {.lex_state = 23}, - [1119] = {.lex_state = 23}, + [1116] = {.lex_state = 9}, + [1117] = {.lex_state = 17}, + [1118] = {.lex_state = 14, .external_lex_state = 2}, + [1119] = {.lex_state = 14, .external_lex_state = 2}, [1120] = {.lex_state = 23}, - [1121] = {.lex_state = 23}, - [1122] = {.lex_state = 23}, - [1123] = {.lex_state = 23}, + [1121] = {.lex_state = 9}, + [1122] = {.lex_state = 17}, + [1123] = {.lex_state = 12, .external_lex_state = 2}, [1124] = {.lex_state = 23}, [1125] = {.lex_state = 23}, - [1126] = {.lex_state = 23}, - [1127] = {.lex_state = 23}, + [1126] = {.lex_state = 12, .external_lex_state = 2}, + [1127] = {.lex_state = 12, .external_lex_state = 2}, [1128] = {.lex_state = 23}, [1129] = {.lex_state = 23}, [1130] = {.lex_state = 23}, @@ -11880,7 +11919,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1264] = {.lex_state = 23}, [1265] = {.lex_state = 23}, [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 23}, + [1267] = {.lex_state = 17}, [1268] = {.lex_state = 23}, [1269] = {.lex_state = 23}, [1270] = {.lex_state = 23}, @@ -11980,45 +12019,45 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1364] = {.lex_state = 23}, [1365] = {.lex_state = 23}, [1366] = {.lex_state = 23}, - [1367] = {.lex_state = 9}, - [1368] = {.lex_state = 17}, - [1369] = {.lex_state = 14, .external_lex_state = 2}, - [1370] = {.lex_state = 14, .external_lex_state = 2}, - [1371] = {.lex_state = 14, .external_lex_state = 2}, + [1367] = {.lex_state = 23}, + [1368] = {.lex_state = 23}, + [1369] = {.lex_state = 23}, + [1370] = {.lex_state = 23}, + [1371] = {.lex_state = 23}, [1372] = {.lex_state = 23}, - [1373] = {.lex_state = 14, .external_lex_state = 2}, - [1374] = {.lex_state = 9}, - [1375] = {.lex_state = 17}, - [1376] = {.lex_state = 9}, - [1377] = {.lex_state = 9}, + [1373] = {.lex_state = 23}, + [1374] = {.lex_state = 23}, + [1375] = {.lex_state = 23}, + [1376] = {.lex_state = 23}, + [1377] = {.lex_state = 23}, [1378] = {.lex_state = 23}, - [1379] = {.lex_state = 9}, - [1380] = {.lex_state = 17}, - [1381] = {.lex_state = 14, .external_lex_state = 2}, - [1382] = {.lex_state = 14, .external_lex_state = 2}, - [1383] = {.lex_state = 17}, + [1379] = {.lex_state = 23}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 23}, + [1383] = {.lex_state = 23}, [1384] = {.lex_state = 23}, - [1385] = {.lex_state = 9}, - [1386] = {.lex_state = 17}, - [1387] = {.lex_state = 12, .external_lex_state = 2}, - [1388] = {.lex_state = 23}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 23}, + [1387] = {.lex_state = 17}, + [1388] = {.lex_state = 14, .external_lex_state = 2}, [1389] = {.lex_state = 23}, - [1390] = {.lex_state = 9}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 12, .external_lex_state = 2}, - [1393] = {.lex_state = 23}, - [1394] = {.lex_state = 20}, - [1395] = {.lex_state = 20}, - [1396] = {.lex_state = 20}, - [1397] = {.lex_state = 17}, - [1398] = {.lex_state = 20}, - [1399] = {.lex_state = 9}, - [1400] = {.lex_state = 9}, - [1401] = {.lex_state = 9}, - [1402] = {.lex_state = 9}, + [1390] = {.lex_state = 14, .external_lex_state = 2}, + [1391] = {.lex_state = 14, .external_lex_state = 2}, + [1392] = {.lex_state = 14, .external_lex_state = 2}, + [1393] = {.lex_state = 17}, + [1394] = {.lex_state = 17}, + [1395] = {.lex_state = 9}, + [1396] = {.lex_state = 9}, + [1397] = {.lex_state = 23}, + [1398] = {.lex_state = 9}, + [1399] = {.lex_state = 17}, + [1400] = {.lex_state = 8}, + [1401] = {.lex_state = 20}, + [1402] = {.lex_state = 20}, [1403] = {.lex_state = 20}, [1404] = {.lex_state = 20}, - [1405] = {.lex_state = 9}, + [1405] = {.lex_state = 21}, [1406] = {.lex_state = 9}, [1407] = {.lex_state = 9}, [1408] = {.lex_state = 20}, @@ -12026,32 +12065,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1410] = {.lex_state = 9}, [1411] = {.lex_state = 9}, [1412] = {.lex_state = 9}, - [1413] = {.lex_state = 9}, + [1413] = {.lex_state = 20}, [1414] = {.lex_state = 9}, [1415] = {.lex_state = 20}, [1416] = {.lex_state = 9}, - [1417] = {.lex_state = 20}, + [1417] = {.lex_state = 9}, [1418] = {.lex_state = 9}, [1419] = {.lex_state = 9}, [1420] = {.lex_state = 9}, [1421] = {.lex_state = 9}, [1422] = {.lex_state = 9}, - [1423] = {.lex_state = 21}, + [1423] = {.lex_state = 9}, [1424] = {.lex_state = 9}, - [1425] = {.lex_state = 9}, + [1425] = {.lex_state = 21}, [1426] = {.lex_state = 20}, [1427] = {.lex_state = 9}, [1428] = {.lex_state = 9}, - [1429] = {.lex_state = 8}, - [1430] = {.lex_state = 9}, + [1429] = {.lex_state = 20}, + [1430] = {.lex_state = 20}, [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 20}, - [1433] = {.lex_state = 21}, - [1434] = {.lex_state = 20}, + [1432] = {.lex_state = 9}, + [1433] = {.lex_state = 20}, + [1434] = {.lex_state = 9}, [1435] = {.lex_state = 9}, [1436] = {.lex_state = 9}, [1437] = {.lex_state = 9}, - [1438] = {.lex_state = 9}, + [1438] = {.lex_state = 20}, [1439] = {.lex_state = 9}, [1440] = {.lex_state = 9}, [1441] = {.lex_state = 9}, @@ -12072,7 +12111,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1456] = {.lex_state = 9}, [1457] = {.lex_state = 9}, [1458] = {.lex_state = 9}, - [1459] = {.lex_state = 10}, + [1459] = {.lex_state = 9}, [1460] = {.lex_state = 9}, [1461] = {.lex_state = 9}, [1462] = {.lex_state = 9}, @@ -12144,7 +12183,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1528] = {.lex_state = 9}, [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 9}, + [1531] = {.lex_state = 10}, [1532] = {.lex_state = 9}, [1533] = {.lex_state = 9}, [1534] = {.lex_state = 9}, @@ -12172,35 +12211,35 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1556] = {.lex_state = 9}, [1557] = {.lex_state = 9}, [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 13, .external_lex_state = 2}, - [1560] = {.lex_state = 17}, - [1561] = {.lex_state = 13, .external_lex_state = 2}, - [1562] = {.lex_state = 13, .external_lex_state = 2}, - [1563] = {.lex_state = 17}, - [1564] = {.lex_state = 17}, + [1559] = {.lex_state = 9}, + [1560] = {.lex_state = 9}, + [1561] = {.lex_state = 9}, + [1562] = {.lex_state = 9}, + [1563] = {.lex_state = 9}, + [1564] = {.lex_state = 9}, [1565] = {.lex_state = 17}, - [1566] = {.lex_state = 9}, - [1567] = {.lex_state = 17}, - [1568] = {.lex_state = 13, .external_lex_state = 2}, - [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 13, .external_lex_state = 2}, - [1572] = {.lex_state = 9}, - [1573] = {.lex_state = 11}, - [1574] = {.lex_state = 9}, - [1575] = {.lex_state = 9}, + [1566] = {.lex_state = 17}, + [1567] = {.lex_state = 13, .external_lex_state = 2}, + [1568] = {.lex_state = 17}, + [1569] = {.lex_state = 13, .external_lex_state = 2}, + [1570] = {.lex_state = 17}, + [1571] = {.lex_state = 17}, + [1572] = {.lex_state = 13, .external_lex_state = 2}, + [1573] = {.lex_state = 13, .external_lex_state = 2}, + [1574] = {.lex_state = 13, .external_lex_state = 2}, + [1575] = {.lex_state = 13, .external_lex_state = 2}, [1576] = {.lex_state = 9}, [1577] = {.lex_state = 9}, [1578] = {.lex_state = 9}, [1579] = {.lex_state = 9}, - [1580] = {.lex_state = 9}, + [1580] = {.lex_state = 11}, [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, [1583] = {.lex_state = 9}, [1584] = {.lex_state = 9}, [1585] = {.lex_state = 9}, [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 11}, + [1587] = {.lex_state = 9}, [1588] = {.lex_state = 9}, [1589] = {.lex_state = 9}, [1590] = {.lex_state = 9}, @@ -12209,401 +12248,401 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1593] = {.lex_state = 9}, [1594] = {.lex_state = 9}, [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 11}, - [1597] = {.lex_state = 9}, - [1598] = {.lex_state = 11}, + [1596] = {.lex_state = 9}, + [1597] = {.lex_state = 11}, + [1598] = {.lex_state = 9}, [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 9}, - [1601] = {.lex_state = 10}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 17}, - [1604] = {.lex_state = 11}, + [1600] = {.lex_state = 11}, + [1601] = {.lex_state = 9}, + [1602] = {.lex_state = 11}, + [1603] = {.lex_state = 9}, + [1604] = {.lex_state = 10}, [1605] = {.lex_state = 9}, - [1606] = {.lex_state = 17}, - [1607] = {.lex_state = 10}, - [1608] = {.lex_state = 9}, - [1609] = {.lex_state = 11}, + [1606] = {.lex_state = 10}, + [1607] = {.lex_state = 9}, + [1608] = {.lex_state = 11}, + [1609] = {.lex_state = 9}, [1610] = {.lex_state = 11}, - [1611] = {.lex_state = 10}, - [1612] = {.lex_state = 11}, - [1613] = {.lex_state = 9}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 11}, - [1616] = {.lex_state = 9}, - [1617] = {.lex_state = 9}, - [1618] = {.lex_state = 17}, + [1611] = {.lex_state = 11}, + [1612] = {.lex_state = 9}, + [1613] = {.lex_state = 11}, + [1614] = {.lex_state = 10}, + [1615] = {.lex_state = 9}, + [1616] = {.lex_state = 17}, + [1617] = {.lex_state = 10}, + [1618] = {.lex_state = 10}, [1619] = {.lex_state = 11}, [1620] = {.lex_state = 9}, [1621] = {.lex_state = 11}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 10}, + [1622] = {.lex_state = 17}, + [1623] = {.lex_state = 11}, [1624] = {.lex_state = 17}, - [1625] = {.lex_state = 11}, - [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 9}, - [1628] = {.lex_state = 10}, + [1625] = {.lex_state = 9}, + [1626] = {.lex_state = 11}, + [1627] = {.lex_state = 10}, + [1628] = {.lex_state = 9}, [1629] = {.lex_state = 9}, - [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 10}, + [1630] = {.lex_state = 17}, + [1631] = {.lex_state = 9}, [1632] = {.lex_state = 9}, [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 10}, + [1634] = {.lex_state = 9}, [1635] = {.lex_state = 10}, - [1636] = {.lex_state = 9}, + [1636] = {.lex_state = 10}, [1637] = {.lex_state = 9}, [1638] = {.lex_state = 9}, - [1639] = {.lex_state = 9}, + [1639] = {.lex_state = 10}, [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 9}, + [1641] = {.lex_state = 10}, [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 9}, + [1643] = {.lex_state = 10}, [1644] = {.lex_state = 10}, [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 9}, + [1646] = {.lex_state = 10}, [1647] = {.lex_state = 10}, [1648] = {.lex_state = 10}, - [1649] = {.lex_state = 9}, - [1650] = {.lex_state = 10}, - [1651] = {.lex_state = 17}, - [1652] = {.lex_state = 10}, + [1649] = {.lex_state = 10}, + [1650] = {.lex_state = 9}, + [1651] = {.lex_state = 10}, + [1652] = {.lex_state = 17}, [1653] = {.lex_state = 9}, - [1654] = {.lex_state = 10}, + [1654] = {.lex_state = 9}, [1655] = {.lex_state = 9}, [1656] = {.lex_state = 9}, [1657] = {.lex_state = 9}, [1658] = {.lex_state = 9}, - [1659] = {.lex_state = 22}, - [1660] = {.lex_state = 10}, + [1659] = {.lex_state = 9}, + [1660] = {.lex_state = 9}, [1661] = {.lex_state = 9}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 22}, - [1664] = {.lex_state = 22}, - [1665] = {.lex_state = 9}, + [1662] = {.lex_state = 9}, + [1663] = {.lex_state = 9}, + [1664] = {.lex_state = 9}, + [1665] = {.lex_state = 17}, [1666] = {.lex_state = 10}, - [1667] = {.lex_state = 9}, + [1667] = {.lex_state = 10}, [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 9}, - [1670] = {.lex_state = 9}, + [1669] = {.lex_state = 10}, + [1670] = {.lex_state = 10}, [1671] = {.lex_state = 10}, [1672] = {.lex_state = 10}, - [1673] = {.lex_state = 10}, + [1673] = {.lex_state = 22}, [1674] = {.lex_state = 10}, [1675] = {.lex_state = 10}, - [1676] = {.lex_state = 9}, - [1677] = {.lex_state = 10}, - [1678] = {.lex_state = 22}, - [1679] = {.lex_state = 10}, - [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 22}, - [1682] = {.lex_state = 22}, - [1683] = {.lex_state = 9}, + [1676] = {.lex_state = 22}, + [1677] = {.lex_state = 22}, + [1678] = {.lex_state = 10}, + [1679] = {.lex_state = 9}, + [1680] = {.lex_state = 10}, + [1681] = {.lex_state = 9}, + [1682] = {.lex_state = 11}, + [1683] = {.lex_state = 22}, [1684] = {.lex_state = 22}, [1685] = {.lex_state = 22}, - [1686] = {.lex_state = 9}, - [1687] = {.lex_state = 10}, - [1688] = {.lex_state = 17}, + [1686] = {.lex_state = 22}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 22}, [1689] = {.lex_state = 10}, - [1690] = {.lex_state = 9}, + [1690] = {.lex_state = 22}, [1691] = {.lex_state = 9}, - [1692] = {.lex_state = 9}, - [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 9}, - [1695] = {.lex_state = 22}, - [1696] = {.lex_state = 17}, + [1692] = {.lex_state = 10}, + [1693] = {.lex_state = 9}, + [1694] = {.lex_state = 22}, + [1695] = {.lex_state = 9}, + [1696] = {.lex_state = 22}, [1697] = {.lex_state = 9}, [1698] = {.lex_state = 9}, [1699] = {.lex_state = 9}, [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, + [1701] = {.lex_state = 10}, [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 9}, - [1704] = {.lex_state = 9}, - [1705] = {.lex_state = 11}, + [1703] = {.lex_state = 10}, + [1704] = {.lex_state = 10}, + [1705] = {.lex_state = 10}, [1706] = {.lex_state = 9}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 10}, - [1709] = {.lex_state = 22}, + [1708] = {.lex_state = 9}, + [1709] = {.lex_state = 9}, [1710] = {.lex_state = 9}, [1711] = {.lex_state = 9}, - [1712] = {.lex_state = 22}, - [1713] = {.lex_state = 10}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 9}, [1714] = {.lex_state = 9}, - [1715] = {.lex_state = 10}, - [1716] = {.lex_state = 10}, - [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, + [1715] = {.lex_state = 17}, + [1716] = {.lex_state = 9}, + [1717] = {.lex_state = 9}, + [1718] = {.lex_state = 9}, [1719] = {.lex_state = 9}, - [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 9}, + [1720] = {.lex_state = 9}, + [1721] = {.lex_state = 10}, [1722] = {.lex_state = 10}, [1723] = {.lex_state = 9}, - [1724] = {.lex_state = 10}, - [1725] = {.lex_state = 9}, - [1726] = {.lex_state = 10}, - [1727] = {.lex_state = 10}, + [1724] = {.lex_state = 9}, + [1725] = {.lex_state = 10}, + [1726] = {.lex_state = 9}, + [1727] = {.lex_state = 22}, [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 10}, - [1730] = {.lex_state = 9}, + [1729] = {.lex_state = 9}, + [1730] = {.lex_state = 10}, [1731] = {.lex_state = 10}, - [1732] = {.lex_state = 9}, + [1732] = {.lex_state = 10}, [1733] = {.lex_state = 10}, - [1734] = {.lex_state = 9}, + [1734] = {.lex_state = 10}, [1735] = {.lex_state = 10}, - [1736] = {.lex_state = 9}, - [1737] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 9}, [1738] = {.lex_state = 10}, - [1739] = {.lex_state = 10}, + [1739] = {.lex_state = 9}, [1740] = {.lex_state = 10}, [1741] = {.lex_state = 10}, [1742] = {.lex_state = 10}, - [1743] = {.lex_state = 10}, + [1743] = {.lex_state = 9}, [1744] = {.lex_state = 10}, [1745] = {.lex_state = 10}, [1746] = {.lex_state = 10}, - [1747] = {.lex_state = 10}, - [1748] = {.lex_state = 10}, + [1747] = {.lex_state = 9}, + [1748] = {.lex_state = 9}, [1749] = {.lex_state = 10}, [1750] = {.lex_state = 10}, [1751] = {.lex_state = 10}, [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 9}, - [1755] = {.lex_state = 10}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 10}, + [1755] = {.lex_state = 17}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, [1758] = {.lex_state = 10}, [1759] = {.lex_state = 10}, [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, - [1762] = {.lex_state = 10}, - [1763] = {.lex_state = 10}, + [1762] = {.lex_state = 9}, + [1763] = {.lex_state = 9}, [1764] = {.lex_state = 9}, [1765] = {.lex_state = 10}, - [1766] = {.lex_state = 10}, + [1766] = {.lex_state = 9}, [1767] = {.lex_state = 10}, [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 9}, + [1769] = {.lex_state = 10}, [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, [1772] = {.lex_state = 10}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, - [1775] = {.lex_state = 10}, - [1776] = {.lex_state = 10}, - [1777] = {.lex_state = 10}, - [1778] = {.lex_state = 10}, - [1779] = {.lex_state = 10}, - [1780] = {.lex_state = 10}, - [1781] = {.lex_state = 10}, - [1782] = {.lex_state = 10}, - [1783] = {.lex_state = 10}, - [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 10}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 9}, + [1777] = {.lex_state = 9}, + [1778] = {.lex_state = 9}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 9}, + [1781] = {.lex_state = 9}, + [1782] = {.lex_state = 9}, + [1783] = {.lex_state = 9}, + [1784] = {.lex_state = 9}, + [1785] = {.lex_state = 9}, [1786] = {.lex_state = 9}, [1787] = {.lex_state = 9}, [1788] = {.lex_state = 9}, - [1789] = {.lex_state = 9}, + [1789] = {.lex_state = 10}, [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 17}, - [1792] = {.lex_state = 9}, - [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 9}, - [1796] = {.lex_state = 9}, - [1797] = {.lex_state = 9}, + [1791] = {.lex_state = 10}, + [1792] = {.lex_state = 10}, + [1793] = {.lex_state = 10}, + [1794] = {.lex_state = 9}, + [1795] = {.lex_state = 10}, + [1796] = {.lex_state = 10}, + [1797] = {.lex_state = 10}, [1798] = {.lex_state = 10}, - [1799] = {.lex_state = 9}, - [1800] = {.lex_state = 9}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, + [1799] = {.lex_state = 10}, + [1800] = {.lex_state = 10}, + [1801] = {.lex_state = 10}, + [1802] = {.lex_state = 10}, [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 10}, - [1805] = {.lex_state = 9}, + [1804] = {.lex_state = 9}, + [1805] = {.lex_state = 10}, [1806] = {.lex_state = 10}, [1807] = {.lex_state = 10}, [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 9}, + [1809] = {.lex_state = 10}, [1810] = {.lex_state = 10}, - [1811] = {.lex_state = 9}, + [1811] = {.lex_state = 10}, [1812] = {.lex_state = 10}, - [1813] = {.lex_state = 9}, + [1813] = {.lex_state = 10}, [1814] = {.lex_state = 10}, - [1815] = {.lex_state = 9}, - [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 10}, - [1818] = {.lex_state = 10}, + [1815] = {.lex_state = 10}, + [1816] = {.lex_state = 10}, + [1817] = {.lex_state = 9}, + [1818] = {.lex_state = 9}, [1819] = {.lex_state = 9}, [1820] = {.lex_state = 9}, - [1821] = {.lex_state = 9}, + [1821] = {.lex_state = 10}, [1822] = {.lex_state = 10}, [1823] = {.lex_state = 10}, - [1824] = {.lex_state = 9}, + [1824] = {.lex_state = 10}, [1825] = {.lex_state = 10}, - [1826] = {.lex_state = 9}, - [1827] = {.lex_state = 9}, + [1826] = {.lex_state = 10}, + [1827] = {.lex_state = 10}, [1828] = {.lex_state = 9}, - [1829] = {.lex_state = 9}, - [1830] = {.lex_state = 9}, + [1829] = {.lex_state = 10}, + [1830] = {.lex_state = 10}, [1831] = {.lex_state = 9}, - [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 9}, - [1834] = {.lex_state = 9}, - [1835] = {.lex_state = 9}, - [1836] = {.lex_state = 9}, - [1837] = {.lex_state = 9}, + [1832] = {.lex_state = 10}, + [1833] = {.lex_state = 10}, + [1834] = {.lex_state = 10}, + [1835] = {.lex_state = 10}, + [1836] = {.lex_state = 10}, + [1837] = {.lex_state = 10}, [1838] = {.lex_state = 10}, [1839] = {.lex_state = 10}, [1840] = {.lex_state = 10}, - [1841] = {.lex_state = 9}, - [1842] = {.lex_state = 9}, - [1843] = {.lex_state = 9}, - [1844] = {.lex_state = 9}, - [1845] = {.lex_state = 9}, + [1841] = {.lex_state = 10}, + [1842] = {.lex_state = 10}, + [1843] = {.lex_state = 10}, + [1844] = {.lex_state = 10}, + [1845] = {.lex_state = 10}, [1846] = {.lex_state = 10}, - [1847] = {.lex_state = 9}, - [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 9}, + [1847] = {.lex_state = 10}, + [1848] = {.lex_state = 10}, + [1849] = {.lex_state = 10}, + [1850] = {.lex_state = 10}, [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 9}, + [1852] = {.lex_state = 10}, + [1853] = {.lex_state = 10}, [1854] = {.lex_state = 9}, - [1855] = {.lex_state = 9}, - [1856] = {.lex_state = 9}, - [1857] = {.lex_state = 9}, + [1855] = {.lex_state = 10}, + [1856] = {.lex_state = 10}, + [1857] = {.lex_state = 10}, [1858] = {.lex_state = 10}, [1859] = {.lex_state = 10}, - [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 10}, - [1862] = {.lex_state = 9}, + [1860] = {.lex_state = 10}, + [1861] = {.lex_state = 9}, + [1862] = {.lex_state = 10}, [1863] = {.lex_state = 10}, - [1864] = {.lex_state = 9}, - [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, + [1864] = {.lex_state = 10}, + [1865] = {.lex_state = 10}, + [1866] = {.lex_state = 10}, [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, - [1869] = {.lex_state = 9}, + [1868] = {.lex_state = 10}, + [1869] = {.lex_state = 10}, [1870] = {.lex_state = 10}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 9}, + [1871] = {.lex_state = 10}, + [1872] = {.lex_state = 10}, [1873] = {.lex_state = 10}, [1874] = {.lex_state = 10}, - [1875] = {.lex_state = 9}, - [1876] = {.lex_state = 9}, - [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 9}, + [1875] = {.lex_state = 10}, + [1876] = {.lex_state = 10}, + [1877] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 10}, [1880] = {.lex_state = 10}, - [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 9}, - [1883] = {.lex_state = 9}, - [1884] = {.lex_state = 17}, - [1885] = {.lex_state = 10}, - [1886] = {.lex_state = 10}, - [1887] = {.lex_state = 9}, - [1888] = {.lex_state = 10}, - [1889] = {.lex_state = 10}, + [1881] = {.lex_state = 10}, + [1882] = {.lex_state = 10}, + [1883] = {.lex_state = 10}, + [1884] = {.lex_state = 9}, + [1885] = {.lex_state = 9}, + [1886] = {.lex_state = 9}, + [1887] = {.lex_state = 10}, + [1888] = {.lex_state = 9}, + [1889] = {.lex_state = 9}, [1890] = {.lex_state = 10}, - [1891] = {.lex_state = 17}, + [1891] = {.lex_state = 10}, [1892] = {.lex_state = 10}, - [1893] = {.lex_state = 10}, - [1894] = {.lex_state = 10}, - [1895] = {.lex_state = 10}, - [1896] = {.lex_state = 10}, - [1897] = {.lex_state = 10}, - [1898] = {.lex_state = 10}, - [1899] = {.lex_state = 10}, - [1900] = {.lex_state = 10}, - [1901] = {.lex_state = 10}, + [1893] = {.lex_state = 9}, + [1894] = {.lex_state = 9}, + [1895] = {.lex_state = 9}, + [1896] = {.lex_state = 9}, + [1897] = {.lex_state = 9}, + [1898] = {.lex_state = 9}, + [1899] = {.lex_state = 9}, + [1900] = {.lex_state = 9}, + [1901] = {.lex_state = 9}, [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 9}, - [1906] = {.lex_state = 10}, - [1907] = {.lex_state = 10}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, - [1910] = {.lex_state = 10}, - [1911] = {.lex_state = 10}, - [1912] = {.lex_state = 10}, - [1913] = {.lex_state = 17}, - [1914] = {.lex_state = 10}, - [1915] = {.lex_state = 9}, + [1903] = {.lex_state = 9}, + [1904] = {.lex_state = 9}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 9}, + [1907] = {.lex_state = 9}, + [1908] = {.lex_state = 9}, + [1909] = {.lex_state = 9}, + [1910] = {.lex_state = 9}, + [1911] = {.lex_state = 9}, + [1912] = {.lex_state = 9}, + [1913] = {.lex_state = 9}, + [1914] = {.lex_state = 17}, + [1915] = {.lex_state = 10}, [1916] = {.lex_state = 9}, - [1917] = {.lex_state = 10}, - [1918] = {.lex_state = 10}, - [1919] = {.lex_state = 10}, - [1920] = {.lex_state = 10}, - [1921] = {.lex_state = 10}, - [1922] = {.lex_state = 10}, + [1917] = {.lex_state = 9}, + [1918] = {.lex_state = 9}, + [1919] = {.lex_state = 9}, + [1920] = {.lex_state = 9}, + [1921] = {.lex_state = 9}, + [1922] = {.lex_state = 9}, [1923] = {.lex_state = 10}, [1924] = {.lex_state = 9}, [1925] = {.lex_state = 10}, - [1926] = {.lex_state = 10}, - [1927] = {.lex_state = 10}, - [1928] = {.lex_state = 10}, - [1929] = {.lex_state = 10}, - [1930] = {.lex_state = 10}, - [1931] = {.lex_state = 10}, - [1932] = {.lex_state = 10}, - [1933] = {.lex_state = 10}, - [1934] = {.lex_state = 10}, + [1926] = {.lex_state = 9}, + [1927] = {.lex_state = 9}, + [1928] = {.lex_state = 9}, + [1929] = {.lex_state = 9}, + [1930] = {.lex_state = 9}, + [1931] = {.lex_state = 9}, + [1932] = {.lex_state = 9}, + [1933] = {.lex_state = 9}, + [1934] = {.lex_state = 9}, [1935] = {.lex_state = 9}, - [1936] = {.lex_state = 10}, - [1937] = {.lex_state = 10}, - [1938] = {.lex_state = 10}, - [1939] = {.lex_state = 10}, - [1940] = {.lex_state = 10}, + [1936] = {.lex_state = 9}, + [1937] = {.lex_state = 9}, + [1938] = {.lex_state = 9}, + [1939] = {.lex_state = 9}, + [1940] = {.lex_state = 9}, [1941] = {.lex_state = 10}, - [1942] = {.lex_state = 10}, - [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 17}, - [1945] = {.lex_state = 10}, - [1946] = {.lex_state = 9}, + [1942] = {.lex_state = 17}, + [1943] = {.lex_state = 10}, + [1944] = {.lex_state = 10}, + [1945] = {.lex_state = 17}, + [1946] = {.lex_state = 17}, [1947] = {.lex_state = 9}, - [1948] = {.lex_state = 17}, - [1949] = {.lex_state = 9}, - [1950] = {.lex_state = 9}, + [1948] = {.lex_state = 10}, + [1949] = {.lex_state = 10}, + [1950] = {.lex_state = 10}, [1951] = {.lex_state = 9}, - [1952] = {.lex_state = 9}, + [1952] = {.lex_state = 10}, [1953] = {.lex_state = 9}, - [1954] = {.lex_state = 9}, + [1954] = {.lex_state = 10}, [1955] = {.lex_state = 9}, - [1956] = {.lex_state = 9}, - [1957] = {.lex_state = 9}, - [1958] = {.lex_state = 9}, - [1959] = {.lex_state = 9}, + [1956] = {.lex_state = 17}, + [1957] = {.lex_state = 10}, + [1958] = {.lex_state = 10}, + [1959] = {.lex_state = 17}, [1960] = {.lex_state = 9}, [1961] = {.lex_state = 9}, [1962] = {.lex_state = 9}, [1963] = {.lex_state = 9}, - [1964] = {.lex_state = 10}, + [1964] = {.lex_state = 17}, [1965] = {.lex_state = 9}, [1966] = {.lex_state = 9}, [1967] = {.lex_state = 9}, [1968] = {.lex_state = 9}, [1969] = {.lex_state = 9}, - [1970] = {.lex_state = 17}, + [1970] = {.lex_state = 9}, [1971] = {.lex_state = 9}, [1972] = {.lex_state = 9}, [1973] = {.lex_state = 9}, [1974] = {.lex_state = 9}, - [1975] = {.lex_state = 17}, + [1975] = {.lex_state = 9}, [1976] = {.lex_state = 9}, - [1977] = {.lex_state = 10}, - [1978] = {.lex_state = 17}, + [1977] = {.lex_state = 9}, + [1978] = {.lex_state = 10}, [1979] = {.lex_state = 9}, - [1980] = {.lex_state = 10}, + [1980] = {.lex_state = 9}, [1981] = {.lex_state = 9}, [1982] = {.lex_state = 9}, - [1983] = {.lex_state = 17}, + [1983] = {.lex_state = 9}, [1984] = {.lex_state = 17}, - [1985] = {.lex_state = 17}, - [1986] = {.lex_state = 17}, - [1987] = {.lex_state = 17}, - [1988] = {.lex_state = 17}, - [1989] = {.lex_state = 17}, - [1990] = {.lex_state = 17}, + [1985] = {.lex_state = 9}, + [1986] = {.lex_state = 9}, + [1987] = {.lex_state = 9}, + [1988] = {.lex_state = 9}, + [1989] = {.lex_state = 9}, + [1990] = {.lex_state = 9}, [1991] = {.lex_state = 17}, [1992] = {.lex_state = 17}, [1993] = {.lex_state = 17}, @@ -12614,336 +12653,336 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1998] = {.lex_state = 17}, [1999] = {.lex_state = 17}, [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 31}, - [2002] = {.lex_state = 31}, - [2003] = {.lex_state = 18}, - [2004] = {.lex_state = 18}, - [2005] = {.lex_state = 18}, - [2006] = {.lex_state = 18}, - [2007] = {.lex_state = 18}, - [2008] = {.lex_state = 18}, - [2009] = {.lex_state = 18}, - [2010] = {.lex_state = 17}, - [2011] = {.lex_state = 17}, - [2012] = {.lex_state = 17}, - [2013] = {.lex_state = 17}, + [2001] = {.lex_state = 17}, + [2002] = {.lex_state = 17}, + [2003] = {.lex_state = 17}, + [2004] = {.lex_state = 17}, + [2005] = {.lex_state = 17}, + [2006] = {.lex_state = 17}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 17}, + [2009] = {.lex_state = 31}, + [2010] = {.lex_state = 31}, + [2011] = {.lex_state = 18}, + [2012] = {.lex_state = 18}, + [2013] = {.lex_state = 18}, [2014] = {.lex_state = 18}, [2015] = {.lex_state = 18}, [2016] = {.lex_state = 18}, [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 18}, + [2018] = {.lex_state = 17}, [2019] = {.lex_state = 17}, [2020] = {.lex_state = 17}, - [2021] = {.lex_state = 17}, - [2022] = {.lex_state = 17}, - [2023] = {.lex_state = 13, .external_lex_state = 2}, + [2021] = {.lex_state = 18}, + [2022] = {.lex_state = 18}, + [2023] = {.lex_state = 17}, [2024] = {.lex_state = 18}, - [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, - [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 18}, + [2025] = {.lex_state = 18}, + [2026] = {.lex_state = 18}, + [2027] = {.lex_state = 13, .external_lex_state = 2}, + [2028] = {.lex_state = 17}, [2029] = {.lex_state = 17}, [2030] = {.lex_state = 17}, - [2031] = {.lex_state = 31}, - [2032] = {.lex_state = 31}, - [2033] = {.lex_state = 17}, - [2034] = {.lex_state = 18}, - [2035] = {.lex_state = 17}, - [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 18}, + [2031] = {.lex_state = 17}, + [2032] = {.lex_state = 18}, + [2033] = {.lex_state = 31}, + [2034] = {.lex_state = 17}, + [2035] = {.lex_state = 18}, + [2036] = {.lex_state = 18}, + [2037] = {.lex_state = 17}, [2038] = {.lex_state = 17}, - [2039] = {.lex_state = 17}, + [2039] = {.lex_state = 31}, [2040] = {.lex_state = 31}, - [2041] = {.lex_state = 31}, - [2042] = {.lex_state = 17}, - [2043] = {.lex_state = 18}, - [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, + [2041] = {.lex_state = 17}, + [2042] = {.lex_state = 31}, + [2043] = {.lex_state = 31}, + [2044] = {.lex_state = 17}, + [2045] = {.lex_state = 17}, [2046] = {.lex_state = 31}, [2047] = {.lex_state = 17}, - [2048] = {.lex_state = 31}, + [2048] = {.lex_state = 18}, [2049] = {.lex_state = 31}, - [2050] = {.lex_state = 18}, - [2051] = {.lex_state = 17}, - [2052] = {.lex_state = 31}, - [2053] = {.lex_state = 17}, - [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 18}, + [2050] = {.lex_state = 17}, + [2051] = {.lex_state = 18}, + [2052] = {.lex_state = 17}, + [2053] = {.lex_state = 31}, + [2054] = {.lex_state = 17}, + [2055] = {.lex_state = 17}, [2056] = {.lex_state = 17}, - [2057] = {.lex_state = 17}, - [2058] = {.lex_state = 17}, - [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 17}, - [2061] = {.lex_state = 17}, - [2062] = {.lex_state = 17}, - [2063] = {.lex_state = 18}, - [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 17}, + [2057] = {.lex_state = 31}, + [2058] = {.lex_state = 18}, + [2059] = {.lex_state = 17}, + [2060] = {.lex_state = 18}, + [2061] = {.lex_state = 31}, + [2062] = {.lex_state = 31}, + [2063] = {.lex_state = 31}, + [2064] = {.lex_state = 17}, + [2065] = {.lex_state = 31}, [2066] = {.lex_state = 31}, [2067] = {.lex_state = 31}, [2068] = {.lex_state = 31}, [2069] = {.lex_state = 31}, [2070] = {.lex_state = 31}, [2071] = {.lex_state = 31}, - [2072] = {.lex_state = 31}, + [2072] = {.lex_state = 17}, [2073] = {.lex_state = 31}, [2074] = {.lex_state = 31}, [2075] = {.lex_state = 31}, [2076] = {.lex_state = 31}, [2077] = {.lex_state = 31}, - [2078] = {.lex_state = 31}, + [2078] = {.lex_state = 18}, [2079] = {.lex_state = 31}, - [2080] = {.lex_state = 31}, + [2080] = {.lex_state = 17}, [2081] = {.lex_state = 31}, - [2082] = {.lex_state = 31}, + [2082] = {.lex_state = 17}, [2083] = {.lex_state = 31}, [2084] = {.lex_state = 31}, [2085] = {.lex_state = 31}, [2086] = {.lex_state = 31}, [2087] = {.lex_state = 31}, [2088] = {.lex_state = 31}, - [2089] = {.lex_state = 31}, + [2089] = {.lex_state = 17}, [2090] = {.lex_state = 31}, [2091] = {.lex_state = 31}, [2092] = {.lex_state = 31}, [2093] = {.lex_state = 31}, [2094] = {.lex_state = 31}, - [2095] = {.lex_state = 17}, + [2095] = {.lex_state = 31}, [2096] = {.lex_state = 31}, - [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 17}, - [2099] = {.lex_state = 17}, + [2097] = {.lex_state = 31}, + [2098] = {.lex_state = 31}, + [2099] = {.lex_state = 31}, [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, + [2101] = {.lex_state = 31}, + [2102] = {.lex_state = 31}, + [2103] = {.lex_state = 31}, [2104] = {.lex_state = 31}, [2105] = {.lex_state = 17}, [2106] = {.lex_state = 31}, [2107] = {.lex_state = 31}, - [2108] = {.lex_state = 18}, + [2108] = {.lex_state = 17}, [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, - [2111] = {.lex_state = 18}, - [2112] = {.lex_state = 18}, - [2113] = {.lex_state = 18}, - [2114] = {.lex_state = 18}, - [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 31}, + [2110] = {.lex_state = 17}, + [2111] = {.lex_state = 17}, + [2112] = {.lex_state = 17}, + [2113] = {.lex_state = 17}, + [2114] = {.lex_state = 17}, + [2115] = {.lex_state = 31}, + [2116] = {.lex_state = 18}, [2117] = {.lex_state = 18}, - [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 18}, + [2118] = {.lex_state = 18}, + [2119] = {.lex_state = 31}, [2120] = {.lex_state = 18}, [2121] = {.lex_state = 18}, [2122] = {.lex_state = 18}, [2123] = {.lex_state = 19}, - [2124] = {.lex_state = 18}, + [2124] = {.lex_state = 17}, [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, - [2129] = {.lex_state = 17}, - [2130] = {.lex_state = 17}, + [2126] = {.lex_state = 18}, + [2127] = {.lex_state = 18}, + [2128] = {.lex_state = 18}, + [2129] = {.lex_state = 18}, + [2130] = {.lex_state = 18}, [2131] = {.lex_state = 17}, - [2132] = {.lex_state = 17}, - [2133] = {.lex_state = 17}, - [2134] = {.lex_state = 27}, - [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 31}, - [2137] = {.lex_state = 18}, + [2132] = {.lex_state = 31}, + [2133] = {.lex_state = 18}, + [2134] = {.lex_state = 17}, + [2135] = {.lex_state = 17}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 17}, [2138] = {.lex_state = 17}, [2139] = {.lex_state = 17}, [2140] = {.lex_state = 17}, - [2141] = {.lex_state = 18}, - [2142] = {.lex_state = 17}, - [2143] = {.lex_state = 19}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 18}, + [2143] = {.lex_state = 17}, [2144] = {.lex_state = 17}, - [2145] = {.lex_state = 17}, + [2145] = {.lex_state = 19}, [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 17}, - [2148] = {.lex_state = 17}, + [2147] = {.lex_state = 19}, + [2148] = {.lex_state = 19}, [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 19}, - [2151] = {.lex_state = 19}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 18}, + [2150] = {.lex_state = 31}, + [2151] = {.lex_state = 17}, + [2152] = {.lex_state = 27}, + [2153] = {.lex_state = 17}, [2154] = {.lex_state = 17}, [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 18}, - [2157] = {.lex_state = 31}, - [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 18}, - [2160] = {.lex_state = 31}, - [2161] = {.lex_state = 17}, + [2156] = {.lex_state = 27}, + [2157] = {.lex_state = 18}, + [2158] = {.lex_state = 24}, + [2159] = {.lex_state = 17}, + [2160] = {.lex_state = 17}, + [2161] = {.lex_state = 31}, [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 17}, + [2163] = {.lex_state = 31}, [2164] = {.lex_state = 17}, - [2165] = {.lex_state = 24}, - [2166] = {.lex_state = 17}, - [2167] = {.lex_state = 24}, - [2168] = {.lex_state = 17}, + [2165] = {.lex_state = 18}, + [2166] = {.lex_state = 18}, + [2167] = {.lex_state = 17}, + [2168] = {.lex_state = 31}, [2169] = {.lex_state = 18}, [2170] = {.lex_state = 18}, - [2171] = {.lex_state = 18}, - [2172] = {.lex_state = 18}, - [2173] = {.lex_state = 17}, - [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 18}, - [2176] = {.lex_state = 17}, - [2177] = {.lex_state = 27}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 18}, - [2180] = {.lex_state = 31}, - [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, - [2183] = {.lex_state = 27}, - [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, - [2186] = {.lex_state = 27}, - [2187] = {.lex_state = 19}, - [2188] = {.lex_state = 31}, - [2189] = {.lex_state = 31}, + [2171] = {.lex_state = 17}, + [2172] = {.lex_state = 17}, + [2173] = {.lex_state = 18}, + [2174] = {.lex_state = 31}, + [2175] = {.lex_state = 17}, + [2176] = {.lex_state = 18}, + [2177] = {.lex_state = 17}, + [2178] = {.lex_state = 17}, + [2179] = {.lex_state = 24}, + [2180] = {.lex_state = 18}, + [2181] = {.lex_state = 18}, + [2182] = {.lex_state = 18}, + [2183] = {.lex_state = 17}, + [2184] = {.lex_state = 17}, + [2185] = {.lex_state = 18}, + [2186] = {.lex_state = 17}, + [2187] = {.lex_state = 17}, + [2188] = {.lex_state = 17}, + [2189] = {.lex_state = 17}, [2190] = {.lex_state = 31}, - [2191] = {.lex_state = 31}, + [2191] = {.lex_state = 18}, [2192] = {.lex_state = 31}, [2193] = {.lex_state = 31}, [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 18}, - [2196] = {.lex_state = 18}, + [2195] = {.lex_state = 19}, + [2196] = {.lex_state = 31}, [2197] = {.lex_state = 31}, [2198] = {.lex_state = 31}, - [2199] = {.lex_state = 18}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 18}, + [2199] = {.lex_state = 31}, + [2200] = {.lex_state = 17}, + [2201] = {.lex_state = 31}, [2202] = {.lex_state = 31}, [2203] = {.lex_state = 31}, [2204] = {.lex_state = 31}, [2205] = {.lex_state = 31}, [2206] = {.lex_state = 31}, - [2207] = {.lex_state = 31}, - [2208] = {.lex_state = 27}, + [2207] = {.lex_state = 18}, + [2208] = {.lex_state = 31}, [2209] = {.lex_state = 31}, [2210] = {.lex_state = 31}, - [2211] = {.lex_state = 18}, - [2212] = {.lex_state = 31}, - [2213] = {.lex_state = 17}, - [2214] = {.lex_state = 31}, + [2211] = {.lex_state = 31}, + [2212] = {.lex_state = 27}, + [2213] = {.lex_state = 31}, + [2214] = {.lex_state = 17}, [2215] = {.lex_state = 31}, - [2216] = {.lex_state = 18}, - [2217] = {.lex_state = 31}, - [2218] = {.lex_state = 31}, - [2219] = {.lex_state = 18}, + [2216] = {.lex_state = 31}, + [2217] = {.lex_state = 18}, + [2218] = {.lex_state = 18}, + [2219] = {.lex_state = 31}, [2220] = {.lex_state = 31}, [2221] = {.lex_state = 31}, - [2222] = {.lex_state = 31}, - [2223] = {.lex_state = 17}, - [2224] = {.lex_state = 17}, - [2225] = {.lex_state = 31}, - [2226] = {.lex_state = 31}, + [2222] = {.lex_state = 12}, + [2223] = {.lex_state = 31}, + [2224] = {.lex_state = 31}, + [2225] = {.lex_state = 18}, + [2226] = {.lex_state = 18}, [2227] = {.lex_state = 31}, [2228] = {.lex_state = 31}, - [2229] = {.lex_state = 17}, + [2229] = {.lex_state = 31}, [2230] = {.lex_state = 31}, [2231] = {.lex_state = 31}, - [2232] = {.lex_state = 27}, - [2233] = {.lex_state = 17}, + [2232] = {.lex_state = 31}, + [2233] = {.lex_state = 27}, [2234] = {.lex_state = 31}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 12}, - [2237] = {.lex_state = 19}, + [2235] = {.lex_state = 27}, + [2236] = {.lex_state = 31}, + [2237] = {.lex_state = 31}, [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 8}, - [2240] = {.lex_state = 12}, - [2241] = {.lex_state = 17}, + [2239] = {.lex_state = 27}, + [2240] = {.lex_state = 31}, + [2241] = {.lex_state = 18}, [2242] = {.lex_state = 31}, - [2243] = {.lex_state = 8}, - [2244] = {.lex_state = 72}, - [2245] = {.lex_state = 17}, - [2246] = {.lex_state = 17}, - [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 19}, - [2249] = {.lex_state = 17}, + [2243] = {.lex_state = 31}, + [2244] = {.lex_state = 31}, + [2245] = {.lex_state = 19}, + [2246] = {.lex_state = 72}, + [2247] = {.lex_state = 31}, + [2248] = {.lex_state = 31}, + [2249] = {.lex_state = 27}, [2250] = {.lex_state = 17}, [2251] = {.lex_state = 17}, [2252] = {.lex_state = 31}, - [2253] = {.lex_state = 24}, - [2254] = {.lex_state = 8}, - [2255] = {.lex_state = 17}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 31}, + [2255] = {.lex_state = 19}, [2256] = {.lex_state = 17}, - [2257] = {.lex_state = 31}, - [2258] = {.lex_state = 31}, + [2257] = {.lex_state = 17}, + [2258] = {.lex_state = 17}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 31}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 18}, - [2263] = {.lex_state = 31}, + [2260] = {.lex_state = 17}, + [2261] = {.lex_state = 19}, + [2262] = {.lex_state = 17}, + [2263] = {.lex_state = 17}, [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 31}, + [2265] = {.lex_state = 17}, [2266] = {.lex_state = 17}, [2267] = {.lex_state = 17}, - [2268] = {.lex_state = 31}, - [2269] = {.lex_state = 19}, + [2268] = {.lex_state = 17}, + [2269] = {.lex_state = 17}, [2270] = {.lex_state = 12}, - [2271] = {.lex_state = 19}, - [2272] = {.lex_state = 17}, + [2271] = {.lex_state = 17}, + [2272] = {.lex_state = 8}, [2273] = {.lex_state = 31}, [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 17}, - [2276] = {.lex_state = 17}, - [2277] = {.lex_state = 17}, + [2275] = {.lex_state = 31}, + [2276] = {.lex_state = 12}, + [2277] = {.lex_state = 12}, [2278] = {.lex_state = 31}, - [2279] = {.lex_state = 17}, - [2280] = {.lex_state = 19}, - [2281] = {.lex_state = 31}, + [2279] = {.lex_state = 24}, + [2280] = {.lex_state = 8}, + [2281] = {.lex_state = 19}, [2282] = {.lex_state = 17}, [2283] = {.lex_state = 12}, - [2284] = {.lex_state = 17}, - [2285] = {.lex_state = 17}, - [2286] = {.lex_state = 27}, - [2287] = {.lex_state = 24}, - [2288] = {.lex_state = 17}, - [2289] = {.lex_state = 17}, + [2284] = {.lex_state = 31}, + [2285] = {.lex_state = 19}, + [2286] = {.lex_state = 24}, + [2287] = {.lex_state = 31}, + [2288] = {.lex_state = 8}, + [2289] = {.lex_state = 18}, [2290] = {.lex_state = 17}, [2291] = {.lex_state = 17}, [2292] = {.lex_state = 17}, [2293] = {.lex_state = 17}, - [2294] = {.lex_state = 17}, - [2295] = {.lex_state = 27}, - [2296] = {.lex_state = 27}, - [2297] = {.lex_state = 24}, + [2294] = {.lex_state = 31}, + [2295] = {.lex_state = 17}, + [2296] = {.lex_state = 17}, + [2297] = {.lex_state = 17}, [2298] = {.lex_state = 17}, [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 17}, + [2300] = {.lex_state = 27}, [2301] = {.lex_state = 17}, [2302] = {.lex_state = 27}, - [2303] = {.lex_state = 27}, - [2304] = {.lex_state = 27}, + [2303] = {.lex_state = 17}, + [2304] = {.lex_state = 24}, [2305] = {.lex_state = 27}, - [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 17}, - [2308] = {.lex_state = 27}, + [2306] = {.lex_state = 17}, + [2307] = {.lex_state = 27}, + [2308] = {.lex_state = 17}, [2309] = {.lex_state = 17}, [2310] = {.lex_state = 17}, [2311] = {.lex_state = 17}, - [2312] = {.lex_state = 17}, + [2312] = {.lex_state = 27}, [2313] = {.lex_state = 17}, [2314] = {.lex_state = 17}, - [2315] = {.lex_state = 17}, + [2315] = {.lex_state = 27}, [2316] = {.lex_state = 17}, - [2317] = {.lex_state = 17}, + [2317] = {.lex_state = 27}, [2318] = {.lex_state = 17}, - [2319] = {.lex_state = 17}, + [2319] = {.lex_state = 12}, [2320] = {.lex_state = 17}, - [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 27}, - [2323] = {.lex_state = 27}, - [2324] = {.lex_state = 27}, + [2321] = {.lex_state = 27}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 17}, [2325] = {.lex_state = 17}, - [2326] = {.lex_state = 17}, - [2327] = {.lex_state = 12}, + [2326] = {.lex_state = 27}, + [2327] = {.lex_state = 17}, [2328] = {.lex_state = 17}, [2329] = {.lex_state = 17}, - [2330] = {.lex_state = 17}, + [2330] = {.lex_state = 27}, [2331] = {.lex_state = 17}, [2332] = {.lex_state = 17}, [2333] = {.lex_state = 17}, @@ -12953,598 +12992,598 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2337] = {.lex_state = 17}, [2338] = {.lex_state = 17}, [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 72}, - [2342] = {.lex_state = 19}, - [2343] = {.lex_state = 17}, + [2340] = {.lex_state = 17}, + [2341] = {.lex_state = 17}, + [2342] = {.lex_state = 17}, + [2343] = {.lex_state = 27}, [2344] = {.lex_state = 17}, - [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, - [2347] = {.lex_state = 72}, - [2348] = {.lex_state = 72}, - [2349] = {.lex_state = 72}, - [2350] = {.lex_state = 72}, + [2345] = {.lex_state = 17}, + [2346] = {.lex_state = 17}, + [2347] = {.lex_state = 17}, + [2348] = {.lex_state = 27}, + [2349] = {.lex_state = 27}, + [2350] = {.lex_state = 12}, [2351] = {.lex_state = 27}, [2352] = {.lex_state = 27}, [2353] = {.lex_state = 72}, [2354] = {.lex_state = 72}, - [2355] = {.lex_state = 17}, + [2355] = {.lex_state = 5}, [2356] = {.lex_state = 72}, - [2357] = {.lex_state = 17}, - [2358] = {.lex_state = 17}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 72}, [2359] = {.lex_state = 72}, - [2360] = {.lex_state = 72}, - [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 72}, + [2360] = {.lex_state = 31}, + [2361] = {.lex_state = 5}, + [2362] = {.lex_state = 12}, [2363] = {.lex_state = 72}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 27}, - [2366] = {.lex_state = 5}, - [2367] = {.lex_state = 12}, - [2368] = {.lex_state = 27}, - [2369] = {.lex_state = 5}, + [2364] = {.lex_state = 72}, + [2365] = {.lex_state = 17}, + [2366] = {.lex_state = 17}, + [2367] = {.lex_state = 72}, + [2368] = {.lex_state = 17}, + [2369] = {.lex_state = 72}, [2370] = {.lex_state = 72}, [2371] = {.lex_state = 72}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 72}, + [2373] = {.lex_state = 17}, [2374] = {.lex_state = 72}, [2375] = {.lex_state = 72}, [2376] = {.lex_state = 72}, [2377] = {.lex_state = 72}, [2378] = {.lex_state = 72}, [2379] = {.lex_state = 72}, - [2380] = {.lex_state = 72}, + [2380] = {.lex_state = 17}, [2381] = {.lex_state = 72}, - [2382] = {.lex_state = 72}, - [2383] = {.lex_state = 72}, - [2384] = {.lex_state = 72}, - [2385] = {.lex_state = 5}, - [2386] = {.lex_state = 12}, - [2387] = {.lex_state = 72}, - [2388] = {.lex_state = 31}, - [2389] = {.lex_state = 31}, - [2390] = {.lex_state = 72}, - [2391] = {.lex_state = 72}, - [2392] = {.lex_state = 27}, - [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 17}, + [2382] = {.lex_state = 5}, + [2383] = {.lex_state = 17}, + [2384] = {.lex_state = 17}, + [2385] = {.lex_state = 27}, + [2386] = {.lex_state = 27}, + [2387] = {.lex_state = 17}, + [2388] = {.lex_state = 27}, + [2389] = {.lex_state = 72}, + [2390] = {.lex_state = 12}, + [2391] = {.lex_state = 17}, + [2392] = {.lex_state = 72}, + [2393] = {.lex_state = 17}, + [2394] = {.lex_state = 72}, [2395] = {.lex_state = 17}, - [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 12}, - [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 169}, + [2396] = {.lex_state = 19}, + [2397] = {.lex_state = 72}, + [2398] = {.lex_state = 27}, + [2399] = {.lex_state = 72}, [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 72}, - [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 17}, - [2404] = {.lex_state = 17}, + [2401] = {.lex_state = 27}, + [2402] = {.lex_state = 72}, + [2403] = {.lex_state = 72}, + [2404] = {.lex_state = 169}, [2405] = {.lex_state = 17}, - [2406] = {.lex_state = 17}, - [2407] = {.lex_state = 19}, - [2408] = {.lex_state = 19}, - [2409] = {.lex_state = 20}, - [2410] = {.lex_state = 19}, - [2411] = {.lex_state = 19}, - [2412] = {.lex_state = 19}, + [2406] = {.lex_state = 31}, + [2407] = {.lex_state = 17}, + [2408] = {.lex_state = 17}, + [2409] = {.lex_state = 72}, + [2410] = {.lex_state = 72}, + [2411] = {.lex_state = 72}, + [2412] = {.lex_state = 72}, [2413] = {.lex_state = 17}, [2414] = {.lex_state = 17}, - [2415] = {.lex_state = 17}, + [2415] = {.lex_state = 31}, [2416] = {.lex_state = 17}, [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 17}, - [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 17}, - [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 20}, - [2423] = {.lex_state = 17}, + [2418] = {.lex_state = 31}, + [2419] = {.lex_state = 23}, + [2420] = {.lex_state = 72}, + [2421] = {.lex_state = 72}, + [2422] = {.lex_state = 31}, + [2423] = {.lex_state = 31}, [2424] = {.lex_state = 17}, - [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 20}, - [2427] = {.lex_state = 20}, + [2425] = {.lex_state = 23}, + [2426] = {.lex_state = 17}, + [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 31}, - [2431] = {.lex_state = 23}, + [2429] = {.lex_state = 19}, + [2430] = {.lex_state = 17}, + [2431] = {.lex_state = 5}, [2432] = {.lex_state = 31}, - [2433] = {.lex_state = 31}, - [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 23}, + [2433] = {.lex_state = 17}, + [2434] = {.lex_state = 15}, + [2435] = {.lex_state = 20}, [2436] = {.lex_state = 17}, - [2437] = {.lex_state = 17}, + [2437] = {.lex_state = 31}, [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 23}, + [2439] = {.lex_state = 27}, [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 19}, - [2442] = {.lex_state = 31}, + [2441] = {.lex_state = 5}, + [2442] = {.lex_state = 17}, [2443] = {.lex_state = 17}, [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 17}, - [2446] = {.lex_state = 5}, - [2447] = {.lex_state = 19}, - [2448] = {.lex_state = 23}, - [2449] = {.lex_state = 31}, - [2450] = {.lex_state = 23}, - [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 17}, - [2453] = {.lex_state = 31}, + [2445] = {.lex_state = 23}, + [2446] = {.lex_state = 17}, + [2447] = {.lex_state = 17}, + [2448] = {.lex_state = 20}, + [2449] = {.lex_state = 17}, + [2450] = {.lex_state = 17}, + [2451] = {.lex_state = 20}, + [2452] = {.lex_state = 31}, + [2453] = {.lex_state = 20}, [2454] = {.lex_state = 31}, [2455] = {.lex_state = 17}, [2456] = {.lex_state = 17}, - [2457] = {.lex_state = 31}, + [2457] = {.lex_state = 17}, [2458] = {.lex_state = 31}, [2459] = {.lex_state = 17}, [2460] = {.lex_state = 17}, - [2461] = {.lex_state = 17}, + [2461] = {.lex_state = 20}, [2462] = {.lex_state = 17}, - [2463] = {.lex_state = 17}, + [2463] = {.lex_state = 31}, [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 31}, - [2466] = {.lex_state = 31}, - [2467] = {.lex_state = 20}, - [2468] = {.lex_state = 31}, + [2465] = {.lex_state = 17}, + [2466] = {.lex_state = 17}, + [2467] = {.lex_state = 17}, + [2468] = {.lex_state = 17}, [2469] = {.lex_state = 17}, - [2470] = {.lex_state = 72}, + [2470] = {.lex_state = 17}, [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, + [2472] = {.lex_state = 31}, [2473] = {.lex_state = 17}, [2474] = {.lex_state = 31}, - [2475] = {.lex_state = 17}, - [2476] = {.lex_state = 31}, - [2477] = {.lex_state = 31}, - [2478] = {.lex_state = 15}, + [2475] = {.lex_state = 31}, + [2476] = {.lex_state = 17}, + [2477] = {.lex_state = 17}, + [2478] = {.lex_state = 17}, [2479] = {.lex_state = 17}, [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 5}, + [2481] = {.lex_state = 17}, [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 17}, - [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 20}, + [2483] = {.lex_state = 15}, + [2484] = {.lex_state = 31}, + [2485] = {.lex_state = 31}, [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 5}, - [2488] = {.lex_state = 15}, + [2487] = {.lex_state = 17}, + [2488] = {.lex_state = 17}, [2489] = {.lex_state = 17}, - [2490] = {.lex_state = 17}, + [2490] = {.lex_state = 23}, [2491] = {.lex_state = 17}, [2492] = {.lex_state = 17}, - [2493] = {.lex_state = 23}, - [2494] = {.lex_state = 17}, - [2495] = {.lex_state = 31}, + [2493] = {.lex_state = 17}, + [2494] = {.lex_state = 31}, + [2495] = {.lex_state = 5}, [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 72}, - [2498] = {.lex_state = 27}, + [2497] = {.lex_state = 17}, + [2498] = {.lex_state = 17}, [2499] = {.lex_state = 17}, - [2500] = {.lex_state = 17}, + [2500] = {.lex_state = 5}, [2501] = {.lex_state = 17}, [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 17}, + [2503] = {.lex_state = 31}, [2504] = {.lex_state = 17}, - [2505] = {.lex_state = 17}, - [2506] = {.lex_state = 17}, - [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 17}, - [2509] = {.lex_state = 17}, + [2505] = {.lex_state = 19}, + [2506] = {.lex_state = 19}, + [2507] = {.lex_state = 23}, + [2508] = {.lex_state = 23}, + [2509] = {.lex_state = 19}, [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 23}, - [2512] = {.lex_state = 31}, - [2513] = {.lex_state = 31}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 23, .external_lex_state = 3}, - [2516] = {.lex_state = 23}, - [2517] = {.lex_state = 31}, - [2518] = {.lex_state = 31}, - [2519] = {.lex_state = 31}, + [2511] = {.lex_state = 19}, + [2512] = {.lex_state = 17}, + [2513] = {.lex_state = 17}, + [2514] = {.lex_state = 19}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 20}, + [2517] = {.lex_state = 19}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 8}, [2520] = {.lex_state = 23}, [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, + [2522] = {.lex_state = 31}, [2523] = {.lex_state = 17}, [2524] = {.lex_state = 17}, - [2525] = {.lex_state = 17}, - [2526] = {.lex_state = 19}, - [2527] = {.lex_state = 19}, + [2525] = {.lex_state = 31}, + [2526] = {.lex_state = 17}, + [2527] = {.lex_state = 31}, [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 19}, - [2530] = {.lex_state = 31}, - [2531] = {.lex_state = 31}, + [2529] = {.lex_state = 31}, + [2530] = {.lex_state = 23}, + [2531] = {.lex_state = 19}, [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 31}, - [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 17}, + [2533] = {.lex_state = 19}, + [2534] = {.lex_state = 19}, + [2535] = {.lex_state = 19}, [2536] = {.lex_state = 17}, - [2537] = {.lex_state = 17}, - [2538] = {.lex_state = 19}, - [2539] = {.lex_state = 72}, + [2537] = {.lex_state = 23}, + [2538] = {.lex_state = 23}, + [2539] = {.lex_state = 23, .external_lex_state = 3}, [2540] = {.lex_state = 17}, - [2541] = {.lex_state = 19}, - [2542] = {.lex_state = 19}, - [2543] = {.lex_state = 23}, + [2541] = {.lex_state = 17}, + [2542] = {.lex_state = 17}, + [2543] = {.lex_state = 31}, [2544] = {.lex_state = 17}, [2545] = {.lex_state = 17}, [2546] = {.lex_state = 17}, - [2547] = {.lex_state = 23}, - [2548] = {.lex_state = 23}, - [2549] = {.lex_state = 23}, - [2550] = {.lex_state = 31}, - [2551] = {.lex_state = 17}, - [2552] = {.lex_state = 17}, - [2553] = {.lex_state = 23}, - [2554] = {.lex_state = 31}, - [2555] = {.lex_state = 23}, - [2556] = {.lex_state = 23}, - [2557] = {.lex_state = 31}, - [2558] = {.lex_state = 23}, - [2559] = {.lex_state = 72}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 17}, + [2549] = {.lex_state = 17}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 5}, + [2552] = {.lex_state = 31}, + [2553] = {.lex_state = 31}, + [2554] = {.lex_state = 17}, + [2555] = {.lex_state = 31}, + [2556] = {.lex_state = 17}, + [2557] = {.lex_state = 17}, + [2558] = {.lex_state = 8}, + [2559] = {.lex_state = 31}, [2560] = {.lex_state = 23}, - [2561] = {.lex_state = 23}, - [2562] = {.lex_state = 23}, - [2563] = {.lex_state = 23}, - [2564] = {.lex_state = 23}, - [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 23}, - [2567] = {.lex_state = 8}, - [2568] = {.lex_state = 8}, - [2569] = {.lex_state = 31}, + [2561] = {.lex_state = 31}, + [2562] = {.lex_state = 31}, + [2563] = {.lex_state = 5}, + [2564] = {.lex_state = 31}, + [2565] = {.lex_state = 23}, + [2566] = {.lex_state = 31}, + [2567] = {.lex_state = 31}, + [2568] = {.lex_state = 23}, + [2569] = {.lex_state = 23}, [2570] = {.lex_state = 31}, [2571] = {.lex_state = 23}, [2572] = {.lex_state = 31}, - [2573] = {.lex_state = 17}, - [2574] = {.lex_state = 31}, - [2575] = {.lex_state = 31}, - [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 17}, - [2578] = {.lex_state = 31}, + [2573] = {.lex_state = 23}, + [2574] = {.lex_state = 23}, + [2575] = {.lex_state = 23}, + [2576] = {.lex_state = 23}, + [2577] = {.lex_state = 23}, + [2578] = {.lex_state = 23}, [2579] = {.lex_state = 23}, - [2580] = {.lex_state = 31}, + [2580] = {.lex_state = 23}, [2581] = {.lex_state = 17}, - [2582] = {.lex_state = 31}, - [2583] = {.lex_state = 31}, - [2584] = {.lex_state = 31}, - [2585] = {.lex_state = 17}, + [2582] = {.lex_state = 23}, + [2583] = {.lex_state = 23}, + [2584] = {.lex_state = 23}, + [2585] = {.lex_state = 23}, [2586] = {.lex_state = 17}, - [2587] = {.lex_state = 17}, - [2588] = {.lex_state = 23}, - [2589] = {.lex_state = 17}, - [2590] = {.lex_state = 17}, - [2591] = {.lex_state = 8}, - [2592] = {.lex_state = 23}, - [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 31}, - [2595] = {.lex_state = 17}, + [2587] = {.lex_state = 8}, + [2588] = {.lex_state = 31}, + [2589] = {.lex_state = 31}, + [2590] = {.lex_state = 23}, + [2591] = {.lex_state = 31}, + [2592] = {.lex_state = 31}, + [2593] = {.lex_state = 31}, + [2594] = {.lex_state = 17}, + [2595] = {.lex_state = 31}, [2596] = {.lex_state = 17}, - [2597] = {.lex_state = 31}, - [2598] = {.lex_state = 31}, + [2597] = {.lex_state = 17}, + [2598] = {.lex_state = 17}, [2599] = {.lex_state = 23}, [2600] = {.lex_state = 31}, - [2601] = {.lex_state = 17}, - [2602] = {.lex_state = 17}, - [2603] = {.lex_state = 17}, + [2601] = {.lex_state = 31}, + [2602] = {.lex_state = 19}, + [2603] = {.lex_state = 19}, [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 8}, + [2605] = {.lex_state = 31}, [2606] = {.lex_state = 17}, - [2607] = {.lex_state = 17}, - [2608] = {.lex_state = 23}, - [2609] = {.lex_state = 5}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 5}, - [2612] = {.lex_state = 23}, - [2613] = {.lex_state = 31}, - [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 31}, - [2616] = {.lex_state = 23}, - [2617] = {.lex_state = 17}, + [2607] = {.lex_state = 31}, + [2608] = {.lex_state = 31}, + [2609] = {.lex_state = 23}, + [2610] = {.lex_state = 17}, + [2611] = {.lex_state = 17}, + [2612] = {.lex_state = 17}, + [2613] = {.lex_state = 23}, + [2614] = {.lex_state = 23}, + [2615] = {.lex_state = 72}, + [2616] = {.lex_state = 31}, + [2617] = {.lex_state = 31}, [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 31}, + [2619] = {.lex_state = 8}, [2620] = {.lex_state = 17}, - [2621] = {.lex_state = 23}, + [2621] = {.lex_state = 72}, [2622] = {.lex_state = 17}, - [2623] = {.lex_state = 23}, - [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 19}, + [2623] = {.lex_state = 17}, + [2624] = {.lex_state = 23}, + [2625] = {.lex_state = 17}, [2626] = {.lex_state = 23}, [2627] = {.lex_state = 8}, - [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 8}, - [2631] = {.lex_state = 19}, - [2632] = {.lex_state = 17}, - [2633] = {.lex_state = 19}, - [2634] = {.lex_state = 72}, - [2635] = {.lex_state = 18}, - [2636] = {.lex_state = 72}, - [2637] = {.lex_state = 23}, - [2638] = {.lex_state = 23}, - [2639] = {.lex_state = 23}, - [2640] = {.lex_state = 23, .external_lex_state = 4}, - [2641] = {.lex_state = 19}, - [2642] = {.lex_state = 23}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 23}, - [2645] = {.lex_state = 72}, - [2646] = {.lex_state = 72}, - [2647] = {.lex_state = 18}, - [2648] = {.lex_state = 17}, + [2628] = {.lex_state = 23}, + [2629] = {.lex_state = 23}, + [2630] = {.lex_state = 23}, + [2631] = {.lex_state = 72}, + [2632] = {.lex_state = 23}, + [2633] = {.lex_state = 8}, + [2634] = {.lex_state = 5}, + [2635] = {.lex_state = 17}, + [2636] = {.lex_state = 23}, + [2637] = {.lex_state = 8}, + [2638] = {.lex_state = 8}, + [2639] = {.lex_state = 33}, + [2640] = {.lex_state = 72}, + [2641] = {.lex_state = 72}, + [2642] = {.lex_state = 72}, + [2643] = {.lex_state = 72}, + [2644] = {.lex_state = 17}, + [2645] = {.lex_state = 17}, + [2646] = {.lex_state = 17}, + [2647] = {.lex_state = 17}, + [2648] = {.lex_state = 31}, [2649] = {.lex_state = 17}, - [2650] = {.lex_state = 72}, - [2651] = {.lex_state = 23}, - [2652] = {.lex_state = 23}, - [2653] = {.lex_state = 72}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 23, .external_lex_state = 4}, - [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 8}, - [2658] = {.lex_state = 8}, - [2659] = {.lex_state = 8}, - [2660] = {.lex_state = 8}, - [2661] = {.lex_state = 72}, - [2662] = {.lex_state = 8}, - [2663] = {.lex_state = 8}, - [2664] = {.lex_state = 72}, - [2665] = {.lex_state = 8}, - [2666] = {.lex_state = 8}, - [2667] = {.lex_state = 17}, - [2668] = {.lex_state = 23}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 72}, - [2671] = {.lex_state = 23}, + [2650] = {.lex_state = 8}, + [2651] = {.lex_state = 17}, + [2652] = {.lex_state = 17}, + [2653] = {.lex_state = 17}, + [2654] = {.lex_state = 17}, + [2655] = {.lex_state = 17}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 72}, + [2658] = {.lex_state = 23}, + [2659] = {.lex_state = 23}, + [2660] = {.lex_state = 23}, + [2661] = {.lex_state = 17}, + [2662] = {.lex_state = 23, .external_lex_state = 4}, + [2663] = {.lex_state = 72}, + [2664] = {.lex_state = 17}, + [2665] = {.lex_state = 17}, + [2666] = {.lex_state = 17}, + [2667] = {.lex_state = 23}, + [2668] = {.lex_state = 31}, + [2669] = {.lex_state = 33}, + [2670] = {.lex_state = 17}, + [2671] = {.lex_state = 17}, [2672] = {.lex_state = 72}, - [2673] = {.lex_state = 72}, + [2673] = {.lex_state = 17}, [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 31}, + [2675] = {.lex_state = 17}, [2676] = {.lex_state = 17}, [2677] = {.lex_state = 17}, - [2678] = {.lex_state = 19}, - [2679] = {.lex_state = 33}, - [2680] = {.lex_state = 23}, - [2681] = {.lex_state = 31}, - [2682] = {.lex_state = 72}, - [2683] = {.lex_state = 72}, - [2684] = {.lex_state = 17}, - [2685] = {.lex_state = 17}, - [2686] = {.lex_state = 23}, + [2678] = {.lex_state = 17}, + [2679] = {.lex_state = 19}, + [2680] = {.lex_state = 17}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 19}, + [2683] = {.lex_state = 19}, + [2684] = {.lex_state = 23}, + [2685] = {.lex_state = 19}, + [2686] = {.lex_state = 17}, [2687] = {.lex_state = 17}, [2688] = {.lex_state = 17}, - [2689] = {.lex_state = 33}, - [2690] = {.lex_state = 23}, - [2691] = {.lex_state = 23}, - [2692] = {.lex_state = 23, .external_lex_state = 4}, - [2693] = {.lex_state = 23}, + [2689] = {.lex_state = 31}, + [2690] = {.lex_state = 72}, + [2691] = {.lex_state = 17}, + [2692] = {.lex_state = 17}, + [2693] = {.lex_state = 17}, [2694] = {.lex_state = 23}, - [2695] = {.lex_state = 17}, - [2696] = {.lex_state = 8}, + [2695] = {.lex_state = 72}, + [2696] = {.lex_state = 17}, [2697] = {.lex_state = 23}, - [2698] = {.lex_state = 72}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 23}, - [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23, .external_lex_state = 4}, - [2703] = {.lex_state = 72}, - [2704] = {.lex_state = 8}, + [2698] = {.lex_state = 5}, + [2699] = {.lex_state = 72}, + [2700] = {.lex_state = 17}, + [2701] = {.lex_state = 17}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 17}, [2705] = {.lex_state = 8}, - [2706] = {.lex_state = 8}, - [2707] = {.lex_state = 8}, - [2708] = {.lex_state = 8}, - [2709] = {.lex_state = 8}, + [2706] = {.lex_state = 23}, + [2707] = {.lex_state = 18}, + [2708] = {.lex_state = 72}, + [2709] = {.lex_state = 72}, [2710] = {.lex_state = 23}, [2711] = {.lex_state = 23}, - [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 17}, + [2712] = {.lex_state = 23, .external_lex_state = 4}, + [2713] = {.lex_state = 31}, [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 31}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 23}, - [2718] = {.lex_state = 23, .external_lex_state = 4}, - [2719] = {.lex_state = 72}, - [2720] = {.lex_state = 31}, - [2721] = {.lex_state = 23, .external_lex_state = 4}, - [2722] = {.lex_state = 72}, - [2723] = {.lex_state = 23}, - [2724] = {.lex_state = 17}, - [2725] = {.lex_state = 23, .external_lex_state = 4}, - [2726] = {.lex_state = 72}, - [2727] = {.lex_state = 23, .external_lex_state = 4}, - [2728] = {.lex_state = 72}, - [2729] = {.lex_state = 8}, - [2730] = {.lex_state = 8}, - [2731] = {.lex_state = 8}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 23}, + [2717] = {.lex_state = 18}, + [2718] = {.lex_state = 72}, + [2719] = {.lex_state = 23}, + [2720] = {.lex_state = 23}, + [2721] = {.lex_state = 72}, + [2722] = {.lex_state = 23}, + [2723] = {.lex_state = 23, .external_lex_state = 4}, + [2724] = {.lex_state = 72}, + [2725] = {.lex_state = 8}, + [2726] = {.lex_state = 8}, + [2727] = {.lex_state = 8}, + [2728] = {.lex_state = 8}, + [2729] = {.lex_state = 72}, + [2730] = {.lex_state = 31}, + [2731] = {.lex_state = 72}, [2732] = {.lex_state = 8}, [2733] = {.lex_state = 17}, - [2734] = {.lex_state = 23}, - [2735] = {.lex_state = 17}, - [2736] = {.lex_state = 23, .external_lex_state = 4}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 23, .external_lex_state = 4}, - [2739] = {.lex_state = 23, .external_lex_state = 4}, - [2740] = {.lex_state = 8}, - [2741] = {.lex_state = 8}, + [2734] = {.lex_state = 8}, + [2735] = {.lex_state = 8}, + [2736] = {.lex_state = 23}, + [2737] = {.lex_state = 23}, + [2738] = {.lex_state = 8}, + [2739] = {.lex_state = 72}, + [2740] = {.lex_state = 72}, + [2741] = {.lex_state = 72}, [2742] = {.lex_state = 17}, - [2743] = {.lex_state = 17}, + [2743] = {.lex_state = 23}, [2744] = {.lex_state = 23}, - [2745] = {.lex_state = 8}, - [2746] = {.lex_state = 8}, + [2745] = {.lex_state = 23}, + [2746] = {.lex_state = 72}, [2747] = {.lex_state = 8}, [2748] = {.lex_state = 72}, [2749] = {.lex_state = 17}, - [2750] = {.lex_state = 8}, - [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 5}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 72}, - [2755] = {.lex_state = 17}, - [2756] = {.lex_state = 5}, - [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 17}, - [2759] = {.lex_state = 72}, - [2760] = {.lex_state = 17}, - [2761] = {.lex_state = 72}, - [2762] = {.lex_state = 19}, - [2763] = {.lex_state = 17}, - [2764] = {.lex_state = 18}, - [2765] = {.lex_state = 31}, - [2766] = {.lex_state = 72}, - [2767] = {.lex_state = 72}, - [2768] = {.lex_state = 19}, - [2769] = {.lex_state = 8}, - [2770] = {.lex_state = 17}, + [2750] = {.lex_state = 17}, + [2751] = {.lex_state = 17}, + [2752] = {.lex_state = 17}, + [2753] = {.lex_state = 23}, + [2754] = {.lex_state = 23}, + [2755] = {.lex_state = 23, .external_lex_state = 4}, + [2756] = {.lex_state = 23}, + [2757] = {.lex_state = 17}, + [2758] = {.lex_state = 72}, + [2759] = {.lex_state = 23}, + [2760] = {.lex_state = 23}, + [2761] = {.lex_state = 23}, + [2762] = {.lex_state = 23, .external_lex_state = 4}, + [2763] = {.lex_state = 72}, + [2764] = {.lex_state = 8}, + [2765] = {.lex_state = 8}, + [2766] = {.lex_state = 8}, + [2767] = {.lex_state = 8}, + [2768] = {.lex_state = 23}, + [2769] = {.lex_state = 17}, + [2770] = {.lex_state = 23}, [2771] = {.lex_state = 72}, - [2772] = {.lex_state = 23}, - [2773] = {.lex_state = 8}, + [2772] = {.lex_state = 72}, + [2773] = {.lex_state = 72}, [2774] = {.lex_state = 23}, - [2775] = {.lex_state = 23}, + [2775] = {.lex_state = 17}, [2776] = {.lex_state = 23}, - [2777] = {.lex_state = 19}, - [2778] = {.lex_state = 17}, - [2779] = {.lex_state = 31}, - [2780] = {.lex_state = 72}, - [2781] = {.lex_state = 17}, - [2782] = {.lex_state = 33}, - [2783] = {.lex_state = 23}, - [2784] = {.lex_state = 23, .external_lex_state = 4}, + [2777] = {.lex_state = 72}, + [2778] = {.lex_state = 23, .external_lex_state = 4}, + [2779] = {.lex_state = 72}, + [2780] = {.lex_state = 8}, + [2781] = {.lex_state = 8}, + [2782] = {.lex_state = 8}, + [2783] = {.lex_state = 8}, + [2784] = {.lex_state = 23}, [2785] = {.lex_state = 72}, - [2786] = {.lex_state = 23}, - [2787] = {.lex_state = 17}, - [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 17}, + [2786] = {.lex_state = 17}, + [2787] = {.lex_state = 23, .external_lex_state = 4}, + [2788] = {.lex_state = 72}, + [2789] = {.lex_state = 23, .external_lex_state = 4}, [2790] = {.lex_state = 8}, - [2791] = {.lex_state = 23}, - [2792] = {.lex_state = 8}, - [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 23}, + [2791] = {.lex_state = 8}, + [2792] = {.lex_state = 31}, + [2793] = {.lex_state = 72}, + [2794] = {.lex_state = 72}, [2795] = {.lex_state = 17}, - [2796] = {.lex_state = 72}, - [2797] = {.lex_state = 23}, - [2798] = {.lex_state = 23}, - [2799] = {.lex_state = 17}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 31}, - [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 72}, - [2804] = {.lex_state = 72}, + [2796] = {.lex_state = 8}, + [2797] = {.lex_state = 8}, + [2798] = {.lex_state = 23, .external_lex_state = 4}, + [2799] = {.lex_state = 72}, + [2800] = {.lex_state = 23}, + [2801] = {.lex_state = 23, .external_lex_state = 4}, + [2802] = {.lex_state = 5}, + [2803] = {.lex_state = 19}, + [2804] = {.lex_state = 19}, [2805] = {.lex_state = 19}, - [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 72}, - [2808] = {.lex_state = 23}, - [2809] = {.lex_state = 23}, - [2810] = {.lex_state = 72}, - [2811] = {.lex_state = 17}, - [2812] = {.lex_state = 31}, + [2806] = {.lex_state = 72}, + [2807] = {.lex_state = 19}, + [2808] = {.lex_state = 17}, + [2809] = {.lex_state = 72}, + [2810] = {.lex_state = 17}, + [2811] = {.lex_state = 8}, + [2812] = {.lex_state = 8}, [2813] = {.lex_state = 8}, - [2814] = {.lex_state = 8}, + [2814] = {.lex_state = 23}, [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 72}, - [2817] = {.lex_state = 23}, - [2818] = {.lex_state = 23}, - [2819] = {.lex_state = 17}, - [2820] = {.lex_state = 72}, - [2821] = {.lex_state = 17}, - [2822] = {.lex_state = 23}, - [2823] = {.lex_state = 17}, - [2824] = {.lex_state = 17}, - [2825] = {.lex_state = 23}, - [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 23}, + [2816] = {.lex_state = 19}, + [2817] = {.lex_state = 8}, + [2818] = {.lex_state = 19}, + [2819] = {.lex_state = 19}, + [2820] = {.lex_state = 23}, + [2821] = {.lex_state = 19}, + [2822] = {.lex_state = 31}, + [2823] = {.lex_state = 72}, + [2824] = {.lex_state = 8}, + [2825] = {.lex_state = 23, .external_lex_state = 4}, + [2826] = {.lex_state = 31}, + [2827] = {.lex_state = 72}, [2828] = {.lex_state = 23}, - [2829] = {.lex_state = 18}, - [2830] = {.lex_state = 18}, - [2831] = {.lex_state = 72}, + [2829] = {.lex_state = 72}, + [2830] = {.lex_state = 72}, + [2831] = {.lex_state = 8}, [2832] = {.lex_state = 23}, - [2833] = {.lex_state = 8}, - [2834] = {.lex_state = 5}, - [2835] = {.lex_state = 19}, + [2833] = {.lex_state = 17}, + [2834] = {.lex_state = 23}, + [2835] = {.lex_state = 17}, [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 17}, - [2838] = {.lex_state = 23, .external_lex_state = 4}, - [2839] = {.lex_state = 8}, - [2840] = {.lex_state = 17}, + [2837] = {.lex_state = 72}, + [2838] = {.lex_state = 8}, + [2839] = {.lex_state = 17}, + [2840] = {.lex_state = 23}, [2841] = {.lex_state = 72}, - [2842] = {.lex_state = 17}, - [2843] = {.lex_state = 31}, - [2844] = {.lex_state = 17}, - [2845] = {.lex_state = 5}, - [2846] = {.lex_state = 72}, - [2847] = {.lex_state = 17}, - [2848] = {.lex_state = 8}, - [2849] = {.lex_state = 8}, - [2850] = {.lex_state = 17}, - [2851] = {.lex_state = 17}, - [2852] = {.lex_state = 17}, - [2853] = {.lex_state = 17}, + [2842] = {.lex_state = 23}, + [2843] = {.lex_state = 23}, + [2844] = {.lex_state = 23, .external_lex_state = 4}, + [2845] = {.lex_state = 18}, + [2846] = {.lex_state = 8}, + [2847] = {.lex_state = 23}, + [2848] = {.lex_state = 23}, + [2849] = {.lex_state = 72}, + [2850] = {.lex_state = 8}, + [2851] = {.lex_state = 8}, + [2852] = {.lex_state = 23}, + [2853] = {.lex_state = 23}, [2854] = {.lex_state = 8}, - [2855] = {.lex_state = 5}, - [2856] = {.lex_state = 17}, - [2857] = {.lex_state = 17}, - [2858] = {.lex_state = 8}, - [2859] = {.lex_state = 17}, + [2855] = {.lex_state = 72}, + [2856] = {.lex_state = 23}, + [2857] = {.lex_state = 18}, + [2858] = {.lex_state = 18}, + [2859] = {.lex_state = 5}, [2860] = {.lex_state = 8}, - [2861] = {.lex_state = 23}, - [2862] = {.lex_state = 19}, - [2863] = {.lex_state = 17}, - [2864] = {.lex_state = 19}, - [2865] = {.lex_state = 8}, - [2866] = {.lex_state = 23}, + [2861] = {.lex_state = 8}, + [2862] = {.lex_state = 17}, + [2863] = {.lex_state = 23}, + [2864] = {.lex_state = 17}, + [2865] = {.lex_state = 5}, + [2866] = {.lex_state = 8}, [2867] = {.lex_state = 17}, - [2868] = {.lex_state = 8}, + [2868] = {.lex_state = 31}, [2869] = {.lex_state = 8}, - [2870] = {.lex_state = 31}, - [2871] = {.lex_state = 33}, - [2872] = {.lex_state = 8}, - [2873] = {.lex_state = 72}, - [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 8}, + [2870] = {.lex_state = 33}, + [2871] = {.lex_state = 31}, + [2872] = {.lex_state = 17}, + [2873] = {.lex_state = 8}, + [2874] = {.lex_state = 23}, + [2875] = {.lex_state = 23}, [2876] = {.lex_state = 17}, [2877] = {.lex_state = 8}, - [2878] = {.lex_state = 31}, - [2879] = {.lex_state = 17}, - [2880] = {.lex_state = 17}, - [2881] = {.lex_state = 72}, - [2882] = {.lex_state = 17}, - [2883] = {.lex_state = 72}, - [2884] = {.lex_state = 31}, - [2885] = {.lex_state = 72}, - [2886] = {.lex_state = 72}, - [2887] = {.lex_state = 20}, + [2878] = {.lex_state = 17}, + [2879] = {.lex_state = 8}, + [2880] = {.lex_state = 8}, + [2881] = {.lex_state = 31}, + [2882] = {.lex_state = 8}, + [2883] = {.lex_state = 33}, + [2884] = {.lex_state = 72}, + [2885] = {.lex_state = 17}, + [2886] = {.lex_state = 17}, + [2887] = {.lex_state = 8}, [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 19}, + [2889] = {.lex_state = 23, .external_lex_state = 4}, [2890] = {.lex_state = 72}, [2891] = {.lex_state = 72}, - [2892] = {.lex_state = 19}, + [2892] = {.lex_state = 8}, [2893] = {.lex_state = 72}, [2894] = {.lex_state = 72}, [2895] = {.lex_state = 72}, [2896] = {.lex_state = 72}, - [2897] = {.lex_state = 19}, - [2898] = {.lex_state = 72}, + [2897] = {.lex_state = 72}, + [2898] = {.lex_state = 17}, [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 19}, + [2901] = {.lex_state = 72}, [2902] = {.lex_state = 72}, - [2903] = {.lex_state = 19}, + [2903] = {.lex_state = 72}, [2904] = {.lex_state = 72}, [2905] = {.lex_state = 72}, - [2906] = {.lex_state = 72}, + [2906] = {.lex_state = 19}, [2907] = {.lex_state = 72}, - [2908] = {.lex_state = 72}, + [2908] = {.lex_state = 19}, [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 17}, + [2912] = {.lex_state = 72}, [2913] = {.lex_state = 72}, [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 17}, - [2916] = {.lex_state = 72}, + [2915] = {.lex_state = 72}, + [2916] = {.lex_state = 17}, [2917] = {.lex_state = 72}, - [2918] = {.lex_state = 72}, + [2918] = {.lex_state = 19}, [2919] = {.lex_state = 17}, [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 17}, - [2922] = {.lex_state = 17}, - [2923] = {.lex_state = 17}, + [2921] = {.lex_state = 72}, + [2922] = {.lex_state = 72}, + [2923] = {.lex_state = 19}, [2924] = {.lex_state = 72}, - [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 19}, + [2925] = {.lex_state = 17}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, [2928] = {.lex_state = 72}, - [2929] = {.lex_state = 19}, - [2930] = {.lex_state = 19}, - [2931] = {.lex_state = 19}, + [2929] = {.lex_state = 20}, + [2930] = {.lex_state = 72}, + [2931] = {.lex_state = 20}, [2932] = {.lex_state = 72}, [2933] = {.lex_state = 72}, [2934] = {.lex_state = 72}, @@ -13556,45 +13595,45 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2940] = {.lex_state = 72}, [2941] = {.lex_state = 72}, [2942] = {.lex_state = 19}, - [2943] = {.lex_state = 72}, + [2943] = {.lex_state = 19}, [2944] = {.lex_state = 72}, [2945] = {.lex_state = 72}, - [2946] = {.lex_state = 72}, + [2946] = {.lex_state = 19}, [2947] = {.lex_state = 72}, - [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 23}, - [2950] = {.lex_state = 72}, + [2948] = {.lex_state = 19}, + [2949] = {.lex_state = 72}, + [2950] = {.lex_state = 19}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, [2953] = {.lex_state = 72}, - [2954] = {.lex_state = 72}, - [2955] = {.lex_state = 72}, + [2954] = {.lex_state = 19}, + [2955] = {.lex_state = 8}, [2956] = {.lex_state = 72}, - [2957] = {.lex_state = 72}, + [2957] = {.lex_state = 31}, [2958] = {.lex_state = 72}, [2959] = {.lex_state = 72}, - [2960] = {.lex_state = 72}, + [2960] = {.lex_state = 20}, [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, [2963] = {.lex_state = 72}, [2964] = {.lex_state = 72}, - [2965] = {.lex_state = 17}, + [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, - [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 20}, + [2967] = {.lex_state = 19}, + [2968] = {.lex_state = 19}, [2969] = {.lex_state = 72}, - [2970] = {.lex_state = 72}, - [2971] = {.lex_state = 72}, + [2970] = {.lex_state = 19}, + [2971] = {.lex_state = 19}, [2972] = {.lex_state = 72}, - [2973] = {.lex_state = 72}, + [2973] = {.lex_state = 17}, [2974] = {.lex_state = 72}, - [2975] = {.lex_state = 20}, + [2975] = {.lex_state = 17}, [2976] = {.lex_state = 72}, - [2977] = {.lex_state = 72}, - [2978] = {.lex_state = 72}, + [2977] = {.lex_state = 17}, + [2978] = {.lex_state = 17}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 17}, - [2981] = {.lex_state = 72}, + [2980] = {.lex_state = 19}, + [2981] = {.lex_state = 19}, [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, [2984] = {.lex_state = 72}, @@ -13602,16 +13641,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2986] = {.lex_state = 72}, [2987] = {.lex_state = 72}, [2988] = {.lex_state = 72}, - [2989] = {.lex_state = 72}, + [2989] = {.lex_state = 19}, [2990] = {.lex_state = 72}, [2991] = {.lex_state = 72}, [2992] = {.lex_state = 72}, - [2993] = {.lex_state = 31}, + [2993] = {.lex_state = 72}, [2994] = {.lex_state = 72}, - [2995] = {.lex_state = 72}, + [2995] = {.lex_state = 19}, [2996] = {.lex_state = 72}, [2997] = {.lex_state = 72}, - [2998] = {.lex_state = 72}, + [2998] = {.lex_state = 17}, [2999] = {.lex_state = 17}, [3000] = {.lex_state = 72}, [3001] = {.lex_state = 72}, @@ -13619,324 +13658,324 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3003] = {.lex_state = 72}, [3004] = {.lex_state = 72}, [3005] = {.lex_state = 72}, - [3006] = {.lex_state = 19}, - [3007] = {.lex_state = 19}, + [3006] = {.lex_state = 72}, + [3007] = {.lex_state = 72}, [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 19}, + [3010] = {.lex_state = 72}, [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, + [3012] = {.lex_state = 72}, [3013] = {.lex_state = 72}, - [3014] = {.lex_state = 8}, + [3014] = {.lex_state = 31}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 19}, + [3016] = {.lex_state = 72}, [3017] = {.lex_state = 72}, - [3018] = {.lex_state = 17}, - [3019] = {.lex_state = 17}, - [3020] = {.lex_state = 19}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 72}, [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 17}, + [3022] = {.lex_state = 72}, [3023] = {.lex_state = 19}, [3024] = {.lex_state = 72}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, - [3027] = {.lex_state = 8}, - [3028] = {.lex_state = 17}, + [3027] = {.lex_state = 17}, + [3028] = {.lex_state = 19}, [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, - [3032] = {.lex_state = 72}, - [3033] = {.lex_state = 72}, + [3032] = {.lex_state = 17}, + [3033] = {.lex_state = 17}, [3034] = {.lex_state = 72}, [3035] = {.lex_state = 72}, - [3036] = {.lex_state = 17}, - [3037] = {.lex_state = 19}, - [3038] = {.lex_state = 19}, - [3039] = {.lex_state = 19}, + [3036] = {.lex_state = 72}, + [3037] = {.lex_state = 8}, + [3038] = {.lex_state = 72}, + [3039] = {.lex_state = 72}, [3040] = {.lex_state = 72}, [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 19}, - [3043] = {.lex_state = 19}, - [3044] = {.lex_state = 19}, + [3042] = {.lex_state = 72}, + [3043] = {.lex_state = 72}, + [3044] = {.lex_state = 72}, [3045] = {.lex_state = 72}, [3046] = {.lex_state = 72}, [3047] = {.lex_state = 72}, [3048] = {.lex_state = 72}, [3049] = {.lex_state = 72}, - [3050] = {.lex_state = 72}, + [3050] = {.lex_state = 8}, [3051] = {.lex_state = 72}, [3052] = {.lex_state = 72}, [3053] = {.lex_state = 72}, - [3054] = {.lex_state = 20}, - [3055] = {.lex_state = 17}, + [3054] = {.lex_state = 17}, + [3055] = {.lex_state = 72}, [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 17}, - [3059] = {.lex_state = 72}, - [3060] = {.lex_state = 8}, - [3061] = {.lex_state = 19}, + [3058] = {.lex_state = 72}, + [3059] = {.lex_state = 17}, + [3060] = {.lex_state = 72}, + [3061] = {.lex_state = 23}, [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 72}, + [3063] = {.lex_state = 17}, [3064] = {.lex_state = 72}, - [3065] = {.lex_state = 17}, - [3066] = {.lex_state = 72}, + [3065] = {.lex_state = 19}, + [3066] = {.lex_state = 8}, [3067] = {.lex_state = 72}, [3068] = {.lex_state = 72}, [3069] = {.lex_state = 72}, [3070] = {.lex_state = 72}, - [3071] = {.lex_state = 72}, + [3071] = {.lex_state = 17}, [3072] = {.lex_state = 17}, - [3073] = {.lex_state = 17}, - [3074] = {.lex_state = 8}, - [3075] = {.lex_state = 17}, - [3076] = {.lex_state = 8}, + [3073] = {.lex_state = 72}, + [3074] = {.lex_state = 72}, + [3075] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, [3077] = {.lex_state = 72}, [3078] = {.lex_state = 72}, - [3079] = {.lex_state = 72}, - [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 72}, - [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 23}, + [3079] = {.lex_state = 19}, + [3080] = {.lex_state = 19}, + [3081] = {.lex_state = 23, .external_lex_state = 4}, + [3082] = {.lex_state = 17}, + [3083] = {.lex_state = 72}, [3084] = {.lex_state = 72}, [3085] = {.lex_state = 72}, [3086] = {.lex_state = 72}, [3087] = {.lex_state = 72}, [3088] = {.lex_state = 72}, [3089] = {.lex_state = 72}, - [3090] = {.lex_state = 72}, + [3090] = {.lex_state = 17}, [3091] = {.lex_state = 72}, [3092] = {.lex_state = 72}, - [3093] = {.lex_state = 17}, + [3093] = {.lex_state = 72}, [3094] = {.lex_state = 72}, [3095] = {.lex_state = 72}, [3096] = {.lex_state = 72}, [3097] = {.lex_state = 72}, [3098] = {.lex_state = 72}, - [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 72}, - [3101] = {.lex_state = 72}, + [3099] = {.lex_state = 19}, + [3100] = {.lex_state = 20}, + [3101] = {.lex_state = 19}, [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 8}, + [3103] = {.lex_state = 72}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, [3107] = {.lex_state = 72}, - [3108] = {.lex_state = 72}, + [3108] = {.lex_state = 8}, [3109] = {.lex_state = 17}, - [3110] = {.lex_state = 19}, - [3111] = {.lex_state = 19}, + [3110] = {.lex_state = 8}, + [3111] = {.lex_state = 72}, [3112] = {.lex_state = 19}, - [3113] = {.lex_state = 19}, + [3113] = {.lex_state = 72}, [3114] = {.lex_state = 19}, - [3115] = {.lex_state = 19}, - [3116] = {.lex_state = 72}, - [3117] = {.lex_state = 72}, + [3115] = {.lex_state = 72}, + [3116] = {.lex_state = 8}, + [3117] = {.lex_state = 8}, [3118] = {.lex_state = 72}, - [3119] = {.lex_state = 72}, + [3119] = {.lex_state = 19}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 23}, + [3121] = {.lex_state = 19}, + [3122] = {.lex_state = 19}, [3123] = {.lex_state = 72}, [3124] = {.lex_state = 72}, [3125] = {.lex_state = 72}, - [3126] = {.lex_state = 72}, - [3127] = {.lex_state = 72}, - [3128] = {.lex_state = 23}, + [3126] = {.lex_state = 19}, + [3127] = {.lex_state = 8}, + [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 72}, - [3131] = {.lex_state = 8}, + [3130] = {.lex_state = 19}, + [3131] = {.lex_state = 72}, [3132] = {.lex_state = 72}, - [3133] = {.lex_state = 72}, - [3134] = {.lex_state = 72}, + [3133] = {.lex_state = 19}, + [3134] = {.lex_state = 19}, [3135] = {.lex_state = 72}, - [3136] = {.lex_state = 72}, - [3137] = {.lex_state = 72}, + [3136] = {.lex_state = 23}, + [3137] = {.lex_state = 23}, [3138] = {.lex_state = 72}, - [3139] = {.lex_state = 72}, + [3139] = {.lex_state = 23}, [3140] = {.lex_state = 72}, - [3141] = {.lex_state = 72}, + [3141] = {.lex_state = 17}, [3142] = {.lex_state = 72}, [3143] = {.lex_state = 72}, [3144] = {.lex_state = 72}, [3145] = {.lex_state = 72}, [3146] = {.lex_state = 72}, [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 8}, + [3148] = {.lex_state = 20}, [3149] = {.lex_state = 17}, [3150] = {.lex_state = 72}, - [3151] = {.lex_state = 72}, - [3152] = {.lex_state = 19}, - [3153] = {.lex_state = 19}, - [3154] = {.lex_state = 19}, - [3155] = {.lex_state = 19}, - [3156] = {.lex_state = 17}, + [3151] = {.lex_state = 19}, + [3152] = {.lex_state = 72}, + [3153] = {.lex_state = 72}, + [3154] = {.lex_state = 72}, + [3155] = {.lex_state = 72}, + [3156] = {.lex_state = 72}, [3157] = {.lex_state = 72}, - [3158] = {.lex_state = 23, .external_lex_state = 4}, + [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 17}, - [3162] = {.lex_state = 72}, + [3161] = {.lex_state = 72}, + [3162] = {.lex_state = 17}, [3163] = {.lex_state = 72}, [3164] = {.lex_state = 72}, [3165] = {.lex_state = 72}, [3166] = {.lex_state = 72}, - [3167] = {.lex_state = 8}, + [3167] = {.lex_state = 72}, [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 72}, - [3170] = {.lex_state = 72}, + [3169] = {.lex_state = 17}, + [3170] = {.lex_state = 17}, [3171] = {.lex_state = 72}, [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 8}, + [3173] = {.lex_state = 72}, [3174] = {.lex_state = 72}, - [3175] = {.lex_state = 20}, + [3175] = {.lex_state = 72}, [3176] = {.lex_state = 72}, [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 8}, - [3179] = {.lex_state = 19}, - [3180] = {.lex_state = 8}, - [3181] = {.lex_state = 19}, + [3178] = {.lex_state = 72}, + [3179] = {.lex_state = 72}, + [3180] = {.lex_state = 72}, + [3181] = {.lex_state = 72}, [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 72}, + [3183] = {.lex_state = 8}, [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 8}, + [3185] = {.lex_state = 72}, [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 17}, - [3188] = {.lex_state = 19}, + [3187] = {.lex_state = 19}, + [3188] = {.lex_state = 8}, [3189] = {.lex_state = 72}, - [3190] = {.lex_state = 72}, - [3191] = {.lex_state = 8}, - [3192] = {.lex_state = 72}, + [3190] = {.lex_state = 8}, + [3191] = {.lex_state = 72}, + [3192] = {.lex_state = 17}, [3193] = {.lex_state = 72}, - [3194] = {.lex_state = 17}, + [3194] = {.lex_state = 8}, [3195] = {.lex_state = 72}, [3196] = {.lex_state = 72}, - [3197] = {.lex_state = 72}, + [3197] = {.lex_state = 17}, [3198] = {.lex_state = 72}, - [3199] = {.lex_state = 8}, - [3200] = {.lex_state = 17}, - [3201] = {.lex_state = 17}, - [3202] = {.lex_state = 17}, - [3203] = {.lex_state = 23, .external_lex_state = 5}, - [3204] = {.lex_state = 17}, - [3205] = {.lex_state = 17}, - [3206] = {.lex_state = 17}, + [3199] = {.lex_state = 19}, + [3200] = {.lex_state = 72}, + [3201] = {.lex_state = 72}, + [3202] = {.lex_state = 72}, + [3203] = {.lex_state = 72}, + [3204] = {.lex_state = 72}, + [3205] = {.lex_state = 72}, + [3206] = {.lex_state = 72, .external_lex_state = 5}, [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 23, .external_lex_state = 5}, - [3209] = {.lex_state = 17}, + [3208] = {.lex_state = 17}, + [3209] = {.lex_state = 72}, [3210] = {.lex_state = 72}, - [3211] = {.lex_state = 72}, - [3212] = {.lex_state = 72}, - [3213] = {.lex_state = 72}, - [3214] = {.lex_state = 72}, - [3215] = {.lex_state = 72}, - [3216] = {.lex_state = 72}, + [3211] = {.lex_state = 17}, + [3212] = {.lex_state = 17}, + [3213] = {.lex_state = 17}, + [3214] = {.lex_state = 17}, + [3215] = {.lex_state = 17}, + [3216] = {.lex_state = 17}, [3217] = {.lex_state = 17}, - [3218] = {.lex_state = 23}, + [3218] = {.lex_state = 17}, [3219] = {.lex_state = 72}, [3220] = {.lex_state = 72}, [3221] = {.lex_state = 72}, - [3222] = {.lex_state = 17}, + [3222] = {.lex_state = 72}, [3223] = {.lex_state = 72}, - [3224] = {.lex_state = 72}, + [3224] = {.lex_state = 17}, [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 72}, - [3227] = {.lex_state = 17}, + [3226] = {.lex_state = 17}, + [3227] = {.lex_state = 72}, [3228] = {.lex_state = 72}, [3229] = {.lex_state = 17}, - [3230] = {.lex_state = 72}, - [3231] = {.lex_state = 72}, + [3230] = {.lex_state = 17}, + [3231] = {.lex_state = 17}, [3232] = {.lex_state = 17}, - [3233] = {.lex_state = 72}, + [3233] = {.lex_state = 17}, [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 72}, + [3235] = {.lex_state = 17}, [3236] = {.lex_state = 72}, [3237] = {.lex_state = 72}, [3238] = {.lex_state = 72}, [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, - [3241] = {.lex_state = 72}, - [3242] = {.lex_state = 17}, + [3240] = {.lex_state = 7}, + [3241] = {.lex_state = 7}, + [3242] = {.lex_state = 72}, [3243] = {.lex_state = 72}, [3244] = {.lex_state = 72}, - [3245] = {.lex_state = 17}, + [3245] = {.lex_state = 72}, [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, [3248] = {.lex_state = 72}, - [3249] = {.lex_state = 23}, + [3249] = {.lex_state = 72}, [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 23, .external_lex_state = 5}, - [3252] = {.lex_state = 17}, + [3251] = {.lex_state = 17}, + [3252] = {.lex_state = 72}, [3253] = {.lex_state = 72}, [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 31}, - [3256] = {.lex_state = 31}, - [3257] = {.lex_state = 17}, + [3255] = {.lex_state = 72}, + [3256] = {.lex_state = 17}, + [3257] = {.lex_state = 72}, [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, + [3259] = {.lex_state = 72}, + [3260] = {.lex_state = 72}, [3261] = {.lex_state = 17}, [3262] = {.lex_state = 72}, - [3263] = {.lex_state = 31}, - [3264] = {.lex_state = 17}, + [3263] = {.lex_state = 17}, + [3264] = {.lex_state = 72}, [3265] = {.lex_state = 72}, [3266] = {.lex_state = 72}, [3267] = {.lex_state = 17}, [3268] = {.lex_state = 17}, [3269] = {.lex_state = 17}, - [3270] = {.lex_state = 72, .external_lex_state = 6}, - [3271] = {.lex_state = 72}, + [3270] = {.lex_state = 17}, + [3271] = {.lex_state = 17}, [3272] = {.lex_state = 17}, [3273] = {.lex_state = 72}, [3274] = {.lex_state = 72}, - [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 31}, - [3277] = {.lex_state = 72}, + [3275] = {.lex_state = 72}, + [3276] = {.lex_state = 72}, + [3277] = {.lex_state = 17}, [3278] = {.lex_state = 72}, [3279] = {.lex_state = 72}, [3280] = {.lex_state = 72}, - [3281] = {.lex_state = 17}, + [3281] = {.lex_state = 31}, [3282] = {.lex_state = 72}, - [3283] = {.lex_state = 72}, - [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 31}, + [3283] = {.lex_state = 8}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 72}, [3286] = {.lex_state = 17}, [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, - [3289] = {.lex_state = 17}, - [3290] = {.lex_state = 72}, - [3291] = {.lex_state = 72}, - [3292] = {.lex_state = 72}, + [3288] = {.lex_state = 72}, + [3289] = {.lex_state = 72}, + [3290] = {.lex_state = 17}, + [3291] = {.lex_state = 17}, + [3292] = {.lex_state = 17}, [3293] = {.lex_state = 72}, [3294] = {.lex_state = 72}, [3295] = {.lex_state = 72}, [3296] = {.lex_state = 72}, - [3297] = {.lex_state = 72}, + [3297] = {.lex_state = 17}, [3298] = {.lex_state = 72}, - [3299] = {.lex_state = 72}, + [3299] = {.lex_state = 17}, [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 7}, - [3302] = {.lex_state = 7}, + [3301] = {.lex_state = 72}, + [3302] = {.lex_state = 17}, [3303] = {.lex_state = 17}, [3304] = {.lex_state = 17}, [3305] = {.lex_state = 17}, [3306] = {.lex_state = 72}, [3307] = {.lex_state = 72}, [3308] = {.lex_state = 17}, - [3309] = {.lex_state = 17}, - [3310] = {.lex_state = 17}, + [3309] = {.lex_state = 72}, + [3310] = {.lex_state = 72}, [3311] = {.lex_state = 17}, [3312] = {.lex_state = 17}, - [3313] = {.lex_state = 72}, + [3313] = {.lex_state = 17}, [3314] = {.lex_state = 17}, - [3315] = {.lex_state = 72}, + [3315] = {.lex_state = 17}, [3316] = {.lex_state = 72}, [3317] = {.lex_state = 17}, [3318] = {.lex_state = 17}, [3319] = {.lex_state = 17}, [3320] = {.lex_state = 17}, - [3321] = {.lex_state = 17}, - [3322] = {.lex_state = 17}, - [3323] = {.lex_state = 17}, + [3321] = {.lex_state = 72}, + [3322] = {.lex_state = 72}, + [3323] = {.lex_state = 72}, [3324] = {.lex_state = 17}, [3325] = {.lex_state = 17}, [3326] = {.lex_state = 17}, @@ -13947,57 +13986,57 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3331] = {.lex_state = 17}, [3332] = {.lex_state = 17}, [3333] = {.lex_state = 17}, - [3334] = {.lex_state = 72}, - [3335] = {.lex_state = 72}, - [3336] = {.lex_state = 72}, - [3337] = {.lex_state = 72}, - [3338] = {.lex_state = 72}, - [3339] = {.lex_state = 72}, - [3340] = {.lex_state = 31}, + [3334] = {.lex_state = 17}, + [3335] = {.lex_state = 17}, + [3336] = {.lex_state = 17}, + [3337] = {.lex_state = 17}, + [3338] = {.lex_state = 17}, + [3339] = {.lex_state = 17}, + [3340] = {.lex_state = 72}, [3341] = {.lex_state = 72}, [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 17}, - [3344] = {.lex_state = 72}, + [3343] = {.lex_state = 72}, + [3344] = {.lex_state = 17}, [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 17}, - [3348] = {.lex_state = 17}, - [3349] = {.lex_state = 17}, - [3350] = {.lex_state = 72}, + [3347] = {.lex_state = 72}, + [3348] = {.lex_state = 23}, + [3349] = {.lex_state = 72}, + [3350] = {.lex_state = 17}, [3351] = {.lex_state = 17}, [3352] = {.lex_state = 72}, [3353] = {.lex_state = 72}, - [3354] = {.lex_state = 72}, - [3355] = {.lex_state = 8}, + [3354] = {.lex_state = 17}, + [3355] = {.lex_state = 72}, [3356] = {.lex_state = 72}, [3357] = {.lex_state = 17}, [3358] = {.lex_state = 72}, - [3359] = {.lex_state = 17}, + [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, - [3361] = {.lex_state = 72}, - [3362] = {.lex_state = 72}, - [3363] = {.lex_state = 72}, + [3361] = {.lex_state = 17}, + [3362] = {.lex_state = 17}, + [3363] = {.lex_state = 17}, [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 17}, - [3366] = {.lex_state = 72}, - [3367] = {.lex_state = 72}, + [3365] = {.lex_state = 72}, + [3366] = {.lex_state = 17}, + [3367] = {.lex_state = 31}, [3368] = {.lex_state = 72}, [3369] = {.lex_state = 72}, - [3370] = {.lex_state = 72}, + [3370] = {.lex_state = 31}, [3371] = {.lex_state = 72}, - [3372] = {.lex_state = 72}, + [3372] = {.lex_state = 17}, [3373] = {.lex_state = 72}, [3374] = {.lex_state = 72}, - [3375] = {.lex_state = 17}, + [3375] = {.lex_state = 72}, [3376] = {.lex_state = 72}, - [3377] = {.lex_state = 17}, + [3377] = {.lex_state = 72}, [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, - [3383] = {.lex_state = 17}, - [3384] = {.lex_state = 17}, + [3382] = {.lex_state = 72}, + [3383] = {.lex_state = 72}, + [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, [3387] = {.lex_state = 72}, @@ -14007,312 +14046,312 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3391] = {.lex_state = 72}, [3392] = {.lex_state = 72}, [3393] = {.lex_state = 72}, - [3394] = {.lex_state = 72}, + [3394] = {.lex_state = 72, .external_lex_state = 5}, [3395] = {.lex_state = 72}, [3396] = {.lex_state = 72}, [3397] = {.lex_state = 72}, - [3398] = {.lex_state = 17}, + [3398] = {.lex_state = 72}, [3399] = {.lex_state = 72}, - [3400] = {.lex_state = 20}, + [3400] = {.lex_state = 72}, [3401] = {.lex_state = 72}, [3402] = {.lex_state = 72}, [3403] = {.lex_state = 72}, [3404] = {.lex_state = 72}, [3405] = {.lex_state = 72}, - [3406] = {.lex_state = 17}, + [3406] = {.lex_state = 8}, [3407] = {.lex_state = 72}, [3408] = {.lex_state = 72}, [3409] = {.lex_state = 72}, - [3410] = {.lex_state = 17}, + [3410] = {.lex_state = 72}, [3411] = {.lex_state = 72}, [3412] = {.lex_state = 72}, [3413] = {.lex_state = 72}, - [3414] = {.lex_state = 72}, + [3414] = {.lex_state = 17}, [3415] = {.lex_state = 72}, - [3416] = {.lex_state = 72}, - [3417] = {.lex_state = 72}, + [3416] = {.lex_state = 17}, + [3417] = {.lex_state = 17}, [3418] = {.lex_state = 72}, [3419] = {.lex_state = 72}, [3420] = {.lex_state = 72}, - [3421] = {.lex_state = 72}, - [3422] = {.lex_state = 72}, + [3421] = {.lex_state = 31}, + [3422] = {.lex_state = 31}, [3423] = {.lex_state = 72}, [3424] = {.lex_state = 72}, - [3425] = {.lex_state = 72}, + [3425] = {.lex_state = 17}, [3426] = {.lex_state = 72}, - [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, + [3427] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, - [3431] = {.lex_state = 17}, - [3432] = {.lex_state = 72, .external_lex_state = 6}, + [3430] = {.lex_state = 72}, + [3431] = {.lex_state = 72}, + [3432] = {.lex_state = 72}, [3433] = {.lex_state = 72}, [3434] = {.lex_state = 72}, - [3435] = {.lex_state = 17}, - [3436] = {.lex_state = 72}, + [3435] = {.lex_state = 23, .external_lex_state = 6}, + [3436] = {.lex_state = 23, .external_lex_state = 6}, [3437] = {.lex_state = 72}, [3438] = {.lex_state = 17}, [3439] = {.lex_state = 72}, - [3440] = {.lex_state = 72}, + [3440] = {.lex_state = 17}, [3441] = {.lex_state = 72}, - [3442] = {.lex_state = 72}, + [3442] = {.lex_state = 23, .external_lex_state = 6}, [3443] = {.lex_state = 72}, [3444] = {.lex_state = 72}, - [3445] = {.lex_state = 17}, + [3445] = {.lex_state = 72}, [3446] = {.lex_state = 72}, - [3447] = {.lex_state = 17}, - [3448] = {.lex_state = 17}, + [3447] = {.lex_state = 72}, + [3448] = {.lex_state = 72}, [3449] = {.lex_state = 72}, - [3450] = {.lex_state = 17}, - [3451] = {.lex_state = 17}, + [3450] = {.lex_state = 72}, + [3451] = {.lex_state = 72}, [3452] = {.lex_state = 72}, [3453] = {.lex_state = 72}, [3454] = {.lex_state = 72}, - [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 17}, - [3457] = {.lex_state = 17}, - [3458] = {.lex_state = 72}, - [3459] = {.lex_state = 17}, + [3455] = {.lex_state = 17}, + [3456] = {.lex_state = 72}, + [3457] = {.lex_state = 72}, + [3458] = {.lex_state = 17}, + [3459] = {.lex_state = 31}, [3460] = {.lex_state = 17}, - [3461] = {.lex_state = 17}, - [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 17}, + [3461] = {.lex_state = 72}, + [3462] = {.lex_state = 17}, + [3463] = {.lex_state = 72}, [3464] = {.lex_state = 72}, [3465] = {.lex_state = 72}, [3466] = {.lex_state = 72}, [3467] = {.lex_state = 17}, - [3468] = {.lex_state = 17}, + [3468] = {.lex_state = 72}, [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, - [3471] = {.lex_state = 72}, - [3472] = {.lex_state = 17}, + [3470] = {.lex_state = 72}, + [3471] = {.lex_state = 17}, + [3472] = {.lex_state = 20}, [3473] = {.lex_state = 17}, [3474] = {.lex_state = 17}, [3475] = {.lex_state = 17}, - [3476] = {.lex_state = 72}, + [3476] = {.lex_state = 17}, [3477] = {.lex_state = 17}, - [3478] = {.lex_state = 17}, + [3478] = {.lex_state = 72}, [3479] = {.lex_state = 17}, - [3480] = {.lex_state = 17}, + [3480] = {.lex_state = 72}, [3481] = {.lex_state = 72}, [3482] = {.lex_state = 72}, [3483] = {.lex_state = 17}, [3484] = {.lex_state = 72}, - [3485] = {.lex_state = 72}, + [3485] = {.lex_state = 17}, [3486] = {.lex_state = 17}, [3487] = {.lex_state = 72}, [3488] = {.lex_state = 72}, [3489] = {.lex_state = 17}, - [3490] = {.lex_state = 72}, - [3491] = {.lex_state = 72}, + [3490] = {.lex_state = 17}, + [3491] = {.lex_state = 17}, [3492] = {.lex_state = 17}, [3493] = {.lex_state = 72}, - [3494] = {.lex_state = 72}, + [3494] = {.lex_state = 17}, [3495] = {.lex_state = 17}, - [3496] = {.lex_state = 72}, + [3496] = {.lex_state = 17}, [3497] = {.lex_state = 72}, - [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 17}, + [3498] = {.lex_state = 17}, + [3499] = {.lex_state = 23}, + [3500] = {.lex_state = 72}, [3501] = {.lex_state = 72}, [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 73}, - [3504] = {.lex_state = 72, .external_lex_state = 7}, + [3503] = {.lex_state = 17}, + [3504] = {.lex_state = 72}, [3505] = {.lex_state = 72}, - [3506] = {.lex_state = 17}, - [3507] = {.lex_state = 72, .external_lex_state = 8}, + [3506] = {.lex_state = 72}, + [3507] = {.lex_state = 72}, [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 17}, - [3510] = {.lex_state = 72}, - [3511] = {.lex_state = 73}, - [3512] = {.lex_state = 73}, - [3513] = {.lex_state = 72}, - [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 17}, - [3516] = {.lex_state = 17}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 20}, + [3511] = {.lex_state = 20}, + [3512] = {.lex_state = 72, .external_lex_state = 7}, + [3513] = {.lex_state = 17}, + [3514] = {.lex_state = 167}, + [3515] = {.lex_state = 72}, + [3516] = {.lex_state = 72}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, - [3519] = {.lex_state = 72}, + [3519] = {.lex_state = 17}, [3520] = {.lex_state = 72}, [3521] = {.lex_state = 72}, - [3522] = {.lex_state = 72}, + [3522] = {.lex_state = 17}, [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 17}, + [3524] = {.lex_state = 72}, [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 72}, + [3526] = {.lex_state = 72, .external_lex_state = 8}, [3527] = {.lex_state = 72}, [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 72}, + [3529] = {.lex_state = 20}, [3530] = {.lex_state = 72}, [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 23}, - [3533] = {.lex_state = 72}, + [3532] = {.lex_state = 17}, + [3533] = {.lex_state = 17}, [3534] = {.lex_state = 17}, [3535] = {.lex_state = 17}, [3536] = {.lex_state = 72}, [3537] = {.lex_state = 72}, [3538] = {.lex_state = 17}, [3539] = {.lex_state = 17}, - [3540] = {.lex_state = 72}, + [3540] = {.lex_state = 17}, [3541] = {.lex_state = 17}, - [3542] = {.lex_state = 20}, - [3543] = {.lex_state = 72}, + [3542] = {.lex_state = 72, .external_lex_state = 8}, + [3543] = {.lex_state = 17}, [3544] = {.lex_state = 72}, - [3545] = {.lex_state = 73}, - [3546] = {.lex_state = 17}, + [3545] = {.lex_state = 72}, + [3546] = {.lex_state = 72}, [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 17}, + [3548] = {.lex_state = 72}, [3549] = {.lex_state = 72}, - [3550] = {.lex_state = 17}, + [3550] = {.lex_state = 72}, [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, [3553] = {.lex_state = 72}, - [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 72}, + [3554] = {.lex_state = 17}, + [3555] = {.lex_state = 17}, [3556] = {.lex_state = 72}, - [3557] = {.lex_state = 73}, - [3558] = {.lex_state = 72, .external_lex_state = 8}, - [3559] = {.lex_state = 17}, - [3560] = {.lex_state = 73}, - [3561] = {.lex_state = 72}, - [3562] = {.lex_state = 17}, - [3563] = {.lex_state = 17}, - [3564] = {.lex_state = 72, .external_lex_state = 7}, + [3557] = {.lex_state = 72}, + [3558] = {.lex_state = 72}, + [3559] = {.lex_state = 72}, + [3560] = {.lex_state = 17}, + [3561] = {.lex_state = 17}, + [3562] = {.lex_state = 72}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 73}, [3565] = {.lex_state = 72}, [3566] = {.lex_state = 72}, - [3567] = {.lex_state = 17}, + [3567] = {.lex_state = 72}, [3568] = {.lex_state = 72}, - [3569] = {.lex_state = 17}, - [3570] = {.lex_state = 17}, - [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 17}, - [3573] = {.lex_state = 17}, - [3574] = {.lex_state = 17}, - [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72, .external_lex_state = 7}, - [3577] = {.lex_state = 72, .external_lex_state = 7}, + [3569] = {.lex_state = 72}, + [3570] = {.lex_state = 72}, + [3571] = {.lex_state = 17}, + [3572] = {.lex_state = 73}, + [3573] = {.lex_state = 72}, + [3574] = {.lex_state = 72}, + [3575] = {.lex_state = 17}, + [3576] = {.lex_state = 20}, + [3577] = {.lex_state = 72}, [3578] = {.lex_state = 72}, - [3579] = {.lex_state = 72}, - [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 17}, + [3579] = {.lex_state = 17}, + [3580] = {.lex_state = 72, .external_lex_state = 7}, + [3581] = {.lex_state = 72}, [3582] = {.lex_state = 72}, [3583] = {.lex_state = 72}, - [3584] = {.lex_state = 72}, + [3584] = {.lex_state = 17}, [3585] = {.lex_state = 72}, - [3586] = {.lex_state = 17}, + [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, - [3589] = {.lex_state = 17}, - [3590] = {.lex_state = 17}, - [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 72}, - [3593] = {.lex_state = 72}, + [3588] = {.lex_state = 72}, + [3589] = {.lex_state = 73}, + [3590] = {.lex_state = 72}, + [3591] = {.lex_state = 72, .external_lex_state = 9}, + [3592] = {.lex_state = 73}, + [3593] = {.lex_state = 72, .external_lex_state = 7}, [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 72}, + [3595] = {.lex_state = 72, .external_lex_state = 8}, [3596] = {.lex_state = 72}, - [3597] = {.lex_state = 72}, + [3597] = {.lex_state = 17}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, [3600] = {.lex_state = 72}, - [3601] = {.lex_state = 72}, - [3602] = {.lex_state = 17}, + [3601] = {.lex_state = 23}, + [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, [3604] = {.lex_state = 72}, [3605] = {.lex_state = 72}, - [3606] = {.lex_state = 72}, + [3606] = {.lex_state = 17}, [3607] = {.lex_state = 20}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 17}, - [3610] = {.lex_state = 20}, - [3611] = {.lex_state = 72}, + [3609] = {.lex_state = 72}, + [3610] = {.lex_state = 72}, + [3611] = {.lex_state = 17}, [3612] = {.lex_state = 72}, [3613] = {.lex_state = 72}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 72, .external_lex_state = 8}, - [3616] = {.lex_state = 72}, + [3615] = {.lex_state = 72}, + [3616] = {.lex_state = 17}, [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, - [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 20}, - [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, + [3619] = {.lex_state = 17}, + [3620] = {.lex_state = 17}, + [3621] = {.lex_state = 72}, + [3622] = {.lex_state = 72, .external_lex_state = 7}, + [3623] = {.lex_state = 72}, [3624] = {.lex_state = 72}, - [3625] = {.lex_state = 72, .external_lex_state = 9}, - [3626] = {.lex_state = 72}, - [3627] = {.lex_state = 72, .external_lex_state = 9}, + [3625] = {.lex_state = 72}, + [3626] = {.lex_state = 17}, + [3627] = {.lex_state = 17}, [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 72}, - [3630] = {.lex_state = 72}, - [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 72}, + [3629] = {.lex_state = 17}, + [3630] = {.lex_state = 17}, + [3631] = {.lex_state = 72, .external_lex_state = 9}, + [3632] = {.lex_state = 72, .external_lex_state = 8}, [3633] = {.lex_state = 72}, - [3634] = {.lex_state = 72}, + [3634] = {.lex_state = 17}, [3635] = {.lex_state = 72}, [3636] = {.lex_state = 72}, - [3637] = {.lex_state = 72, .external_lex_state = 7}, + [3637] = {.lex_state = 72}, [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 23}, - [3640] = {.lex_state = 17}, - [3641] = {.lex_state = 20}, - [3642] = {.lex_state = 8}, - [3643] = {.lex_state = 72}, + [3639] = {.lex_state = 72}, + [3640] = {.lex_state = 72}, + [3641] = {.lex_state = 72}, + [3642] = {.lex_state = 72}, + [3643] = {.lex_state = 17}, [3644] = {.lex_state = 17}, - [3645] = {.lex_state = 72}, + [3645] = {.lex_state = 17}, [3646] = {.lex_state = 72}, - [3647] = {.lex_state = 72}, - [3648] = {.lex_state = 72}, - [3649] = {.lex_state = 72}, + [3647] = {.lex_state = 8}, + [3648] = {.lex_state = 17}, + [3649] = {.lex_state = 17}, [3650] = {.lex_state = 72}, - [3651] = {.lex_state = 167}, - [3652] = {.lex_state = 17}, - [3653] = {.lex_state = 72}, + [3651] = {.lex_state = 72}, + [3652] = {.lex_state = 72}, + [3653] = {.lex_state = 73}, [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 17}, - [3656] = {.lex_state = 72}, + [3655] = {.lex_state = 72}, + [3656] = {.lex_state = 72, .external_lex_state = 8}, [3657] = {.lex_state = 72}, - [3658] = {.lex_state = 20}, + [3658] = {.lex_state = 72}, [3659] = {.lex_state = 72}, - [3660] = {.lex_state = 72}, + [3660] = {.lex_state = 17}, [3661] = {.lex_state = 17}, [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72}, [3664] = {.lex_state = 72}, - [3665] = {.lex_state = 72, .external_lex_state = 9}, - [3666] = {.lex_state = 20}, + [3665] = {.lex_state = 17}, + [3666] = {.lex_state = 72}, [3667] = {.lex_state = 72}, [3668] = {.lex_state = 72}, - [3669] = {.lex_state = 72}, + [3669] = {.lex_state = 17}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 17}, - [3672] = {.lex_state = 72}, - [3673] = {.lex_state = 17}, - [3674] = {.lex_state = 20}, + [3671] = {.lex_state = 72, .external_lex_state = 9}, + [3672] = {.lex_state = 20}, + [3673] = {.lex_state = 72}, + [3674] = {.lex_state = 72}, [3675] = {.lex_state = 72}, [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 17}, - [3678] = {.lex_state = 17}, - [3679] = {.lex_state = 72}, + [3677] = {.lex_state = 72}, + [3678] = {.lex_state = 72}, + [3679] = {.lex_state = 20}, [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 72}, - [3682] = {.lex_state = 17}, - [3683] = {.lex_state = 17}, + [3681] = {.lex_state = 20}, + [3682] = {.lex_state = 73}, + [3683] = {.lex_state = 72}, [3684] = {.lex_state = 72}, [3685] = {.lex_state = 72}, - [3686] = {.lex_state = 72, .external_lex_state = 9}, + [3686] = {.lex_state = 72}, [3687] = {.lex_state = 72}, [3688] = {.lex_state = 72}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 9}, - [3691] = {.lex_state = 72}, - [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72, .external_lex_state = 9}, + [3690] = {.lex_state = 72}, + [3691] = {.lex_state = 72, .external_lex_state = 7}, + [3692] = {.lex_state = 72, .external_lex_state = 9}, + [3693] = {.lex_state = 72}, [3694] = {.lex_state = 72}, [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 72}, + [3697] = {.lex_state = 72, .external_lex_state = 9}, [3698] = {.lex_state = 72}, - [3699] = {.lex_state = 72}, + [3699] = {.lex_state = 72, .external_lex_state = 9}, [3700] = {.lex_state = 72}, [3701] = {.lex_state = 72}, [3702] = {.lex_state = 72}, @@ -14321,123 +14360,131 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3705] = {.lex_state = 72}, [3706] = {.lex_state = 72}, [3707] = {.lex_state = 72}, - [3708] = {.lex_state = 17}, + [3708] = {.lex_state = 72}, [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 20}, - [3712] = {.lex_state = 72}, - [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 72, .external_lex_state = 8}, - [3716] = {.lex_state = 72, .external_lex_state = 8}, - [3717] = {.lex_state = 17}, + [3711] = {.lex_state = 72}, + [3712] = {.lex_state = 20}, + [3713] = {.lex_state = 17}, + [3714] = {.lex_state = 17}, + [3715] = {.lex_state = 72}, + [3716] = {.lex_state = 72}, + [3717] = {.lex_state = 20}, [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 20}, - [3720] = {.lex_state = 20}, + [3719] = {.lex_state = 23}, + [3720] = {.lex_state = 72}, [3721] = {.lex_state = 17}, [3722] = {.lex_state = 72}, [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72, .external_lex_state = 7}, + [3724] = {.lex_state = 20}, [3725] = {.lex_state = 20}, [3726] = {.lex_state = 17}, - [3727] = {.lex_state = 72}, + [3727] = {.lex_state = 73}, [3728] = {.lex_state = 17}, - [3729] = {.lex_state = 17}, - [3730] = {.lex_state = 17}, - [3731] = {.lex_state = 72}, - [3732] = {.lex_state = 17}, - [3733] = {.lex_state = 20}, - [3734] = {.lex_state = 17}, + [3729] = {.lex_state = 72}, + [3730] = {.lex_state = 20}, + [3731] = {.lex_state = 17}, + [3732] = {.lex_state = 72}, + [3733] = {.lex_state = 72}, + [3734] = {.lex_state = 72}, [3735] = {.lex_state = 72}, [3736] = {.lex_state = 72}, - [3737] = {.lex_state = 17}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 20}, + [3737] = {.lex_state = 8}, + [3738] = {.lex_state = 20}, + [3739] = {.lex_state = 72}, [3740] = {.lex_state = 72}, [3741] = {.lex_state = 72}, [3742] = {.lex_state = 72}, - [3743] = {.lex_state = 20}, - [3744] = {.lex_state = 20}, + [3743] = {.lex_state = 72}, + [3744] = {.lex_state = 72}, [3745] = {.lex_state = 20}, [3746] = {.lex_state = 72}, - [3747] = {.lex_state = 72}, + [3747] = {.lex_state = 20}, [3748] = {.lex_state = 72}, - [3749] = {.lex_state = 72}, + [3749] = {.lex_state = 20}, [3750] = {.lex_state = 72}, [3751] = {.lex_state = 72}, - [3752] = {.lex_state = 20}, + [3752] = {.lex_state = 72}, [3753] = {.lex_state = 72}, - [3754] = {.lex_state = 17}, - [3755] = {.lex_state = 72}, + [3754] = {.lex_state = 72}, + [3755] = {.lex_state = 73}, [3756] = {.lex_state = 72}, [3757] = {.lex_state = 17}, - [3758] = {.lex_state = 72}, + [3758] = {.lex_state = 20}, [3759] = {.lex_state = 72}, - [3760] = {.lex_state = 8}, - [3761] = {.lex_state = 20}, + [3760] = {.lex_state = 17}, + [3761] = {.lex_state = 17}, [3762] = {.lex_state = 72}, - [3763] = {.lex_state = 73}, - [3764] = {.lex_state = 72}, - [3765] = {.lex_state = 17}, - [3766] = {.lex_state = 8}, + [3763] = {.lex_state = 72}, + [3764] = {.lex_state = 20}, + [3765] = {.lex_state = 72}, + [3766] = {.lex_state = 17}, [3767] = {.lex_state = 72}, - [3768] = {.lex_state = 20}, - [3769] = {.lex_state = 72}, - [3770] = {.lex_state = 72}, - [3771] = {.lex_state = 20}, - [3772] = {.lex_state = 72}, + [3768] = {.lex_state = 17}, + [3769] = {.lex_state = 72, .external_lex_state = 7}, + [3770] = {.lex_state = 8}, + [3771] = {.lex_state = 17}, + [3772] = {.lex_state = 17}, [3773] = {.lex_state = 72}, [3774] = {.lex_state = 20}, - [3775] = {.lex_state = 17}, + [3775] = {.lex_state = 72}, [3776] = {.lex_state = 72}, [3777] = {.lex_state = 20}, - [3778] = {.lex_state = 20}, + [3778] = {.lex_state = 72}, [3779] = {.lex_state = 72}, - [3780] = {.lex_state = 72}, - [3781] = {.lex_state = 20}, - [3782] = {.lex_state = 20}, + [3780] = {.lex_state = 20}, + [3781] = {.lex_state = 72}, + [3782] = {.lex_state = 72}, [3783] = {.lex_state = 20}, - [3784] = {.lex_state = 72}, - [3785] = {.lex_state = 17}, - [3786] = {.lex_state = 17}, - [3787] = {.lex_state = 72}, - [3788] = {.lex_state = 17}, - [3789] = {.lex_state = 72}, - [3790] = {.lex_state = 73}, - [3791] = {.lex_state = 72}, - [3792] = {.lex_state = 17}, - [3793] = {.lex_state = 72}, - [3794] = {.lex_state = 72}, - [3795] = {.lex_state = 17}, - [3796] = {.lex_state = 17}, + [3784] = {.lex_state = 20}, + [3785] = {.lex_state = 72}, + [3786] = {.lex_state = 20}, + [3787] = {.lex_state = 20}, + [3788] = {.lex_state = 20}, + [3789] = {.lex_state = 20}, + [3790] = {.lex_state = 72}, + [3791] = {.lex_state = 17}, + [3792] = {.lex_state = 72}, + [3793] = {.lex_state = 17}, + [3794] = {.lex_state = 17}, + [3795] = {.lex_state = 72}, + [3796] = {.lex_state = 72}, [3797] = {.lex_state = 72}, - [3798] = {.lex_state = 72}, + [3798] = {.lex_state = 17}, [3799] = {.lex_state = 72}, [3800] = {.lex_state = 72}, - [3801] = {.lex_state = 72}, - [3802] = {.lex_state = 72}, - [3803] = {.lex_state = 17}, - [3804] = {.lex_state = 72}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 17}, + [3803] = {.lex_state = 72}, + [3804] = {.lex_state = 17}, [3805] = {.lex_state = 72}, [3806] = {.lex_state = 17}, [3807] = {.lex_state = 17}, - [3808] = {.lex_state = 17}, + [3808] = {.lex_state = 72}, [3809] = {.lex_state = 17}, - [3810] = {.lex_state = 17}, + [3810] = {.lex_state = 72}, [3811] = {.lex_state = 17}, [3812] = {.lex_state = 72}, - [3813] = {.lex_state = 72}, - [3814] = {.lex_state = 20}, + [3813] = {.lex_state = 17}, + [3814] = {.lex_state = 72}, [3815] = {.lex_state = 17}, [3816] = {.lex_state = 72}, - [3817] = {.lex_state = 72}, - [3818] = {(TSStateId)(-1),}, - [3819] = {(TSStateId)(-1),}, - [3820] = {(TSStateId)(-1),}, - [3821] = {(TSStateId)(-1),}, - [3822] = {(TSStateId)(-1),}, - [3823] = {(TSStateId)(-1),}, - [3824] = {(TSStateId)(-1),}, + [3817] = {.lex_state = 17}, + [3818] = {.lex_state = 72}, + [3819] = {.lex_state = 72}, + [3820] = {.lex_state = 72}, + [3821] = {.lex_state = 17}, + [3822] = {.lex_state = 17}, + [3823] = {.lex_state = 17}, + [3824] = {.lex_state = 17}, + [3825] = {.lex_state = 72}, + [3826] = {(TSStateId)(-1),}, + [3827] = {(TSStateId)(-1),}, + [3828] = {(TSStateId)(-1),}, + [3829] = {(TSStateId)(-1),}, + [3830] = {(TSStateId)(-1),}, + [3831] = {(TSStateId)(-1),}, + [3832] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14534,6 +14581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), [anon_sym_await] = ACTIONS(1), + [anon_sym_become] = ACTIONS(1), [anon_sym_break] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), @@ -14598,83 +14646,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3656), - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym_source_file] = STATE(3785), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14710,134 +14759,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(35), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_shebang] = ACTIONS(109), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_shebang] = ACTIONS(111), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(2)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1932), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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), @@ -14863,136 +14914,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(3)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15018,130 +15071,132 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(4)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [ts_builtin_sym_end] = ACTIONS(127), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15173,291 +15228,295 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(5)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [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_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(123), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [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_become] = ACTIONS(181), + [anon_sym_break] = ACTIONS(184), + [anon_sym_const] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(190), + [anon_sym_default] = ACTIONS(193), + [anon_sym_enum] = ACTIONS(196), + [anon_sym_fn] = ACTIONS(199), + [anon_sym_for] = ACTIONS(202), + [anon_sym_gen] = ACTIONS(205), + [anon_sym_if] = ACTIONS(208), + [anon_sym_impl] = ACTIONS(211), + [anon_sym_let] = ACTIONS(214), + [anon_sym_loop] = ACTIONS(217), + [anon_sym_match] = ACTIONS(220), + [anon_sym_mod] = ACTIONS(223), + [anon_sym_pub] = ACTIONS(226), + [anon_sym_return] = ACTIONS(229), + [anon_sym_static] = ACTIONS(232), + [anon_sym_struct] = ACTIONS(235), + [anon_sym_trait] = ACTIONS(238), + [anon_sym_type] = ACTIONS(241), + [anon_sym_union] = ACTIONS(244), + [anon_sym_unsafe] = ACTIONS(247), + [anon_sym_use] = ACTIONS(250), + [anon_sym_while] = ACTIONS(253), + [anon_sym_extern] = ACTIONS(256), + [anon_sym_raw] = ACTIONS(259), + [anon_sym_yield] = ACTIONS(262), + [anon_sym_move] = ACTIONS(265), + [anon_sym_try] = ACTIONS(268), + [sym_integer_literal] = ACTIONS(271), + [aux_sym_string_literal_token1] = ACTIONS(274), + [sym_char_literal] = ACTIONS(271), + [anon_sym_true] = ACTIONS(277), + [anon_sym_false] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(280), + [sym_super] = ACTIONS(283), + [sym_crate] = ACTIONS(286), + [sym_metavariable] = ACTIONS(289), + [sym__raw_string_literal_start] = ACTIONS(292), + [sym_float_literal] = ACTIONS(271), }, [STATE(6)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(295), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15483,291 +15542,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(7)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [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_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_raw] = ACTIONS(256), - [anon_sym_yield] = ACTIONS(259), - [anon_sym_move] = ACTIONS(262), - [anon_sym_try] = ACTIONS(265), - [sym_integer_literal] = ACTIONS(268), - [aux_sym_string_literal_token1] = ACTIONS(271), - [sym_char_literal] = ACTIONS(268), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(277), - [sym_super] = ACTIONS(280), - [sym_crate] = ACTIONS(283), - [sym_metavariable] = ACTIONS(286), - [sym__raw_string_literal_start] = ACTIONS(289), - [sym_float_literal] = ACTIONS(268), - }, - [STATE(8)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(419), - [sym_match_expression] = STATE(419), - [sym_while_expression] = STATE(419), - [sym_loop_expression] = STATE(419), - [sym_for_expression] = STATE(419), - [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(419), - [sym_async_block] = STATE(419), - [sym_gen_block] = STATE(419), - [sym_try_block] = STATE(419), - [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(297), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15793,136 +15699,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(9)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [STATE(8)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(9), - [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [ts_builtin_sym_end] = ACTIONS(299), [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_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15948,136 +15856,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(10)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [STATE(9)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(10), - [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(9), + [sym_block_comment] = STATE(9), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16103,136 +16013,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(11)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [STATE(10)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(11), - [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(10), + [sym_block_comment] = STATE(10), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(303), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16258,129 +16170,131 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(12)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(428), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [STATE(11)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(431), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(12), - [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(11), + [sym_block_comment] = STATE(11), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -16416,133 +16330,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_raw] = ACTIONS(256), - [anon_sym_yield] = ACTIONS(259), - [anon_sym_move] = ACTIONS(262), - [anon_sym_try] = ACTIONS(265), - [sym_integer_literal] = ACTIONS(268), - [aux_sym_string_literal_token1] = ACTIONS(271), - [sym_char_literal] = ACTIONS(268), - [anon_sym_true] = ACTIONS(274), - [anon_sym_false] = ACTIONS(274), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(277), - [sym_super] = ACTIONS(280), - [sym_crate] = ACTIONS(283), - [sym_metavariable] = ACTIONS(286), - [sym__raw_string_literal_start] = ACTIONS(289), - [sym_float_literal] = ACTIONS(268), + [anon_sym_become] = ACTIONS(181), + [anon_sym_break] = ACTIONS(184), + [anon_sym_const] = ACTIONS(187), + [anon_sym_continue] = ACTIONS(190), + [anon_sym_default] = ACTIONS(193), + [anon_sym_enum] = ACTIONS(196), + [anon_sym_fn] = ACTIONS(199), + [anon_sym_for] = ACTIONS(202), + [anon_sym_gen] = ACTIONS(205), + [anon_sym_if] = ACTIONS(208), + [anon_sym_impl] = ACTIONS(211), + [anon_sym_let] = ACTIONS(214), + [anon_sym_loop] = ACTIONS(217), + [anon_sym_match] = ACTIONS(220), + [anon_sym_mod] = ACTIONS(223), + [anon_sym_pub] = ACTIONS(226), + [anon_sym_return] = ACTIONS(229), + [anon_sym_static] = ACTIONS(232), + [anon_sym_struct] = ACTIONS(235), + [anon_sym_trait] = ACTIONS(238), + [anon_sym_type] = ACTIONS(241), + [anon_sym_union] = ACTIONS(244), + [anon_sym_unsafe] = ACTIONS(247), + [anon_sym_use] = ACTIONS(250), + [anon_sym_while] = ACTIONS(253), + [anon_sym_extern] = ACTIONS(256), + [anon_sym_raw] = ACTIONS(259), + [anon_sym_yield] = ACTIONS(262), + [anon_sym_move] = ACTIONS(265), + [anon_sym_try] = ACTIONS(268), + [sym_integer_literal] = ACTIONS(271), + [aux_sym_string_literal_token1] = ACTIONS(274), + [sym_char_literal] = ACTIONS(271), + [anon_sym_true] = ACTIONS(277), + [anon_sym_false] = ACTIONS(277), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(280), + [sym_super] = ACTIONS(283), + [sym_crate] = ACTIONS(286), + [sym_metavariable] = ACTIONS(289), + [sym__raw_string_literal_start] = ACTIONS(292), + [sym_float_literal] = ACTIONS(271), + }, + [STATE(12)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(419), + [sym_match_expression] = STATE(419), + [sym_while_expression] = STATE(419), + [sym_loop_expression] = STATE(419), + [sym_for_expression] = STATE(419), + [sym_const_block] = STATE(419), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(419), + [sym_async_block] = STATE(419), + [sym_gen_block] = STATE(419), + [sym_try_block] = STATE(419), + [sym_block] = STATE(419), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(12), + [sym_block_comment] = STATE(12), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [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(305), + [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(125), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(13)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1899), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(307), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16568,136 +16641,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(14)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(309), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16723,136 +16798,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(15)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16878,136 +16955,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(16)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1916), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(313), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17033,136 +17112,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(17)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(315), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17188,136 +17269,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(18)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1918), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(317), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17343,136 +17426,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(19)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(319), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17498,136 +17583,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(20)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1924), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(321), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17653,136 +17740,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(21)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(323), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17808,136 +17897,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(22)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17963,136 +18054,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(23)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(327), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18118,136 +18211,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(24)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(329), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18273,136 +18368,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(25)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(331), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18428,136 +18525,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(26)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1979), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [ts_builtin_sym_end] = ACTIONS(299), [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_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18583,136 +18682,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(27)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1933), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18738,136 +18839,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(28)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(335), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18893,136 +18996,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(29)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1936), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19048,136 +19153,452 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(30)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [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(339), + [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(125), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(31)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(419), + [sym_match_expression] = STATE(419), + [sym_while_expression] = STATE(419), + [sym_loop_expression] = STATE(419), + [sym_for_expression] = STATE(419), + [sym_const_block] = STATE(419), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(419), + [sym_async_block] = STATE(419), + [sym_gen_block] = STATE(419), + [sym_try_block] = STATE(419), + [sym_block] = STATE(419), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [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(341), + [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(125), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(32)] = { + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(419), + [sym_match_expression] = STATE(419), + [sym_while_expression] = STATE(419), + [sym_loop_expression] = STATE(419), + [sym_for_expression] = STATE(419), + [sym_const_block] = STATE(419), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(419), + [sym_async_block] = STATE(419), + [sym_gen_block] = STATE(419), + [sym_try_block] = STATE(419), + [sym_block] = STATE(419), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(334), + [anon_sym_RBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19203,446 +19624,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(31)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(419), - [sym_match_expression] = STATE(419), - [sym_while_expression] = STATE(419), - [sym_loop_expression] = STATE(419), - [sym_for_expression] = STATE(419), - [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(419), - [sym_async_block] = STATE(419), - [sym_gen_block] = STATE(419), - [sym_try_block] = STATE(419), - [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [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(336), - [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(123), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(32)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(419), - [sym_match_expression] = STATE(419), - [sym_while_expression] = STATE(419), - [sym_loop_expression] = STATE(419), - [sym_for_expression] = STATE(419), - [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(419), - [sym_async_block] = STATE(419), - [sym_gen_block] = STATE(419), - [sym_try_block] = STATE(419), - [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [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(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_POUND] = ACTIONS(123), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(33)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(340), + [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19668,136 +19781,138 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(34)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym__statement] = STATE(732), + [sym_empty_statement] = STATE(757), + [sym_expression_statement] = STATE(757), + [sym_macro_definition] = STATE(757), + [sym_attribute_item] = STATE(757), + [sym_inner_attribute_item] = STATE(757), + [sym_mod_item] = STATE(757), + [sym_foreign_mod_item] = STATE(757), + [sym_struct_item] = STATE(757), + [sym_union_item] = STATE(757), + [sym_enum_item] = STATE(757), + [sym_extern_crate_declaration] = STATE(757), + [sym_const_item] = STATE(757), + [sym_static_item] = STATE(757), + [sym_type_item] = STATE(757), + [sym_function_item] = STATE(757), + [sym_function_signature_item] = STATE(757), + [sym_function_modifiers] = STATE(3533), + [sym_impl_item] = STATE(757), + [sym_trait_item] = STATE(757), + [sym_associated_type] = STATE(757), + [sym_let_declaration] = STATE(757), + [sym_use_declaration] = STATE(757), + [sym_extern_modifier] = STATE(2260), + [sym_visibility_modifier] = STATE(2037), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(418), + [sym_scoped_identifier] = STATE(1615), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3607), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2316), [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(342), + [anon_sym_RBRACE] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19823,114 +19938,116 @@ 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(123), + [anon_sym_POUND] = ACTIONS(125), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [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_raw] = ACTIONS(91), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(97), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(115), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_fn] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_gen] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_impl] = ACTIONS(61), + [anon_sym_let] = ACTIONS(63), + [anon_sym_loop] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_mod] = ACTIONS(69), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(75), + [anon_sym_struct] = ACTIONS(77), + [anon_sym_trait] = ACTIONS(79), + [anon_sym_type] = ACTIONS(81), + [anon_sym_union] = ACTIONS(83), + [anon_sym_unsafe] = ACTIONS(85), + [anon_sym_use] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), + [anon_sym_extern] = ACTIONS(91), + [anon_sym_raw] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(99), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(117), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(346), - [anon_sym_LPAREN] = ACTIONS(346), - [anon_sym_RPAREN] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(346), - [anon_sym_RBRACK] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_QMARK] = ACTIONS(346), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_RBRACK] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(351), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19948,137 +20065,139 @@ 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(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(352), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(346), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COMMA] = ACTIONS(346), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(351), + [anon_sym_DASH_EQ] = ACTIONS(351), + [anon_sym_STAR_EQ] = ACTIONS(351), + [anon_sym_SLASH_EQ] = ACTIONS(351), + [anon_sym_PERCENT_EQ] = ACTIONS(351), + [anon_sym_CARET_EQ] = ACTIONS(351), + [anon_sym_AMP_EQ] = ACTIONS(351), + [anon_sym_PIPE_EQ] = ACTIONS(351), + [anon_sym_LT_LT_EQ] = ACTIONS(351), + [anon_sym_GT_GT_EQ] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(352), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(352), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(357), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(357), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(380), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(385), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(380), + [anon_sym_RPAREN] = ACTIONS(385), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(380), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(354), - [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(385), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20096,137 +20215,139 @@ 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(354), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COMMA] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [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(393), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(395), + [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(382), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(382), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(387), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_RBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_RBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20244,137 +20365,139 @@ 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(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(394), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(399), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(396), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_RPAREN] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_RBRACK] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20392,137 +20515,139 @@ 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(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COMMA] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(400), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(398), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(405), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(392), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_RPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_RBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20540,137 +20665,139 @@ 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(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COMMA] = ACTIONS(392), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(394), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(409), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(402), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(411), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_RBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_RPAREN] = ACTIONS(411), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(359), + [anon_sym_QMARK] = ACTIONS(411), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20688,137 +20815,139 @@ 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(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(359), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COMMA] = ACTIONS(411), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(413), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_RBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_RBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20836,137 +20965,139 @@ 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(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COMMA] = ACTIONS(407), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(409), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(406), + [sym_identifier] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(354), - [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_RBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20984,11762 +21115,11879 @@ 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(354), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COMMA] = ACTIONS(403), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(408), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_else] = ACTIONS(405), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(352), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(346), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(420), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(419), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(351), + [anon_sym_DASH_EQ] = ACTIONS(351), + [anon_sym_STAR_EQ] = ACTIONS(351), + [anon_sym_SLASH_EQ] = ACTIONS(351), + [anon_sym_PERCENT_EQ] = ACTIONS(351), + [anon_sym_CARET_EQ] = ACTIONS(351), + [anon_sym_AMP_EQ] = ACTIONS(351), + [anon_sym_PIPE_EQ] = ACTIONS(351), + [anon_sym_LT_LT_EQ] = ACTIONS(351), + [anon_sym_GT_GT_EQ] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(352), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_as] = ACTIONS(357), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(352), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(346), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(476), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(385), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(391), + [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(393), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(352), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(351), + [anon_sym_DASH_EQ] = ACTIONS(351), + [anon_sym_STAR_EQ] = ACTIONS(351), + [anon_sym_SLASH_EQ] = ACTIONS(351), + [anon_sym_PERCENT_EQ] = ACTIONS(351), + [anon_sym_CARET_EQ] = ACTIONS(351), + [anon_sym_AMP_EQ] = ACTIONS(351), + [anon_sym_PIPE_EQ] = ACTIONS(351), + [anon_sym_LT_LT_EQ] = ACTIONS(351), + [anon_sym_GT_GT_EQ] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(357), + [anon_sym_as] = ACTIONS(357), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(47)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_LBRACE] = ACTIONS(351), + [anon_sym_COLON] = ACTIONS(355), + [anon_sym_PLUS] = ACTIONS(357), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_QMARK] = ACTIONS(351), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(357), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_PERCENT] = ACTIONS(357), + [anon_sym_CARET] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_PIPE] = ACTIONS(357), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_LT_LT] = ACTIONS(357), + [anon_sym_GT_GT] = ACTIONS(357), + [anon_sym_PLUS_EQ] = ACTIONS(351), + [anon_sym_DASH_EQ] = ACTIONS(351), + [anon_sym_STAR_EQ] = ACTIONS(351), + [anon_sym_SLASH_EQ] = ACTIONS(351), + [anon_sym_PERCENT_EQ] = ACTIONS(351), + [anon_sym_CARET_EQ] = ACTIONS(351), + [anon_sym_AMP_EQ] = ACTIONS(351), + [anon_sym_PIPE_EQ] = ACTIONS(351), + [anon_sym_LT_LT_EQ] = ACTIONS(351), + [anon_sym_GT_GT_EQ] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(357), + [anon_sym_EQ_EQ] = ACTIONS(351), + [anon_sym_BANG_EQ] = ACTIONS(351), + [anon_sym_GT] = ACTIONS(357), + [anon_sym_LT] = ACTIONS(357), + [anon_sym_GT_EQ] = ACTIONS(351), + [anon_sym_LT_EQ] = ACTIONS(351), + [anon_sym_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(351), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(357), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(48)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(420), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(411), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(481), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(49)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(420), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(50)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(420), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(51)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(352), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(346), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(352), - [anon_sym_as] = ACTIONS(352), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(420), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_EQ_GT] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1910), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(404), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1911), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(394), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(539), + [anon_sym_PIPE] = ACTIONS(391), + [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(393), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(404), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(405), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(403), + [anon_sym_LBRACK] = ACTIONS(403), + [anon_sym_LBRACE] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(405), + [anon_sym_STAR] = ACTIONS(405), + [anon_sym_QMARK] = ACTIONS(403), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(405), + [anon_sym_SLASH] = ACTIONS(405), + [anon_sym_PERCENT] = ACTIONS(405), + [anon_sym_CARET] = ACTIONS(405), + [anon_sym_BANG] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(405), + [anon_sym_PIPE] = ACTIONS(405), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(405), + [anon_sym_GT_GT] = ACTIONS(405), + [anon_sym_PLUS_EQ] = ACTIONS(403), + [anon_sym_DASH_EQ] = ACTIONS(403), + [anon_sym_STAR_EQ] = ACTIONS(403), + [anon_sym_SLASH_EQ] = ACTIONS(403), + [anon_sym_PERCENT_EQ] = ACTIONS(403), + [anon_sym_CARET_EQ] = ACTIONS(403), + [anon_sym_AMP_EQ] = ACTIONS(403), + [anon_sym_PIPE_EQ] = ACTIONS(403), + [anon_sym_LT_LT_EQ] = ACTIONS(403), + [anon_sym_GT_GT_EQ] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(405), + [anon_sym_EQ_EQ] = ACTIONS(403), + [anon_sym_BANG_EQ] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(405), + [anon_sym_LT] = ACTIONS(405), + [anon_sym_GT_EQ] = ACTIONS(403), + [anon_sym_LT_EQ] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT] = ACTIONS(405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(405), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(51), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(398), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(407), + [anon_sym_LBRACK] = ACTIONS(407), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_PLUS] = ACTIONS(409), + [anon_sym_STAR] = ACTIONS(409), + [anon_sym_QMARK] = ACTIONS(407), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(409), + [anon_sym_SLASH] = ACTIONS(409), + [anon_sym_PERCENT] = ACTIONS(409), + [anon_sym_CARET] = ACTIONS(409), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(409), + [anon_sym_PIPE] = ACTIONS(409), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [anon_sym_LT_LT] = ACTIONS(409), + [anon_sym_GT_GT] = ACTIONS(409), + [anon_sym_PLUS_EQ] = ACTIONS(407), + [anon_sym_DASH_EQ] = ACTIONS(407), + [anon_sym_STAR_EQ] = ACTIONS(407), + [anon_sym_SLASH_EQ] = ACTIONS(407), + [anon_sym_PERCENT_EQ] = ACTIONS(407), + [anon_sym_CARET_EQ] = ACTIONS(407), + [anon_sym_AMP_EQ] = ACTIONS(407), + [anon_sym_PIPE_EQ] = ACTIONS(407), + [anon_sym_LT_LT_EQ] = ACTIONS(407), + [anon_sym_GT_GT_EQ] = ACTIONS(407), + [anon_sym_EQ] = ACTIONS(409), + [anon_sym_EQ_EQ] = ACTIONS(407), + [anon_sym_BANG_EQ] = ACTIONS(407), + [anon_sym_GT] = ACTIONS(409), + [anon_sym_LT] = ACTIONS(409), + [anon_sym_GT_EQ] = ACTIONS(407), + [anon_sym_LT_EQ] = ACTIONS(407), + [anon_sym_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(407), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(409), + [anon_sym_as] = ACTIONS(409), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(399), + [anon_sym_PIPE] = ACTIONS(399), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(399), + [anon_sym_as] = ACTIONS(399), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), - [anon_sym_LBRACE] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(400), - [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(413), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(411), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(413), + [anon_sym_PERCENT] = ACTIONS(413), + [anon_sym_CARET] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(391), + [anon_sym_AMP_AMP] = ACTIONS(411), + [anon_sym_PIPE_PIPE] = ACTIONS(411), + [anon_sym_LT_LT] = ACTIONS(413), + [anon_sym_GT_GT] = ACTIONS(413), + [anon_sym_PLUS_EQ] = ACTIONS(411), + [anon_sym_DASH_EQ] = ACTIONS(411), + [anon_sym_STAR_EQ] = ACTIONS(411), + [anon_sym_SLASH_EQ] = ACTIONS(411), + [anon_sym_PERCENT_EQ] = ACTIONS(411), + [anon_sym_CARET_EQ] = ACTIONS(411), + [anon_sym_AMP_EQ] = ACTIONS(411), + [anon_sym_PIPE_EQ] = ACTIONS(411), + [anon_sym_LT_LT_EQ] = ACTIONS(411), + [anon_sym_GT_GT_EQ] = ACTIONS(411), + [anon_sym_EQ] = ACTIONS(413), + [anon_sym_EQ_EQ] = ACTIONS(411), + [anon_sym_BANG_EQ] = ACTIONS(411), + [anon_sym_GT] = ACTIONS(413), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(411), + [anon_sym_LT_EQ] = ACTIONS(411), + [anon_sym_DOT] = ACTIONS(413), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(411), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(413), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_PLUS] = ACTIONS(387), + [anon_sym_STAR] = ACTIONS(489), + [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_SLASH] = ACTIONS(387), + [anon_sym_PERCENT] = ACTIONS(387), + [anon_sym_CARET] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(489), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_PIPE] = ACTIONS(391), + [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(393), + [anon_sym_GT_EQ] = ACTIONS(385), + [anon_sym_LT_EQ] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT] = ACTIONS(545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_as] = ACTIONS(387), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(67)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(536), - [anon_sym_SEMI] = ACTIONS(539), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_LBRACK] = ACTIONS(547), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_LBRACE] = ACTIONS(550), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_EQ_GT] = ACTIONS(539), - [anon_sym_COLON] = ACTIONS(553), - [anon_sym_DOLLAR] = ACTIONS(556), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(553), - [anon_sym_QMARK] = ACTIONS(539), - [anon_sym_u8] = ACTIONS(536), - [anon_sym_i8] = ACTIONS(536), - [anon_sym_u16] = ACTIONS(536), - [anon_sym_i16] = ACTIONS(536), - [anon_sym_u32] = ACTIONS(536), - [anon_sym_i32] = ACTIONS(536), - [anon_sym_u64] = ACTIONS(536), - [anon_sym_i64] = ACTIONS(536), - [anon_sym_u128] = ACTIONS(536), - [anon_sym_i128] = ACTIONS(536), - [anon_sym_isize] = ACTIONS(536), - [anon_sym_usize] = ACTIONS(536), - [anon_sym_f32] = ACTIONS(536), - [anon_sym_f64] = ACTIONS(536), - [anon_sym_bool] = ACTIONS(536), - [anon_sym_str] = ACTIONS(536), - [anon_sym_char] = ACTIONS(536), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_SLASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(553), - [anon_sym_CARET] = ACTIONS(553), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_AMP] = ACTIONS(553), - [anon_sym_PIPE] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE_PIPE] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(553), - [anon_sym_GT_GT] = ACTIONS(553), - [anon_sym_PLUS_EQ] = ACTIONS(539), - [anon_sym_DASH_EQ] = ACTIONS(539), - [anon_sym_STAR_EQ] = ACTIONS(539), - [anon_sym_SLASH_EQ] = ACTIONS(539), - [anon_sym_PERCENT_EQ] = ACTIONS(539), - [anon_sym_CARET_EQ] = ACTIONS(539), - [anon_sym_AMP_EQ] = ACTIONS(539), - [anon_sym_PIPE_EQ] = ACTIONS(539), - [anon_sym_LT_LT_EQ] = ACTIONS(539), - [anon_sym_GT_GT_EQ] = ACTIONS(539), - [anon_sym_EQ] = ACTIONS(553), - [anon_sym_EQ_EQ] = ACTIONS(539), - [anon_sym_BANG_EQ] = ACTIONS(539), - [anon_sym_GT] = ACTIONS(553), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT_EQ] = ACTIONS(539), - [anon_sym_LT_EQ] = ACTIONS(539), - [anon_sym_AT] = ACTIONS(539), - [anon_sym__] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(553), - [anon_sym_DOT_DOT] = ACTIONS(553), - [anon_sym_DOT_DOT_DOT] = ACTIONS(539), - [anon_sym_DOT_DOT_EQ] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_COLON_COLON] = ACTIONS(539), - [anon_sym_DASH_GT] = ACTIONS(539), - [anon_sym_POUND] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(536), - [anon_sym_as] = ACTIONS(536), - [anon_sym_async] = ACTIONS(536), - [anon_sym_await] = ACTIONS(536), - [anon_sym_break] = ACTIONS(536), - [anon_sym_const] = ACTIONS(536), - [anon_sym_continue] = ACTIONS(536), - [anon_sym_default] = ACTIONS(536), - [anon_sym_enum] = ACTIONS(536), - [anon_sym_fn] = ACTIONS(536), - [anon_sym_for] = ACTIONS(536), - [anon_sym_gen] = ACTIONS(536), - [anon_sym_if] = ACTIONS(536), - [anon_sym_impl] = ACTIONS(536), - [anon_sym_let] = ACTIONS(536), - [anon_sym_loop] = ACTIONS(536), - [anon_sym_match] = ACTIONS(536), - [anon_sym_mod] = ACTIONS(536), - [anon_sym_pub] = ACTIONS(536), - [anon_sym_return] = ACTIONS(536), - [anon_sym_static] = ACTIONS(536), - [anon_sym_struct] = ACTIONS(536), - [anon_sym_trait] = ACTIONS(536), - [anon_sym_type] = ACTIONS(536), - [anon_sym_union] = ACTIONS(536), - [anon_sym_unsafe] = ACTIONS(536), - [anon_sym_use] = ACTIONS(536), - [anon_sym_where] = ACTIONS(536), - [anon_sym_while] = ACTIONS(536), - [sym_mutable_specifier] = ACTIONS(536), - [sym_integer_literal] = ACTIONS(559), - [aux_sym_string_literal_token1] = ACTIONS(562), - [sym_char_literal] = ACTIONS(559), - [anon_sym_true] = ACTIONS(565), - [anon_sym_false] = ACTIONS(565), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(536), - [sym_super] = ACTIONS(536), - [sym_crate] = ACTIONS(536), - [sym_metavariable] = ACTIONS(568), - [sym__raw_string_literal_start] = ACTIONS(571), - [sym_float_literal] = ACTIONS(559), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(547), + [anon_sym_SEMI] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(561), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_EQ_GT] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(550), + [anon_sym_u8] = ACTIONS(547), + [anon_sym_i8] = ACTIONS(547), + [anon_sym_u16] = ACTIONS(547), + [anon_sym_i16] = ACTIONS(547), + [anon_sym_u32] = ACTIONS(547), + [anon_sym_i32] = ACTIONS(547), + [anon_sym_u64] = ACTIONS(547), + [anon_sym_i64] = ACTIONS(547), + [anon_sym_u128] = ACTIONS(547), + [anon_sym_i128] = ACTIONS(547), + [anon_sym_isize] = ACTIONS(547), + [anon_sym_usize] = ACTIONS(547), + [anon_sym_f32] = ACTIONS(547), + [anon_sym_f64] = ACTIONS(547), + [anon_sym_bool] = ACTIONS(547), + [anon_sym_str] = ACTIONS(547), + [anon_sym_char] = ACTIONS(547), + [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(550), + [anon_sym_PIPE_PIPE] = ACTIONS(550), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(550), + [anon_sym_DASH_EQ] = ACTIONS(550), + [anon_sym_STAR_EQ] = ACTIONS(550), + [anon_sym_SLASH_EQ] = ACTIONS(550), + [anon_sym_PERCENT_EQ] = ACTIONS(550), + [anon_sym_CARET_EQ] = ACTIONS(550), + [anon_sym_AMP_EQ] = ACTIONS(550), + [anon_sym_PIPE_EQ] = ACTIONS(550), + [anon_sym_LT_LT_EQ] = ACTIONS(550), + [anon_sym_GT_GT_EQ] = ACTIONS(550), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(550), + [anon_sym_BANG_EQ] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(550), + [anon_sym_AT] = ACTIONS(550), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(550), + [anon_sym_DOT_DOT_EQ] = ACTIONS(550), + [anon_sym_COMMA] = ACTIONS(550), + [anon_sym_COLON_COLON] = ACTIONS(550), + [anon_sym_DASH_GT] = ACTIONS(550), + [anon_sym_POUND] = ACTIONS(550), + [anon_sym_SQUOTE] = ACTIONS(547), + [anon_sym_as] = ACTIONS(547), + [anon_sym_async] = ACTIONS(547), + [anon_sym_await] = ACTIONS(547), + [anon_sym_become] = ACTIONS(547), + [anon_sym_break] = ACTIONS(547), + [anon_sym_const] = ACTIONS(547), + [anon_sym_continue] = ACTIONS(547), + [anon_sym_default] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(547), + [anon_sym_fn] = ACTIONS(547), + [anon_sym_for] = ACTIONS(547), + [anon_sym_gen] = ACTIONS(547), + [anon_sym_if] = ACTIONS(547), + [anon_sym_impl] = ACTIONS(547), + [anon_sym_let] = ACTIONS(547), + [anon_sym_loop] = ACTIONS(547), + [anon_sym_match] = ACTIONS(547), + [anon_sym_mod] = ACTIONS(547), + [anon_sym_pub] = ACTIONS(547), + [anon_sym_return] = ACTIONS(547), + [anon_sym_static] = ACTIONS(547), + [anon_sym_struct] = ACTIONS(547), + [anon_sym_trait] = ACTIONS(547), + [anon_sym_type] = ACTIONS(547), + [anon_sym_union] = ACTIONS(547), + [anon_sym_unsafe] = ACTIONS(547), + [anon_sym_use] = ACTIONS(547), + [anon_sym_where] = ACTIONS(547), + [anon_sym_while] = ACTIONS(547), + [sym_mutable_specifier] = ACTIONS(547), + [sym_integer_literal] = ACTIONS(570), + [aux_sym_string_literal_token1] = ACTIONS(573), + [sym_char_literal] = ACTIONS(570), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(547), + [sym_super] = ACTIONS(547), + [sym_crate] = ACTIONS(547), + [sym_metavariable] = ACTIONS(579), + [sym__raw_string_literal_start] = ACTIONS(582), + [sym_float_literal] = ACTIONS(570), }, [STATE(68)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(69)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(70)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_RBRACK] = ACTIONS(611), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(71)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(611), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(72)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(619), + [anon_sym_RPAREN] = ACTIONS(622), + [anon_sym_LBRACK] = ACTIONS(624), + [anon_sym_RBRACK] = ACTIONS(622), + [anon_sym_LBRACE] = ACTIONS(627), + [anon_sym_RBRACE] = ACTIONS(622), + [anon_sym_EQ_GT] = ACTIONS(616), + [anon_sym_COLON] = ACTIONS(630), + [anon_sym_DOLLAR] = ACTIONS(633), + [anon_sym_PLUS] = ACTIONS(630), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(616), + [anon_sym_u8] = ACTIONS(613), + [anon_sym_i8] = ACTIONS(613), + [anon_sym_u16] = ACTIONS(613), + [anon_sym_i16] = ACTIONS(613), + [anon_sym_u32] = ACTIONS(613), + [anon_sym_i32] = ACTIONS(613), + [anon_sym_u64] = ACTIONS(613), + [anon_sym_i64] = ACTIONS(613), + [anon_sym_u128] = ACTIONS(613), + [anon_sym_i128] = ACTIONS(613), + [anon_sym_isize] = ACTIONS(613), + [anon_sym_usize] = ACTIONS(613), + [anon_sym_f32] = ACTIONS(613), + [anon_sym_f64] = ACTIONS(613), + [anon_sym_bool] = ACTIONS(613), + [anon_sym_str] = ACTIONS(613), + [anon_sym_char] = ACTIONS(613), + [anon_sym_DASH] = ACTIONS(630), + [anon_sym_SLASH] = ACTIONS(630), + [anon_sym_PERCENT] = ACTIONS(630), + [anon_sym_CARET] = ACTIONS(630), + [anon_sym_BANG] = ACTIONS(630), + [anon_sym_AMP] = ACTIONS(630), + [anon_sym_PIPE] = ACTIONS(630), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(630), + [anon_sym_GT_GT] = ACTIONS(630), + [anon_sym_PLUS_EQ] = ACTIONS(616), + [anon_sym_DASH_EQ] = ACTIONS(616), + [anon_sym_STAR_EQ] = ACTIONS(616), + [anon_sym_SLASH_EQ] = ACTIONS(616), + [anon_sym_PERCENT_EQ] = ACTIONS(616), + [anon_sym_CARET_EQ] = ACTIONS(616), + [anon_sym_AMP_EQ] = ACTIONS(616), + [anon_sym_PIPE_EQ] = ACTIONS(616), + [anon_sym_LT_LT_EQ] = ACTIONS(616), + [anon_sym_GT_GT_EQ] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(630), + [anon_sym_EQ_EQ] = ACTIONS(616), + [anon_sym_BANG_EQ] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(630), + [anon_sym_LT] = ACTIONS(630), + [anon_sym_GT_EQ] = ACTIONS(616), + [anon_sym_LT_EQ] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(616), + [anon_sym__] = ACTIONS(630), + [anon_sym_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT] = ACTIONS(630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(616), + [anon_sym_DOT_DOT_EQ] = ACTIONS(616), + [anon_sym_COMMA] = ACTIONS(616), + [anon_sym_COLON_COLON] = ACTIONS(616), + [anon_sym_DASH_GT] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_as] = ACTIONS(613), + [anon_sym_async] = ACTIONS(613), + [anon_sym_await] = ACTIONS(613), + [anon_sym_become] = ACTIONS(613), + [anon_sym_break] = ACTIONS(613), + [anon_sym_const] = ACTIONS(613), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_default] = ACTIONS(613), + [anon_sym_enum] = ACTIONS(613), + [anon_sym_fn] = ACTIONS(613), + [anon_sym_for] = ACTIONS(613), + [anon_sym_gen] = ACTIONS(613), + [anon_sym_if] = ACTIONS(613), + [anon_sym_impl] = ACTIONS(613), + [anon_sym_let] = ACTIONS(613), + [anon_sym_loop] = ACTIONS(613), + [anon_sym_match] = ACTIONS(613), + [anon_sym_mod] = ACTIONS(613), + [anon_sym_pub] = ACTIONS(613), + [anon_sym_return] = ACTIONS(613), + [anon_sym_static] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(613), + [anon_sym_trait] = ACTIONS(613), + [anon_sym_type] = ACTIONS(613), + [anon_sym_union] = ACTIONS(613), + [anon_sym_unsafe] = ACTIONS(613), + [anon_sym_use] = ACTIONS(613), + [anon_sym_where] = ACTIONS(613), + [anon_sym_while] = ACTIONS(613), + [sym_mutable_specifier] = ACTIONS(613), + [sym_integer_literal] = ACTIONS(636), + [aux_sym_string_literal_token1] = ACTIONS(639), + [sym_char_literal] = ACTIONS(636), + [anon_sym_true] = ACTIONS(642), + [anon_sym_false] = ACTIONS(642), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(613), + [sym_super] = ACTIONS(613), + [sym_crate] = ACTIONS(613), + [sym__raw_string_literal_start] = ACTIONS(645), + [sym_float_literal] = ACTIONS(636), }, [STATE(73)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(74)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(75)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(591), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(76)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(650), + [anon_sym_SEMI] = ACTIONS(653), + [anon_sym_LPAREN] = ACTIONS(656), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_LBRACK] = ACTIONS(661), + [anon_sym_RBRACK] = ACTIONS(659), + [anon_sym_LBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(659), + [anon_sym_EQ_GT] = ACTIONS(653), + [anon_sym_COLON] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(667), + [anon_sym_STAR] = ACTIONS(667), + [anon_sym_QMARK] = ACTIONS(653), + [anon_sym_u8] = ACTIONS(650), + [anon_sym_i8] = ACTIONS(650), + [anon_sym_u16] = ACTIONS(650), + [anon_sym_i16] = ACTIONS(650), + [anon_sym_u32] = ACTIONS(650), + [anon_sym_i32] = ACTIONS(650), + [anon_sym_u64] = ACTIONS(650), + [anon_sym_i64] = ACTIONS(650), + [anon_sym_u128] = ACTIONS(650), + [anon_sym_i128] = ACTIONS(650), + [anon_sym_isize] = ACTIONS(650), + [anon_sym_usize] = ACTIONS(650), + [anon_sym_f32] = ACTIONS(650), + [anon_sym_f64] = ACTIONS(650), + [anon_sym_bool] = ACTIONS(650), + [anon_sym_str] = ACTIONS(650), + [anon_sym_char] = ACTIONS(650), + [anon_sym_DASH] = ACTIONS(667), + [anon_sym_SLASH] = ACTIONS(667), + [anon_sym_PERCENT] = ACTIONS(667), + [anon_sym_CARET] = ACTIONS(667), + [anon_sym_BANG] = ACTIONS(667), + [anon_sym_AMP] = ACTIONS(667), + [anon_sym_PIPE] = ACTIONS(667), + [anon_sym_AMP_AMP] = ACTIONS(653), + [anon_sym_PIPE_PIPE] = ACTIONS(653), + [anon_sym_LT_LT] = ACTIONS(667), + [anon_sym_GT_GT] = ACTIONS(667), + [anon_sym_PLUS_EQ] = ACTIONS(653), + [anon_sym_DASH_EQ] = ACTIONS(653), + [anon_sym_STAR_EQ] = ACTIONS(653), + [anon_sym_SLASH_EQ] = ACTIONS(653), + [anon_sym_PERCENT_EQ] = ACTIONS(653), + [anon_sym_CARET_EQ] = ACTIONS(653), + [anon_sym_AMP_EQ] = ACTIONS(653), + [anon_sym_PIPE_EQ] = ACTIONS(653), + [anon_sym_LT_LT_EQ] = ACTIONS(653), + [anon_sym_GT_GT_EQ] = ACTIONS(653), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_EQ_EQ] = ACTIONS(653), + [anon_sym_BANG_EQ] = ACTIONS(653), + [anon_sym_GT] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(667), + [anon_sym_GT_EQ] = ACTIONS(653), + [anon_sym_LT_EQ] = ACTIONS(653), + [anon_sym_AT] = ACTIONS(653), + [anon_sym__] = ACTIONS(667), + [anon_sym_DOT] = ACTIONS(667), + [anon_sym_DOT_DOT] = ACTIONS(667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(653), + [anon_sym_DOT_DOT_EQ] = ACTIONS(653), + [anon_sym_COMMA] = ACTIONS(653), + [anon_sym_COLON_COLON] = ACTIONS(653), + [anon_sym_DASH_GT] = ACTIONS(653), + [anon_sym_POUND] = ACTIONS(653), + [anon_sym_SQUOTE] = ACTIONS(650), + [anon_sym_as] = ACTIONS(650), + [anon_sym_async] = ACTIONS(650), + [anon_sym_await] = ACTIONS(650), + [anon_sym_become] = ACTIONS(650), + [anon_sym_break] = ACTIONS(650), + [anon_sym_const] = ACTIONS(650), + [anon_sym_continue] = ACTIONS(650), + [anon_sym_default] = ACTIONS(650), + [anon_sym_enum] = ACTIONS(650), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_for] = ACTIONS(650), + [anon_sym_gen] = ACTIONS(650), + [anon_sym_if] = ACTIONS(650), + [anon_sym_impl] = ACTIONS(650), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(650), + [anon_sym_match] = ACTIONS(650), + [anon_sym_mod] = ACTIONS(650), + [anon_sym_pub] = ACTIONS(650), + [anon_sym_return] = ACTIONS(650), + [anon_sym_static] = ACTIONS(650), + [anon_sym_struct] = ACTIONS(650), + [anon_sym_trait] = ACTIONS(650), + [anon_sym_type] = ACTIONS(650), + [anon_sym_union] = ACTIONS(650), + [anon_sym_unsafe] = ACTIONS(650), + [anon_sym_use] = ACTIONS(650), + [anon_sym_where] = ACTIONS(650), + [anon_sym_while] = ACTIONS(650), + [sym_mutable_specifier] = ACTIONS(650), + [sym_integer_literal] = ACTIONS(673), + [aux_sym_string_literal_token1] = ACTIONS(676), + [sym_char_literal] = ACTIONS(673), + [anon_sym_true] = ACTIONS(679), + [anon_sym_false] = ACTIONS(679), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(650), + [sym_super] = ACTIONS(650), + [sym_crate] = ACTIONS(650), + [sym_metavariable] = ACTIONS(682), + [sym__raw_string_literal_start] = ACTIONS(685), + [sym_float_literal] = ACTIONS(673), }, [STATE(77)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(604), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(78)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(604), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(79)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(80)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(81)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [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(164), - [sym_identifier] = ACTIONS(574), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(82)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_EQ_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym__] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_DOT_DOT] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_await] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_gen] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_where] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [sym_mutable_specifier] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(633), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(633), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(642), - [sym__raw_string_literal_start] = ACTIONS(645), - [sym_float_literal] = ACTIONS(633), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(83)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym__token_pattern] = STATE(228), + [sym_token_tree_pattern] = STATE(226), + [sym_token_binding_pattern] = STATE(226), + [sym_token_repetition_pattern] = STATE(226), + [sym__literal] = STATE(226), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(648), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_RBRACK] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_EQ_GT] = ACTIONS(651), - [anon_sym_COLON] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_CARET] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_DASH_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_CARET_EQ] = ACTIONS(651), - [anon_sym_AMP_EQ] = ACTIONS(651), - [anon_sym_PIPE_EQ] = ACTIONS(651), - [anon_sym_LT_LT_EQ] = ACTIONS(651), - [anon_sym_GT_GT_EQ] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(665), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(651), - [anon_sym__] = ACTIONS(665), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_COLON_COLON] = ACTIONS(651), - [anon_sym_DASH_GT] = ACTIONS(651), - [anon_sym_POUND] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(648), - [anon_sym_as] = ACTIONS(648), - [anon_sym_async] = ACTIONS(648), - [anon_sym_await] = ACTIONS(648), - [anon_sym_break] = ACTIONS(648), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(648), - [anon_sym_default] = ACTIONS(648), - [anon_sym_enum] = ACTIONS(648), - [anon_sym_fn] = ACTIONS(648), - [anon_sym_for] = ACTIONS(648), - [anon_sym_gen] = ACTIONS(648), - [anon_sym_if] = ACTIONS(648), - [anon_sym_impl] = ACTIONS(648), - [anon_sym_let] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(648), - [anon_sym_mod] = ACTIONS(648), - [anon_sym_pub] = ACTIONS(648), - [anon_sym_return] = ACTIONS(648), - [anon_sym_static] = ACTIONS(648), - [anon_sym_struct] = ACTIONS(648), - [anon_sym_trait] = ACTIONS(648), - [anon_sym_type] = ACTIONS(648), - [anon_sym_union] = ACTIONS(648), - [anon_sym_unsafe] = ACTIONS(648), - [anon_sym_use] = ACTIONS(648), - [anon_sym_where] = ACTIONS(648), - [anon_sym_while] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(648), - [sym_integer_literal] = ACTIONS(671), - [aux_sym_string_literal_token1] = ACTIONS(674), - [sym_char_literal] = ACTIONS(671), - [anon_sym_true] = ACTIONS(677), - [anon_sym_false] = ACTIONS(677), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(648), - [sym_super] = ACTIONS(648), - [sym_crate] = ACTIONS(648), - [sym__raw_string_literal_start] = ACTIONS(680), - [sym_float_literal] = ACTIONS(671), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(178), + [sym_identifier] = ACTIONS(585), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(599), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(585), + [anon_sym_i8] = ACTIONS(585), + [anon_sym_u16] = ACTIONS(585), + [anon_sym_i16] = ACTIONS(585), + [anon_sym_u32] = ACTIONS(585), + [anon_sym_i32] = ACTIONS(585), + [anon_sym_u64] = ACTIONS(585), + [anon_sym_i64] = ACTIONS(585), + [anon_sym_u128] = ACTIONS(585), + [anon_sym_i128] = ACTIONS(585), + [anon_sym_isize] = ACTIONS(585), + [anon_sym_usize] = ACTIONS(585), + [anon_sym_f32] = ACTIONS(585), + [anon_sym_f64] = ACTIONS(585), + [anon_sym_bool] = ACTIONS(585), + [anon_sym_str] = ACTIONS(585), + [anon_sym_char] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_async] = ACTIONS(585), + [anon_sym_await] = ACTIONS(585), + [anon_sym_become] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_default] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_gen] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_impl] = ACTIONS(585), + [anon_sym_let] = ACTIONS(585), + [anon_sym_loop] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_mod] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_static] = ACTIONS(585), + [anon_sym_struct] = ACTIONS(585), + [anon_sym_trait] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_union] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_use] = ACTIONS(585), + [anon_sym_where] = ACTIONS(585), + [anon_sym_while] = ACTIONS(585), + [sym_mutable_specifier] = ACTIONS(585), + [sym_integer_literal] = ACTIONS(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(585), + [sym_super] = ACTIONS(585), + [sym_crate] = ACTIONS(585), + [sym_metavariable] = ACTIONS(607), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(85)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(86)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(90), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(87)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(91), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(88)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_repeat1] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(89)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(90)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(91)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(92)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(93)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(94)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(98), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(95)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(99), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(101), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(98)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(98), [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(99)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(99), [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(100)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(100), [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(101)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(731), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(104), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(102)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(103)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(104)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(105)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(105), [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(106)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(107)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(108)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(109)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(110)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(111)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(112)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(113)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(114)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(115)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(741), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(116)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(117)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(118)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(119)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym_token_tree_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(120)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(121)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(756), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(122), [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(123)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(123), [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(124)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(124), [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(125)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(125), [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(745), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(126)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(126), [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(127)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(128)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(128), [sym_block_comment] = STATE(128), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(129)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym_token_tree_repeat1] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(762), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(130)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [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(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(762), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(131)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(132)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_token_tree] = STATE(235), + [sym_token_repetition] = STATE(235), + [sym__literal] = STATE(235), + [sym_string_literal] = STATE(204), + [sym_raw_string_literal] = STATE(204), + [sym_boolean_literal] = STATE(204), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym_token_tree_repeat1] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(174), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [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(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_become] = 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(601), + [aux_sym_string_literal_token1] = ACTIONS(603), + [sym_char_literal] = ACTIONS(601), + [anon_sym_true] = ACTIONS(605), + [anon_sym_false] = ACTIONS(605), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(609), + [sym_float_literal] = ACTIONS(601), }, [STATE(133)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [sym_delim_token_tree] = STATE(251), + [sym__delim_tokens] = STATE(237), + [sym__non_delim_token] = STATE(251), + [sym__literal] = STATE(248), + [sym_string_literal] = STATE(242), + [sym_raw_string_literal] = STATE(242), + [sym_boolean_literal] = STATE(242), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [aux_sym__non_special_token_repeat1] = STATE(223), + [aux_sym_delim_token_tree_repeat1] = STATE(112), + [sym_identifier] = ACTIONS(708), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(712), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_LBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(718), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(722), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(708), + [anon_sym_i8] = ACTIONS(708), + [anon_sym_u16] = ACTIONS(708), + [anon_sym_i16] = ACTIONS(708), + [anon_sym_u32] = ACTIONS(708), + [anon_sym_i32] = ACTIONS(708), + [anon_sym_u64] = ACTIONS(708), + [anon_sym_i64] = ACTIONS(708), + [anon_sym_u128] = ACTIONS(708), + [anon_sym_i128] = ACTIONS(708), + [anon_sym_isize] = ACTIONS(708), + [anon_sym_usize] = ACTIONS(708), + [anon_sym_f32] = ACTIONS(708), + [anon_sym_f64] = ACTIONS(708), + [anon_sym_bool] = ACTIONS(708), + [anon_sym_str] = ACTIONS(708), + [anon_sym_char] = ACTIONS(708), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(708), + [anon_sym_as] = ACTIONS(708), + [anon_sym_async] = ACTIONS(708), + [anon_sym_await] = ACTIONS(708), + [anon_sym_become] = ACTIONS(708), + [anon_sym_break] = ACTIONS(708), + [anon_sym_const] = ACTIONS(708), + [anon_sym_continue] = ACTIONS(708), + [anon_sym_default] = ACTIONS(708), + [anon_sym_enum] = ACTIONS(708), + [anon_sym_fn] = ACTIONS(708), + [anon_sym_for] = ACTIONS(708), + [anon_sym_gen] = ACTIONS(708), + [anon_sym_if] = ACTIONS(708), + [anon_sym_impl] = ACTIONS(708), + [anon_sym_let] = ACTIONS(708), + [anon_sym_loop] = ACTIONS(708), + [anon_sym_match] = ACTIONS(708), + [anon_sym_mod] = ACTIONS(708), + [anon_sym_pub] = ACTIONS(708), + [anon_sym_return] = ACTIONS(708), + [anon_sym_static] = ACTIONS(708), + [anon_sym_struct] = ACTIONS(708), + [anon_sym_trait] = ACTIONS(708), + [anon_sym_type] = ACTIONS(708), + [anon_sym_union] = ACTIONS(708), + [anon_sym_unsafe] = ACTIONS(708), + [anon_sym_use] = ACTIONS(708), + [anon_sym_where] = ACTIONS(708), + [anon_sym_while] = ACTIONS(708), + [sym_mutable_specifier] = ACTIONS(708), + [sym_integer_literal] = ACTIONS(724), + [aux_sym_string_literal_token1] = ACTIONS(726), + [sym_char_literal] = ACTIONS(724), + [anon_sym_true] = ACTIONS(728), + [anon_sym_false] = ACTIONS(728), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(708), + [sym_super] = ACTIONS(708), + [sym_crate] = ACTIONS(708), + [sym__raw_string_literal_start] = ACTIONS(730), + [sym_float_literal] = ACTIONS(724), }, [STATE(134)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(753), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(764), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32764,100 +33012,222 @@ 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(755), + [anon_sym_COMMA] = ACTIONS(766), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(135)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(196), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_u8] = ACTIONS(787), + [anon_sym_i8] = ACTIONS(787), + [anon_sym_u16] = ACTIONS(787), + [anon_sym_i16] = ACTIONS(787), + [anon_sym_u32] = ACTIONS(787), + [anon_sym_i32] = ACTIONS(787), + [anon_sym_u64] = ACTIONS(787), + [anon_sym_i64] = ACTIONS(787), + [anon_sym_u128] = ACTIONS(787), + [anon_sym_i128] = ACTIONS(787), + [anon_sym_isize] = ACTIONS(787), + [anon_sym_usize] = ACTIONS(787), + [anon_sym_f32] = ACTIONS(787), + [anon_sym_f64] = ACTIONS(787), + [anon_sym_bool] = ACTIONS(787), + [anon_sym_str] = ACTIONS(787), + [anon_sym_char] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym_POUND] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_async] = ACTIONS(811), + [anon_sym_become] = ACTIONS(814), + [anon_sym_break] = ACTIONS(817), + [anon_sym_const] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(823), + [anon_sym_default] = ACTIONS(826), + [anon_sym_for] = ACTIONS(829), + [anon_sym_gen] = ACTIONS(832), + [anon_sym_if] = ACTIONS(835), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_match] = ACTIONS(841), + [anon_sym_return] = ACTIONS(844), + [anon_sym_static] = ACTIONS(847), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(850), + [anon_sym_while] = ACTIONS(853), + [anon_sym_raw] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_move] = ACTIONS(859), + [anon_sym_try] = ACTIONS(862), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(877), + [sym_crate] = ACTIONS(877), + [sym_metavariable] = ACTIONS(880), + [sym__raw_string_literal_start] = ACTIONS(883), + [sym_float_literal] = ACTIONS(865), + }, + [STATE(136)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym_enum_variant_list_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(759), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(886), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -32882,336 +33252,222 @@ 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(761), + [anon_sym_COMMA] = ACTIONS(888), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(136)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(348), - [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(765), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(137)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1693), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_async] = ACTIONS(808), - [anon_sym_break] = ACTIONS(811), - [anon_sym_const] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(820), - [anon_sym_for] = ACTIONS(823), - [anon_sym_gen] = ACTIONS(826), - [anon_sym_if] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(835), - [anon_sym_return] = ACTIONS(838), - [anon_sym_static] = ACTIONS(841), - [anon_sym_union] = ACTIONS(820), - [anon_sym_unsafe] = ACTIONS(844), - [anon_sym_while] = ACTIONS(847), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_move] = ACTIONS(853), - [anon_sym_try] = ACTIONS(856), - [sym_integer_literal] = ACTIONS(859), - [aux_sym_string_literal_token1] = ACTIONS(862), - [sym_char_literal] = ACTIONS(859), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(868), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(874), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(859), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(770), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(776), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_u8] = ACTIONS(787), + [anon_sym_i8] = ACTIONS(787), + [anon_sym_u16] = ACTIONS(787), + [anon_sym_i16] = ACTIONS(787), + [anon_sym_u32] = ACTIONS(787), + [anon_sym_i32] = ACTIONS(787), + [anon_sym_u64] = ACTIONS(787), + [anon_sym_i64] = ACTIONS(787), + [anon_sym_u128] = ACTIONS(787), + [anon_sym_i128] = ACTIONS(787), + [anon_sym_isize] = ACTIONS(787), + [anon_sym_usize] = ACTIONS(787), + [anon_sym_f32] = ACTIONS(787), + [anon_sym_f64] = ACTIONS(787), + [anon_sym_bool] = ACTIONS(787), + [anon_sym_str] = ACTIONS(787), + [anon_sym_char] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(784), + [anon_sym_BANG] = ACTIONS(784), + [anon_sym_AMP] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(793), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(799), + [anon_sym_COMMA] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(802), + [anon_sym_POUND] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(808), + [anon_sym_async] = ACTIONS(811), + [anon_sym_become] = ACTIONS(814), + [anon_sym_break] = ACTIONS(817), + [anon_sym_const] = ACTIONS(820), + [anon_sym_continue] = ACTIONS(823), + [anon_sym_default] = ACTIONS(826), + [anon_sym_for] = ACTIONS(829), + [anon_sym_gen] = ACTIONS(832), + [anon_sym_if] = ACTIONS(835), + [anon_sym_loop] = ACTIONS(838), + [anon_sym_match] = ACTIONS(841), + [anon_sym_return] = ACTIONS(844), + [anon_sym_static] = ACTIONS(847), + [anon_sym_union] = ACTIONS(826), + [anon_sym_unsafe] = ACTIONS(850), + [anon_sym_while] = ACTIONS(853), + [anon_sym_raw] = ACTIONS(826), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_move] = ACTIONS(859), + [anon_sym_try] = ACTIONS(862), + [sym_integer_literal] = ACTIONS(865), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(865), + [anon_sym_true] = ACTIONS(871), + [anon_sym_false] = ACTIONS(871), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(874), + [sym_super] = ACTIONS(877), + [sym_crate] = ACTIONS(877), + [sym_metavariable] = ACTIONS(880), + [sym__raw_string_literal_start] = ACTIONS(883), + [sym_float_literal] = ACTIONS(865), }, [STATE(138)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1664), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(172), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(890), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(880), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33236,100 +33492,102 @@ 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(882), + [anon_sym_COMMA] = ACTIONS(892), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(139)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33354,100 +33612,102 @@ 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(886), + [anon_sym_COMMA] = ACTIONS(896), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(140)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(898), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(888), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33472,452 +33732,102 @@ 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(890), + [anon_sym_COMMA] = ACTIONS(900), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(141)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_async] = ACTIONS(808), - [anon_sym_break] = ACTIONS(811), - [anon_sym_const] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(820), - [anon_sym_for] = ACTIONS(823), - [anon_sym_gen] = ACTIONS(826), - [anon_sym_if] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(835), - [anon_sym_return] = ACTIONS(838), - [anon_sym_static] = ACTIONS(841), - [anon_sym_union] = ACTIONS(820), - [anon_sym_unsafe] = ACTIONS(844), - [anon_sym_while] = ACTIONS(847), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_move] = ACTIONS(853), - [anon_sym_try] = ACTIONS(856), - [sym_integer_literal] = ACTIONS(859), - [aux_sym_string_literal_token1] = ACTIONS(862), - [sym_char_literal] = ACTIONS(859), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(868), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(874), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(859), - }, - [STATE(142)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(143)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2701), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(144)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(902), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33942,216 +33852,102 @@ 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(904), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(145)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1977), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(3301), - [sym__let_chain] = STATE(3302), - [sym__condition] = STATE(3557), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(146)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(142)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_RPAREN] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34177,98 +33973,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(147)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(344), + [STATE(143)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(914), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34294,215 +34092,100 @@ 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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(148)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2798), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(149)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(144)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(910), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34528,98 +34211,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(150)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(145)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(918), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34645,98 +34330,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(151)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(146)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(920), + [anon_sym_RPAREN] = ACTIONS(914), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34762,98 +34449,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(152)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(147)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(916), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(922), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -34879,215 +34568,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(153)] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym__non_special_token_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_async] = ACTIONS(924), - [anon_sym_await] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_gen] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_type] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym_mutable_specifier] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(926), - [sym__raw_string_literal_start] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(154)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(148)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(918), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(928), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35113,98 +34687,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(155)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(149)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(930), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35230,98 +34806,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(156)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(150)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(922), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35347,332 +34925,338 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(151)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2736), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [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(757), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(158)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(152)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2697), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(936), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [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(757), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(159)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(153)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(938), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(932), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35698,98 +35282,100 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(160)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [STATE(154)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(934), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -35815,215 +35401,933 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(155)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(156)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1934), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(173), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(157)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym_enum_variant_list_repeat1] = STATE(171), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(940), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(158)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1978), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_let_condition] = STATE(3240), + [sym__let_chain] = STATE(3241), + [sym__condition] = STATE(3564), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_let] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), + }, + [STATE(159)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2832), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(160)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2745), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(161)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2784), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [aux_sym__non_special_token_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(944), - [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(944), - [anon_sym_COLON] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_u8] = ACTIONS(942), - [anon_sym_i8] = ACTIONS(942), - [anon_sym_u16] = ACTIONS(942), - [anon_sym_i16] = ACTIONS(942), - [anon_sym_u32] = ACTIONS(942), - [anon_sym_i32] = ACTIONS(942), - [anon_sym_u64] = ACTIONS(942), - [anon_sym_i64] = ACTIONS(942), - [anon_sym_u128] = ACTIONS(942), - [anon_sym_i128] = ACTIONS(942), - [anon_sym_isize] = ACTIONS(942), - [anon_sym_usize] = ACTIONS(942), - [anon_sym_f32] = ACTIONS(942), - [anon_sym_f64] = ACTIONS(942), - [anon_sym_bool] = ACTIONS(942), - [anon_sym_str] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [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(944), - [anon_sym_PIPE_PIPE] = ACTIONS(944), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PERCENT_EQ] = ACTIONS(944), - [anon_sym_CARET_EQ] = ACTIONS(944), - [anon_sym_AMP_EQ] = ACTIONS(944), - [anon_sym_PIPE_EQ] = ACTIONS(944), - [anon_sym_LT_LT_EQ] = ACTIONS(944), - [anon_sym_GT_GT_EQ] = ACTIONS(944), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_AT] = ACTIONS(944), - [anon_sym__] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(944), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_COLON_COLON] = ACTIONS(944), - [anon_sym_DASH_GT] = ACTIONS(944), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_async] = ACTIONS(942), - [anon_sym_await] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_gen] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(942), - [anon_sym_loop] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_mod] = ACTIONS(942), - [anon_sym_pub] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_trait] = ACTIONS(942), - [anon_sym_type] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_unsafe] = ACTIONS(942), - [anon_sym_use] = ACTIONS(942), - [anon_sym_where] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [sym_mutable_specifier] = ACTIONS(942), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(942), - [anon_sym_false] = ACTIONS(942), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_crate] = ACTIONS(942), - [sym_metavariable] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(162)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(952), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACK] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -36049,1344 +36353,1483 @@ 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(757), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(163)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2822), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2659), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(164)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2720), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [aux_sym__non_special_token_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_async] = ACTIONS(954), - [anon_sym_await] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_gen] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_mod] = ACTIONS(954), - [anon_sym_pub] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(954), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_where] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [sym_mutable_specifier] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(956), - [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(956), - [sym__raw_string_literal_start] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(165)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2828), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2722), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(166)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2775), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2743), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(167)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2783), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2760), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(167), [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(168)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2626), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2761), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(168), [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(169)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2652), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(3136), + [sym__let_chain] = STATE(3139), + [sym__condition] = STATE(2629), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(169), [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(170)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2654), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(470), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_RBRACK] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(353), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(171)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2680), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1985), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(470), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(172)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2700), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(470), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(173)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2717), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1989), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(470), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(768), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(174)] = { [sym_line_comment] = STATE(174), [sym_block_comment] = STATE(174), + [aux_sym__non_special_token_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u128] = ACTIONS(954), + [anon_sym_i128] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_str] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_async] = ACTIONS(954), + [anon_sym_await] = ACTIONS(954), + [anon_sym_become] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_gen] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_mod] = ACTIONS(954), + [anon_sym_pub] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_trait] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(954), + [anon_sym_unsafe] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_where] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [sym_mutable_specifier] = ACTIONS(954), + [sym_integer_literal] = ACTIONS(956), + [aux_sym_string_literal_token1] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_crate] = ACTIONS(954), + [sym_metavariable] = ACTIONS(956), + [sym__raw_string_literal_start] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), + }, + [STATE(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym__non_special_token_repeat1] = STATE(175), [sym_identifier] = ACTIONS(958), [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), + [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(960), - [anon_sym_COLON] = ACTIONS(958), + [anon_sym_COLON] = ACTIONS(965), [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), [anon_sym_QMARK] = ACTIONS(960), [anon_sym_u8] = ACTIONS(958), [anon_sym_i8] = ACTIONS(958), @@ -37405,17 +37848,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(958), [anon_sym_str] = ACTIONS(958), [anon_sym_char] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(958), + [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(960), [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), [anon_sym_PLUS_EQ] = ACTIONS(960), [anon_sym_DASH_EQ] = ACTIONS(960), [anon_sym_STAR_EQ] = ACTIONS(960), @@ -37426,17 +37869,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(960), [anon_sym_LT_LT_EQ] = ACTIONS(960), [anon_sym_GT_GT_EQ] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(965), [anon_sym_EQ_EQ] = ACTIONS(960), [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), [anon_sym_GT_EQ] = ACTIONS(960), [anon_sym_LT_EQ] = ACTIONS(960), [anon_sym_AT] = ACTIONS(960), - [anon_sym__] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(958), - [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), [anon_sym_DOT_DOT_DOT] = ACTIONS(960), [anon_sym_DOT_DOT_EQ] = ACTIONS(960), [anon_sym_COMMA] = ACTIONS(960), @@ -37447,6 +37890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(958), [anon_sym_async] = ACTIONS(958), [anon_sym_await] = ACTIONS(958), + [anon_sym_become] = ACTIONS(958), [anon_sym_break] = ACTIONS(958), [anon_sym_const] = ACTIONS(958), [anon_sym_continue] = ACTIONS(958), @@ -37473,519 +37917,644 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(958), [anon_sym_while] = ACTIONS(958), [sym_mutable_specifier] = ACTIONS(958), - [sym_integer_literal] = ACTIONS(960), - [aux_sym_string_literal_token1] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), [anon_sym_true] = ACTIONS(958), [anon_sym_false] = ACTIONS(958), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(958), [sym_super] = ACTIONS(958), [sym_crate] = ACTIONS(958), - [sym_metavariable] = ACTIONS(960), - [sym__raw_string_literal_start] = ACTIONS(960), - [sym_float_literal] = ACTIONS(960), - }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym__non_special_token_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_async] = ACTIONS(962), - [anon_sym_await] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_fn] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_gen] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_impl] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_mod] = ACTIONS(962), - [anon_sym_pub] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_where] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [sym_mutable_specifier] = ACTIONS(962), - [sym_integer_literal] = ACTIONS(964), - [aux_sym_string_literal_token1] = ACTIONS(964), - [sym_char_literal] = ACTIONS(964), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(962), - [sym_super] = ACTIONS(962), - [sym_crate] = ACTIONS(962), - [sym__raw_string_literal_start] = ACTIONS(964), - [sym_float_literal] = ACTIONS(964), + [sym_metavariable] = ACTIONS(963), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), }, [STATE(176)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1719), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(176), [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u128] = ACTIONS(966), - [anon_sym_i128] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_str] = ACTIONS(966), - [anon_sym_char] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(968), - [anon_sym_CARET_EQ] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(968), - [anon_sym_LT_LT_EQ] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_async] = ACTIONS(966), - [anon_sym_await] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_fn] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_gen] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_impl] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_mod] = ACTIONS(966), - [anon_sym_pub] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_static] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_trait] = ACTIONS(966), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_unsafe] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_where] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [sym_mutable_specifier] = ACTIONS(966), - [sym_integer_literal] = ACTIONS(968), - [aux_sym_string_literal_token1] = ACTIONS(968), - [sym_char_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(966), - [sym_super] = ACTIONS(966), - [sym_crate] = ACTIONS(966), - [sym_metavariable] = ACTIONS(968), - [sym__raw_string_literal_start] = ACTIONS(968), - [sym_float_literal] = ACTIONS(968), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(177)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(177), [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), - [anon_sym_EQ_GT] = ACTIONS(972), - [anon_sym_COLON] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(970), - [anon_sym_QMARK] = ACTIONS(972), - [anon_sym_u8] = ACTIONS(970), - [anon_sym_i8] = ACTIONS(970), - [anon_sym_u16] = ACTIONS(970), - [anon_sym_i16] = ACTIONS(970), - [anon_sym_u32] = ACTIONS(970), - [anon_sym_i32] = ACTIONS(970), - [anon_sym_u64] = ACTIONS(970), - [anon_sym_i64] = ACTIONS(970), - [anon_sym_u128] = ACTIONS(970), - [anon_sym_i128] = ACTIONS(970), - [anon_sym_isize] = ACTIONS(970), - [anon_sym_usize] = ACTIONS(970), - [anon_sym_f32] = ACTIONS(970), - [anon_sym_f64] = ACTIONS(970), - [anon_sym_bool] = ACTIONS(970), - [anon_sym_str] = ACTIONS(970), - [anon_sym_char] = ACTIONS(970), - [anon_sym_DASH] = ACTIONS(970), - [anon_sym_SLASH] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(970), - [anon_sym_CARET] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(970), - [anon_sym_AMP] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(972), - [anon_sym_PIPE_PIPE] = ACTIONS(972), - [anon_sym_LT_LT] = ACTIONS(970), - [anon_sym_GT_GT] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(972), - [anon_sym_DASH_EQ] = ACTIONS(972), - [anon_sym_STAR_EQ] = ACTIONS(972), - [anon_sym_SLASH_EQ] = ACTIONS(972), - [anon_sym_PERCENT_EQ] = ACTIONS(972), - [anon_sym_CARET_EQ] = ACTIONS(972), - [anon_sym_AMP_EQ] = ACTIONS(972), - [anon_sym_PIPE_EQ] = ACTIONS(972), - [anon_sym_LT_LT_EQ] = ACTIONS(972), - [anon_sym_GT_GT_EQ] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(972), - [anon_sym_BANG_EQ] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(970), - [anon_sym_LT] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(972), - [anon_sym_LT_EQ] = ACTIONS(972), - [anon_sym_AT] = ACTIONS(972), - [anon_sym__] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_COLON_COLON] = ACTIONS(972), - [anon_sym_DASH_GT] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(970), - [anon_sym_as] = ACTIONS(970), - [anon_sym_async] = ACTIONS(970), - [anon_sym_await] = ACTIONS(970), - [anon_sym_break] = ACTIONS(970), - [anon_sym_const] = ACTIONS(970), - [anon_sym_continue] = ACTIONS(970), - [anon_sym_default] = ACTIONS(970), - [anon_sym_enum] = ACTIONS(970), - [anon_sym_fn] = ACTIONS(970), - [anon_sym_for] = ACTIONS(970), - [anon_sym_gen] = ACTIONS(970), - [anon_sym_if] = ACTIONS(970), - [anon_sym_impl] = ACTIONS(970), - [anon_sym_let] = ACTIONS(970), - [anon_sym_loop] = ACTIONS(970), - [anon_sym_match] = ACTIONS(970), - [anon_sym_mod] = ACTIONS(970), - [anon_sym_pub] = ACTIONS(970), - [anon_sym_return] = ACTIONS(970), - [anon_sym_static] = ACTIONS(970), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_trait] = ACTIONS(970), - [anon_sym_type] = ACTIONS(970), - [anon_sym_union] = ACTIONS(970), - [anon_sym_unsafe] = ACTIONS(970), - [anon_sym_use] = ACTIONS(970), - [anon_sym_where] = ACTIONS(970), - [anon_sym_while] = ACTIONS(970), - [sym_mutable_specifier] = ACTIONS(970), - [sym_integer_literal] = ACTIONS(972), - [aux_sym_string_literal_token1] = ACTIONS(972), - [sym_char_literal] = ACTIONS(972), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(970), - [sym_super] = ACTIONS(970), - [sym_crate] = ACTIONS(970), - [sym_metavariable] = ACTIONS(972), - [sym__raw_string_literal_start] = ACTIONS(972), - [sym_float_literal] = ACTIONS(972), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(178)] = { [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_RBRACK] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_EQ_GT] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_u8] = ACTIONS(974), - [anon_sym_i8] = ACTIONS(974), - [anon_sym_u16] = ACTIONS(974), - [anon_sym_i16] = ACTIONS(974), - [anon_sym_u32] = ACTIONS(974), - [anon_sym_i32] = ACTIONS(974), - [anon_sym_u64] = ACTIONS(974), - [anon_sym_i64] = ACTIONS(974), - [anon_sym_u128] = ACTIONS(974), - [anon_sym_i128] = ACTIONS(974), - [anon_sym_isize] = ACTIONS(974), - [anon_sym_usize] = ACTIONS(974), - [anon_sym_f32] = ACTIONS(974), - [anon_sym_f64] = ACTIONS(974), - [anon_sym_bool] = ACTIONS(974), - [anon_sym_str] = ACTIONS(974), - [anon_sym_char] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_PERCENT_EQ] = ACTIONS(976), - [anon_sym_CARET_EQ] = ACTIONS(976), - [anon_sym_AMP_EQ] = ACTIONS(976), - [anon_sym_PIPE_EQ] = ACTIONS(976), - [anon_sym_LT_LT_EQ] = ACTIONS(976), - [anon_sym_GT_GT_EQ] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_AT] = ACTIONS(976), - [anon_sym__] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_COLON_COLON] = ACTIONS(976), - [anon_sym_DASH_GT] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_async] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_gen] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_mod] = ACTIONS(974), - [anon_sym_pub] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_static] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_unsafe] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_where] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [sym_mutable_specifier] = ACTIONS(974), - [sym_integer_literal] = ACTIONS(976), - [aux_sym_string_literal_token1] = ACTIONS(976), - [sym_char_literal] = ACTIONS(976), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(974), - [sym_super] = ACTIONS(974), - [sym_crate] = ACTIONS(974), - [sym_metavariable] = ACTIONS(976), - [sym__raw_string_literal_start] = ACTIONS(976), - [sym_float_literal] = ACTIONS(976), + [aux_sym__non_special_token_repeat1] = STATE(175), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_QMARK] = ACTIONS(587), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u128] = ACTIONS(968), + [anon_sym_i128] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_str] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_LT_LT] = ACTIONS(597), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT_EQ] = ACTIONS(587), + [anon_sym_LT_EQ] = ACTIONS(587), + [anon_sym_AT] = ACTIONS(587), + [anon_sym__] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT] = ACTIONS(597), + [anon_sym_DOT_DOT_DOT] = ACTIONS(587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(587), + [anon_sym_COMMA] = ACTIONS(587), + [anon_sym_COLON_COLON] = ACTIONS(587), + [anon_sym_DASH_GT] = ACTIONS(587), + [anon_sym_POUND] = ACTIONS(587), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = ACTIONS(968), + [anon_sym_await] = ACTIONS(968), + [anon_sym_become] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_gen] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_impl] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_pub] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_trait] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(970), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [STATE(179)] = { + [sym_attribute_item] = STATE(1064), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_EQ_GT] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(980), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), + [aux_sym_enum_variant_list_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(768), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(180)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1596), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1527), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(359), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(181)] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_RBRACK] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_EQ_GT] = ACTIONS(980), + [anon_sym_COLON] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(978), + [anon_sym_i8] = ACTIONS(978), + [anon_sym_u16] = ACTIONS(978), + [anon_sym_i16] = ACTIONS(978), + [anon_sym_u32] = ACTIONS(978), + [anon_sym_i32] = ACTIONS(978), + [anon_sym_u64] = ACTIONS(978), + [anon_sym_i64] = ACTIONS(978), + [anon_sym_u128] = ACTIONS(978), + [anon_sym_i128] = ACTIONS(978), + [anon_sym_isize] = ACTIONS(978), + [anon_sym_usize] = ACTIONS(978), + [anon_sym_f32] = ACTIONS(978), + [anon_sym_f64] = ACTIONS(978), + [anon_sym_bool] = ACTIONS(978), + [anon_sym_str] = ACTIONS(978), + [anon_sym_char] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), [anon_sym_SLASH] = ACTIONS(978), [anon_sym_PERCENT] = ACTIONS(978), [anon_sym_CARET] = ACTIONS(978), @@ -38027,6 +38596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(978), [anon_sym_async] = ACTIONS(978), [anon_sym_await] = ACTIONS(978), + [anon_sym_become] = ACTIONS(978), [anon_sym_break] = ACTIONS(978), [anon_sym_const] = ACTIONS(978), [anon_sym_continue] = ACTIONS(978), @@ -38058,8 +38628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(980), [anon_sym_true] = ACTIONS(978), [anon_sym_false] = ACTIONS(978), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(978), [sym_super] = ACTIONS(978), [sym_crate] = ACTIONS(978), @@ -38067,9 +38637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(980), [sym_float_literal] = ACTIONS(980), }, - [STATE(180)] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), + [STATE(182)] = { + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), [sym_identifier] = ACTIONS(982), [anon_sym_SEMI] = ACTIONS(984), [anon_sym_LPAREN] = ACTIONS(984), @@ -38143,6 +38713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(982), [anon_sym_async] = ACTIONS(982), [anon_sym_await] = ACTIONS(982), + [anon_sym_become] = ACTIONS(982), [anon_sym_break] = ACTIONS(982), [anon_sym_const] = ACTIONS(982), [anon_sym_continue] = ACTIONS(982), @@ -38174,8 +38745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(984), [anon_sym_true] = ACTIONS(982), [anon_sym_false] = ACTIONS(982), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(982), [sym_super] = ACTIONS(982), [sym_crate] = ACTIONS(982), @@ -38183,758 +38754,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(984), [sym_float_literal] = ACTIONS(984), }, - [STATE(181)] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_EQ_GT] = ACTIONS(988), - [anon_sym_COLON] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_QMARK] = ACTIONS(988), - [anon_sym_u8] = ACTIONS(986), - [anon_sym_i8] = ACTIONS(986), - [anon_sym_u16] = ACTIONS(986), - [anon_sym_i16] = ACTIONS(986), - [anon_sym_u32] = ACTIONS(986), - [anon_sym_i32] = ACTIONS(986), - [anon_sym_u64] = ACTIONS(986), - [anon_sym_i64] = ACTIONS(986), - [anon_sym_u128] = ACTIONS(986), - [anon_sym_i128] = ACTIONS(986), - [anon_sym_isize] = ACTIONS(986), - [anon_sym_usize] = ACTIONS(986), - [anon_sym_f32] = ACTIONS(986), - [anon_sym_f64] = ACTIONS(986), - [anon_sym_bool] = ACTIONS(986), - [anon_sym_str] = ACTIONS(986), - [anon_sym_char] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(986), - [anon_sym_CARET] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PERCENT_EQ] = ACTIONS(988), - [anon_sym_CARET_EQ] = ACTIONS(988), - [anon_sym_AMP_EQ] = ACTIONS(988), - [anon_sym_PIPE_EQ] = ACTIONS(988), - [anon_sym_LT_LT_EQ] = ACTIONS(988), - [anon_sym_GT_GT_EQ] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_AT] = ACTIONS(988), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_COLON_COLON] = ACTIONS(988), - [anon_sym_DASH_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_async] = ACTIONS(986), - [anon_sym_await] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_fn] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_gen] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_impl] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_mod] = ACTIONS(986), - [anon_sym_pub] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_static] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_trait] = ACTIONS(986), - [anon_sym_type] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_unsafe] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_where] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [sym_mutable_specifier] = ACTIONS(986), - [sym_integer_literal] = ACTIONS(988), - [aux_sym_string_literal_token1] = ACTIONS(988), - [sym_char_literal] = ACTIONS(988), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(986), - [sym_super] = ACTIONS(986), - [sym_crate] = ACTIONS(986), - [sym_metavariable] = ACTIONS(988), - [sym__raw_string_literal_start] = ACTIONS(988), - [sym_float_literal] = ACTIONS(988), - }, - [STATE(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(990), - [anon_sym_i8] = ACTIONS(990), - [anon_sym_u16] = ACTIONS(990), - [anon_sym_i16] = ACTIONS(990), - [anon_sym_u32] = ACTIONS(990), - [anon_sym_i32] = ACTIONS(990), - [anon_sym_u64] = ACTIONS(990), - [anon_sym_i64] = ACTIONS(990), - [anon_sym_u128] = ACTIONS(990), - [anon_sym_i128] = ACTIONS(990), - [anon_sym_isize] = ACTIONS(990), - [anon_sym_usize] = ACTIONS(990), - [anon_sym_f32] = ACTIONS(990), - [anon_sym_f64] = ACTIONS(990), - [anon_sym_bool] = ACTIONS(990), - [anon_sym_str] = ACTIONS(990), - [anon_sym_char] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(992), - [anon_sym_PIPE_PIPE] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PERCENT_EQ] = ACTIONS(992), - [anon_sym_CARET_EQ] = ACTIONS(992), - [anon_sym_AMP_EQ] = ACTIONS(992), - [anon_sym_PIPE_EQ] = ACTIONS(992), - [anon_sym_LT_LT_EQ] = ACTIONS(992), - [anon_sym_GT_GT_EQ] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [anon_sym__] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(992), - [anon_sym_DASH_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_async] = ACTIONS(990), - [anon_sym_await] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_gen] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_impl] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_pub] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_static] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_trait] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_unsafe] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [sym_mutable_specifier] = ACTIONS(990), - [sym_integer_literal] = ACTIONS(992), - [aux_sym_string_literal_token1] = ACTIONS(992), - [sym_char_literal] = ACTIONS(992), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(990), - [sym_super] = ACTIONS(990), - [sym_crate] = ACTIONS(990), - [sym_metavariable] = ACTIONS(992), - [sym__raw_string_literal_start] = ACTIONS(992), - [sym_float_literal] = ACTIONS(992), - }, [STATE(183)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_EQ_GT] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_u8] = ACTIONS(994), - [anon_sym_i8] = ACTIONS(994), - [anon_sym_u16] = ACTIONS(994), - [anon_sym_i16] = ACTIONS(994), - [anon_sym_u32] = ACTIONS(994), - [anon_sym_i32] = ACTIONS(994), - [anon_sym_u64] = ACTIONS(994), - [anon_sym_i64] = ACTIONS(994), - [anon_sym_u128] = ACTIONS(994), - [anon_sym_i128] = ACTIONS(994), - [anon_sym_isize] = ACTIONS(994), - [anon_sym_usize] = ACTIONS(994), - [anon_sym_f32] = ACTIONS(994), - [anon_sym_f64] = ACTIONS(994), - [anon_sym_bool] = ACTIONS(994), - [anon_sym_str] = ACTIONS(994), - [anon_sym_char] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_SLASH] = ACTIONS(994), - [anon_sym_PERCENT] = ACTIONS(994), - [anon_sym_CARET] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_AMP_AMP] = ACTIONS(996), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_EQ_EQ] = ACTIONS(996), - [anon_sym_BANG_EQ] = ACTIONS(996), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [anon_sym__] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_DASH_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_async] = ACTIONS(994), - [anon_sym_await] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_gen] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_impl] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_mod] = ACTIONS(994), - [anon_sym_pub] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_static] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_trait] = ACTIONS(994), - [anon_sym_type] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_unsafe] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_where] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [sym_mutable_specifier] = ACTIONS(994), - [sym_integer_literal] = ACTIONS(996), - [aux_sym_string_literal_token1] = ACTIONS(996), - [sym_char_literal] = ACTIONS(996), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(994), - [sym_super] = ACTIONS(994), - [sym_crate] = ACTIONS(994), - [sym_metavariable] = ACTIONS(996), - [sym__raw_string_literal_start] = ACTIONS(996), - [sym_float_literal] = ACTIONS(996), - }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(956), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(956), - [anon_sym_DASH_EQ] = ACTIONS(956), - [anon_sym_STAR_EQ] = ACTIONS(956), - [anon_sym_SLASH_EQ] = ACTIONS(956), - [anon_sym_PERCENT_EQ] = ACTIONS(956), - [anon_sym_CARET_EQ] = ACTIONS(956), - [anon_sym_AMP_EQ] = ACTIONS(956), - [anon_sym_PIPE_EQ] = ACTIONS(956), - [anon_sym_LT_LT_EQ] = ACTIONS(956), - [anon_sym_GT_GT_EQ] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym__] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_DASH_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_async] = ACTIONS(954), - [anon_sym_await] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_gen] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_mod] = ACTIONS(954), - [anon_sym_pub] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(954), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_where] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [sym_mutable_specifier] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(956), - [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(956), - [sym__raw_string_literal_start] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), - }, - [STATE(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(956), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(956), - [anon_sym_DASH_EQ] = ACTIONS(956), - [anon_sym_STAR_EQ] = ACTIONS(956), - [anon_sym_SLASH_EQ] = ACTIONS(956), - [anon_sym_PERCENT_EQ] = ACTIONS(956), - [anon_sym_CARET_EQ] = ACTIONS(956), - [anon_sym_AMP_EQ] = ACTIONS(956), - [anon_sym_PIPE_EQ] = ACTIONS(956), - [anon_sym_LT_LT_EQ] = ACTIONS(956), - [anon_sym_GT_GT_EQ] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym__] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_DASH_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_async] = ACTIONS(954), - [anon_sym_await] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_gen] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_mod] = ACTIONS(954), - [anon_sym_pub] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(954), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_where] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [sym_mutable_specifier] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(956), - [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(956), - [sym__raw_string_literal_start] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), - }, - [STATE(186)] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_RPAREN] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_RBRACK] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_EQ_GT] = ACTIONS(1002), - [anon_sym_COLON] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(1002), - [anon_sym_u8] = ACTIONS(1000), - [anon_sym_i8] = ACTIONS(1000), - [anon_sym_u16] = ACTIONS(1000), - [anon_sym_i16] = ACTIONS(1000), - [anon_sym_u32] = ACTIONS(1000), - [anon_sym_i32] = ACTIONS(1000), - [anon_sym_u64] = ACTIONS(1000), - [anon_sym_i64] = ACTIONS(1000), - [anon_sym_u128] = ACTIONS(1000), - [anon_sym_i128] = ACTIONS(1000), - [anon_sym_isize] = ACTIONS(1000), - [anon_sym_usize] = ACTIONS(1000), - [anon_sym_f32] = ACTIONS(1000), - [anon_sym_f64] = ACTIONS(1000), - [anon_sym_bool] = ACTIONS(1000), - [anon_sym_str] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_PERCENT] = ACTIONS(1000), - [anon_sym_CARET] = ACTIONS(1000), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_AMP_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(1002), - [anon_sym_LT_LT] = ACTIONS(1000), - [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PERCENT_EQ] = ACTIONS(1002), - [anon_sym_CARET_EQ] = ACTIONS(1002), - [anon_sym_AMP_EQ] = ACTIONS(1002), - [anon_sym_PIPE_EQ] = ACTIONS(1002), - [anon_sym_LT_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_GT_EQ] = ACTIONS(1002), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_GT_EQ] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_AT] = ACTIONS(1002), - [anon_sym__] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_COLON_COLON] = ACTIONS(1002), - [anon_sym_DASH_GT] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(1002), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_async] = ACTIONS(1000), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_gen] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_impl] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(1000), - [anon_sym_pub] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_trait] = ACTIONS(1000), - [anon_sym_type] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_unsafe] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_where] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [sym_mutable_specifier] = ACTIONS(1000), - [sym_integer_literal] = ACTIONS(1002), - [aux_sym_string_literal_token1] = ACTIONS(1002), - [sym_char_literal] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(1002), - [sym__raw_string_literal_start] = ACTIONS(1002), - [sym_float_literal] = ACTIONS(1002), - }, - [STATE(187)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1967), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), + [aux_sym_tuple_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(986), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -38960,392 +38836,980 @@ 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(757), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(184)] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_EQ_GT] = ACTIONS(990), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(990), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u128] = ACTIONS(988), + [anon_sym_i128] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PERCENT_EQ] = ACTIONS(990), + [anon_sym_CARET_EQ] = ACTIONS(990), + [anon_sym_AMP_EQ] = ACTIONS(990), + [anon_sym_PIPE_EQ] = ACTIONS(990), + [anon_sym_LT_LT_EQ] = ACTIONS(990), + [anon_sym_GT_GT_EQ] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(990), + [anon_sym_BANG_EQ] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(990), + [anon_sym_LT_EQ] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(990), + [anon_sym__] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_COLON_COLON] = ACTIONS(990), + [anon_sym_DASH_GT] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_async] = ACTIONS(988), + [anon_sym_await] = ACTIONS(988), + [anon_sym_become] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_fn] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_gen] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_impl] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_pub] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_trait] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_unsafe] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_where] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [sym_mutable_specifier] = ACTIONS(988), + [sym_integer_literal] = ACTIONS(990), + [aux_sym_string_literal_token1] = ACTIONS(990), + [sym_char_literal] = ACTIONS(990), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(990), + [sym__raw_string_literal_start] = ACTIONS(990), + [sym_float_literal] = ACTIONS(990), + }, + [STATE(185)] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_EQ_GT] = ACTIONS(994), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_u8] = ACTIONS(992), + [anon_sym_i8] = ACTIONS(992), + [anon_sym_u16] = ACTIONS(992), + [anon_sym_i16] = ACTIONS(992), + [anon_sym_u32] = ACTIONS(992), + [anon_sym_i32] = ACTIONS(992), + [anon_sym_u64] = ACTIONS(992), + [anon_sym_i64] = ACTIONS(992), + [anon_sym_u128] = ACTIONS(992), + [anon_sym_i128] = ACTIONS(992), + [anon_sym_isize] = ACTIONS(992), + [anon_sym_usize] = ACTIONS(992), + [anon_sym_f32] = ACTIONS(992), + [anon_sym_f64] = ACTIONS(992), + [anon_sym_bool] = ACTIONS(992), + [anon_sym_str] = ACTIONS(992), + [anon_sym_char] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_PERCENT] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(994), + [anon_sym_PIPE_PIPE] = ACTIONS(994), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(994), + [anon_sym_DASH_EQ] = ACTIONS(994), + [anon_sym_STAR_EQ] = ACTIONS(994), + [anon_sym_SLASH_EQ] = ACTIONS(994), + [anon_sym_PERCENT_EQ] = ACTIONS(994), + [anon_sym_CARET_EQ] = ACTIONS(994), + [anon_sym_AMP_EQ] = ACTIONS(994), + [anon_sym_PIPE_EQ] = ACTIONS(994), + [anon_sym_LT_LT_EQ] = ACTIONS(994), + [anon_sym_GT_GT_EQ] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym__] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(994), + [anon_sym_DASH_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_async] = ACTIONS(992), + [anon_sym_await] = ACTIONS(992), + [anon_sym_become] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_gen] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_impl] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_pub] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_static] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_trait] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_unsafe] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [sym_mutable_specifier] = ACTIONS(992), + [sym_integer_literal] = ACTIONS(994), + [aux_sym_string_literal_token1] = ACTIONS(994), + [sym_char_literal] = ACTIONS(994), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(992), + [sym_super] = ACTIONS(992), + [sym_crate] = ACTIONS(992), + [sym_metavariable] = ACTIONS(994), + [sym__raw_string_literal_start] = ACTIONS(994), + [sym_float_literal] = ACTIONS(994), + }, + [STATE(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [sym_identifier] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_EQ_GT] = ACTIONS(998), + [anon_sym_COLON] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(996), + [anon_sym_i8] = ACTIONS(996), + [anon_sym_u16] = ACTIONS(996), + [anon_sym_i16] = ACTIONS(996), + [anon_sym_u32] = ACTIONS(996), + [anon_sym_i32] = ACTIONS(996), + [anon_sym_u64] = ACTIONS(996), + [anon_sym_i64] = ACTIONS(996), + [anon_sym_u128] = ACTIONS(996), + [anon_sym_i128] = ACTIONS(996), + [anon_sym_isize] = ACTIONS(996), + [anon_sym_usize] = ACTIONS(996), + [anon_sym_f32] = ACTIONS(996), + [anon_sym_f64] = ACTIONS(996), + [anon_sym_bool] = ACTIONS(996), + [anon_sym_str] = ACTIONS(996), + [anon_sym_char] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_PERCENT] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PERCENT_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(998), + [anon_sym__] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_DASH_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(996), + [anon_sym_as] = ACTIONS(996), + [anon_sym_async] = ACTIONS(996), + [anon_sym_await] = ACTIONS(996), + [anon_sym_become] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_fn] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_gen] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_impl] = ACTIONS(996), + [anon_sym_let] = ACTIONS(996), + [anon_sym_loop] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_pub] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_static] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_unsafe] = ACTIONS(996), + [anon_sym_use] = ACTIONS(996), + [anon_sym_where] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [sym_mutable_specifier] = ACTIONS(996), + [sym_integer_literal] = ACTIONS(998), + [aux_sym_string_literal_token1] = ACTIONS(998), + [sym_char_literal] = ACTIONS(998), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(996), + [sym_super] = ACTIONS(996), + [sym_crate] = ACTIONS(996), + [sym_metavariable] = ACTIONS(998), + [sym__raw_string_literal_start] = ACTIONS(998), + [sym_float_literal] = ACTIONS(998), + }, + [STATE(187)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1555), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(188)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1530), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_EQ_GT] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_CARET_EQ] = ACTIONS(1006), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_DASH_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_await] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_gen] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_pub] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_where] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [sym_mutable_specifier] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), - [sym_crate] = ACTIONS(1004), - [sym_metavariable] = ACTIONS(1006), - [sym__raw_string_literal_start] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(189)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1527), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(189), [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_RPAREN] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_RBRACK] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_EQ_GT] = ACTIONS(1010), - [anon_sym_COLON] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(1010), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1008), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_AMP_AMP] = ACTIONS(1010), - [anon_sym_PIPE_PIPE] = ACTIONS(1010), - [anon_sym_LT_LT] = ACTIONS(1008), - [anon_sym_GT_GT] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PERCENT_EQ] = ACTIONS(1010), - [anon_sym_CARET_EQ] = ACTIONS(1010), - [anon_sym_AMP_EQ] = ACTIONS(1010), - [anon_sym_PIPE_EQ] = ACTIONS(1010), - [anon_sym_LT_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_GT_EQ] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_AT] = ACTIONS(1010), - [anon_sym__] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(1010), - [anon_sym_DASH_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_async] = ACTIONS(1008), - [anon_sym_await] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_fn] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_gen] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_impl] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_pub] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_trait] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_unsafe] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_where] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [sym_mutable_specifier] = ACTIONS(1008), - [sym_integer_literal] = ACTIONS(1010), - [aux_sym_string_literal_token1] = ACTIONS(1010), - [sym_char_literal] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1008), - [sym_super] = ACTIONS(1008), - [sym_crate] = ACTIONS(1008), - [sym_metavariable] = ACTIONS(1010), - [sym__raw_string_literal_start] = ACTIONS(1010), - [sym_float_literal] = ACTIONS(1010), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(190)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_let_condition] = STATE(2828), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym__] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_async] = ACTIONS(924), - [anon_sym_await] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_gen] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_type] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym_mutable_specifier] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(926), - [sym__raw_string_literal_start] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_let] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(191)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_let_condition] = STATE(2828), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_let] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), + }, + [STATE(192)] = { + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(1012), [anon_sym_SEMI] = ACTIONS(1014), [anon_sym_LPAREN] = ACTIONS(1014), @@ -39419,6 +39883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1012), [anon_sym_async] = ACTIONS(1012), [anon_sym_await] = ACTIONS(1012), + [anon_sym_become] = ACTIONS(1012), [anon_sym_break] = ACTIONS(1012), [anon_sym_const] = ACTIONS(1012), [anon_sym_continue] = ACTIONS(1012), @@ -39450,8 +39915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1014), [anon_sym_true] = ACTIONS(1012), [anon_sym_false] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(1012), [sym_super] = ACTIONS(1012), [sym_crate] = ACTIONS(1012), @@ -39459,1285 +39924,1296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1014), [sym_float_literal] = ACTIONS(1014), }, - [STATE(192)] = { - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_EQ_GT] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1016), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [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(1018), - [anon_sym_PIPE_PIPE] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1016), - [anon_sym_PLUS_EQ] = ACTIONS(1018), - [anon_sym_DASH_EQ] = ACTIONS(1018), - [anon_sym_STAR_EQ] = ACTIONS(1018), - [anon_sym_SLASH_EQ] = ACTIONS(1018), - [anon_sym_PERCENT_EQ] = ACTIONS(1018), - [anon_sym_CARET_EQ] = ACTIONS(1018), - [anon_sym_AMP_EQ] = ACTIONS(1018), - [anon_sym_PIPE_EQ] = ACTIONS(1018), - [anon_sym_LT_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_GT_EQ] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym__] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_COLON_COLON] = ACTIONS(1018), - [anon_sym_DASH_GT] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_async] = ACTIONS(1016), - [anon_sym_await] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_gen] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1016), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_trait] = ACTIONS(1016), - [anon_sym_type] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_unsafe] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [sym_mutable_specifier] = ACTIONS(1016), - [sym_integer_literal] = ACTIONS(1018), - [aux_sym_string_literal_token1] = ACTIONS(1018), - [sym_char_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1016), - [sym_super] = ACTIONS(1016), - [sym_crate] = ACTIONS(1016), - [sym_metavariable] = ACTIONS(1018), - [sym__raw_string_literal_start] = ACTIONS(1018), - [sym_float_literal] = ACTIONS(1018), - }, [STATE(193)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1498), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [aux_sym__non_special_token_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1020), - [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(1020), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(942), - [anon_sym_i8] = ACTIONS(942), - [anon_sym_u16] = ACTIONS(942), - [anon_sym_i16] = ACTIONS(942), - [anon_sym_u32] = ACTIONS(942), - [anon_sym_i32] = ACTIONS(942), - [anon_sym_u64] = ACTIONS(942), - [anon_sym_i64] = ACTIONS(942), - [anon_sym_u128] = ACTIONS(942), - [anon_sym_i128] = ACTIONS(942), - [anon_sym_isize] = ACTIONS(942), - [anon_sym_usize] = ACTIONS(942), - [anon_sym_f32] = ACTIONS(942), - [anon_sym_f64] = ACTIONS(942), - [anon_sym_bool] = ACTIONS(942), - [anon_sym_str] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1020), - [anon_sym_PIPE_PIPE] = ACTIONS(1020), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PERCENT_EQ] = ACTIONS(1020), - [anon_sym_CARET_EQ] = ACTIONS(1020), - [anon_sym_AMP_EQ] = ACTIONS(1020), - [anon_sym_PIPE_EQ] = ACTIONS(1020), - [anon_sym_LT_LT_EQ] = ACTIONS(1020), - [anon_sym_GT_GT_EQ] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1020), - [anon_sym_BANG_EQ] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1020), - [anon_sym_LT_EQ] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_COLON_COLON] = ACTIONS(1020), - [anon_sym_DASH_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_async] = ACTIONS(942), - [anon_sym_await] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_gen] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(942), - [anon_sym_loop] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_mod] = ACTIONS(942), - [anon_sym_pub] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_trait] = ACTIONS(942), - [anon_sym_type] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_unsafe] = ACTIONS(942), - [anon_sym_use] = ACTIONS(942), - [anon_sym_where] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [sym_mutable_specifier] = ACTIONS(942), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(942), - [anon_sym_false] = ACTIONS(942), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_crate] = ACTIONS(942), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(489), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(194)] = { [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_RBRACK] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_EQ_GT] = ACTIONS(1028), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(1028), - [anon_sym_u8] = ACTIONS(1026), - [anon_sym_i8] = ACTIONS(1026), - [anon_sym_u16] = ACTIONS(1026), - [anon_sym_i16] = ACTIONS(1026), - [anon_sym_u32] = ACTIONS(1026), - [anon_sym_i32] = ACTIONS(1026), - [anon_sym_u64] = ACTIONS(1026), - [anon_sym_i64] = ACTIONS(1026), - [anon_sym_u128] = ACTIONS(1026), - [anon_sym_i128] = ACTIONS(1026), - [anon_sym_isize] = ACTIONS(1026), - [anon_sym_usize] = ACTIONS(1026), - [anon_sym_f32] = ACTIONS(1026), - [anon_sym_f64] = ACTIONS(1026), - [anon_sym_bool] = ACTIONS(1026), - [anon_sym_str] = ACTIONS(1026), - [anon_sym_char] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_PERCENT] = ACTIONS(1026), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE_PIPE] = ACTIONS(1028), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PERCENT_EQ] = ACTIONS(1028), - [anon_sym_CARET_EQ] = ACTIONS(1028), - [anon_sym_AMP_EQ] = ACTIONS(1028), - [anon_sym_PIPE_EQ] = ACTIONS(1028), - [anon_sym_LT_LT_EQ] = ACTIONS(1028), - [anon_sym_GT_GT_EQ] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1026), - [anon_sym_EQ_EQ] = ACTIONS(1028), - [anon_sym_BANG_EQ] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1028), - [anon_sym_LT_EQ] = ACTIONS(1028), - [anon_sym_AT] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_COLON_COLON] = ACTIONS(1028), - [anon_sym_DASH_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_async] = ACTIONS(1026), - [anon_sym_await] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_fn] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_gen] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_impl] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1026), - [anon_sym_pub] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1026), - [anon_sym_type] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(1026), - [anon_sym_unsafe] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_where] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [sym_mutable_specifier] = ACTIONS(1026), - [sym_integer_literal] = ACTIONS(1028), - [aux_sym_string_literal_token1] = ACTIONS(1028), - [sym_char_literal] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1026), - [anon_sym_false] = ACTIONS(1026), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1026), - [sym_super] = ACTIONS(1026), - [sym_crate] = ACTIONS(1026), - [sym_metavariable] = ACTIONS(1028), - [sym__raw_string_literal_start] = ACTIONS(1028), - [sym_float_literal] = ACTIONS(1028), + [sym_identifier] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_EQ_GT] = ACTIONS(1022), + [anon_sym_COLON] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u128] = ACTIONS(1020), + [anon_sym_i128] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_str] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_PERCENT] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_PERCENT_EQ] = ACTIONS(1022), + [anon_sym_CARET_EQ] = ACTIONS(1022), + [anon_sym_AMP_EQ] = ACTIONS(1022), + [anon_sym_PIPE_EQ] = ACTIONS(1022), + [anon_sym_LT_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_GT_EQ] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_COLON_COLON] = ACTIONS(1022), + [anon_sym_DASH_GT] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_await] = ACTIONS(1020), + [anon_sym_become] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_fn] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_gen] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_impl] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_pub] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_unsafe] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [sym_mutable_specifier] = ACTIONS(1020), + [sym_integer_literal] = ACTIONS(1022), + [aux_sym_string_literal_token1] = ACTIONS(1022), + [sym_char_literal] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1020), + [sym_super] = ACTIONS(1020), + [sym_crate] = ACTIONS(1020), + [sym_metavariable] = ACTIONS(1022), + [sym__raw_string_literal_start] = ACTIONS(1022), + [sym_float_literal] = ACTIONS(1022), }, [STATE(195)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_EQ_GT] = ACTIONS(1026), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_PERCENT] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_PERCENT_EQ] = ACTIONS(1026), + [anon_sym_CARET_EQ] = ACTIONS(1026), + [anon_sym_AMP_EQ] = ACTIONS(1026), + [anon_sym_PIPE_EQ] = ACTIONS(1026), + [anon_sym_LT_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_GT_EQ] = ACTIONS(1026), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_COLON_COLON] = ACTIONS(1026), + [anon_sym_DASH_GT] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_become] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_fn] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_gen] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_impl] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_pub] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_trait] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [sym_mutable_specifier] = ACTIONS(1024), + [sym_integer_literal] = ACTIONS(1026), + [aux_sym_string_literal_token1] = ACTIONS(1026), + [sym_char_literal] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1024), + [sym_super] = ACTIONS(1024), + [sym_crate] = ACTIONS(1024), + [sym_metavariable] = ACTIONS(1026), + [sym__raw_string_literal_start] = ACTIONS(1026), + [sym_float_literal] = ACTIONS(1026), }, [STATE(196)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_EQ_GT] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_u8] = ACTIONS(1028), + [anon_sym_i8] = ACTIONS(1028), + [anon_sym_u16] = ACTIONS(1028), + [anon_sym_i16] = ACTIONS(1028), + [anon_sym_u32] = ACTIONS(1028), + [anon_sym_i32] = ACTIONS(1028), + [anon_sym_u64] = ACTIONS(1028), + [anon_sym_i64] = ACTIONS(1028), + [anon_sym_u128] = ACTIONS(1028), + [anon_sym_i128] = ACTIONS(1028), + [anon_sym_isize] = ACTIONS(1028), + [anon_sym_usize] = ACTIONS(1028), + [anon_sym_f32] = ACTIONS(1028), + [anon_sym_f64] = ACTIONS(1028), + [anon_sym_bool] = ACTIONS(1028), + [anon_sym_str] = ACTIONS(1028), + [anon_sym_char] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PERCENT_EQ] = ACTIONS(1030), + [anon_sym_CARET_EQ] = ACTIONS(1030), + [anon_sym_AMP_EQ] = ACTIONS(1030), + [anon_sym_PIPE_EQ] = ACTIONS(1030), + [anon_sym_LT_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1030), + [anon_sym_BANG_EQ] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_COLON_COLON] = ACTIONS(1030), + [anon_sym_DASH_GT] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1028), + [anon_sym_await] = ACTIONS(1028), + [anon_sym_become] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_gen] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_impl] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1028), + [anon_sym_pub] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsafe] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [sym_mutable_specifier] = ACTIONS(1028), + [sym_integer_literal] = ACTIONS(1030), + [aux_sym_string_literal_token1] = ACTIONS(1030), + [sym_char_literal] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1028), + [sym_super] = ACTIONS(1028), + [sym_crate] = ACTIONS(1028), + [sym_metavariable] = ACTIONS(1030), + [sym__raw_string_literal_start] = ACTIONS(1030), + [sym_float_literal] = ACTIONS(1030), }, [STATE(197)] = { [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_RBRACK] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_EQ_GT] = ACTIONS(1032), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1032), - [anon_sym_u8] = ACTIONS(1030), - [anon_sym_i8] = ACTIONS(1030), - [anon_sym_u16] = ACTIONS(1030), - [anon_sym_i16] = ACTIONS(1030), - [anon_sym_u32] = ACTIONS(1030), - [anon_sym_i32] = ACTIONS(1030), - [anon_sym_u64] = ACTIONS(1030), - [anon_sym_i64] = ACTIONS(1030), - [anon_sym_u128] = ACTIONS(1030), - [anon_sym_i128] = ACTIONS(1030), - [anon_sym_isize] = ACTIONS(1030), - [anon_sym_usize] = ACTIONS(1030), - [anon_sym_f32] = ACTIONS(1030), - [anon_sym_f64] = ACTIONS(1030), - [anon_sym_bool] = ACTIONS(1030), - [anon_sym_str] = ACTIONS(1030), - [anon_sym_char] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1030), - [anon_sym_GT_GT] = ACTIONS(1030), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [anon_sym_DASH_EQ] = ACTIONS(1032), - [anon_sym_STAR_EQ] = ACTIONS(1032), - [anon_sym_SLASH_EQ] = ACTIONS(1032), - [anon_sym_PERCENT_EQ] = ACTIONS(1032), - [anon_sym_CARET_EQ] = ACTIONS(1032), - [anon_sym_AMP_EQ] = ACTIONS(1032), - [anon_sym_PIPE_EQ] = ACTIONS(1032), - [anon_sym_LT_LT_EQ] = ACTIONS(1032), - [anon_sym_GT_GT_EQ] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1032), - [anon_sym__] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1032), - [anon_sym_DASH_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_async] = ACTIONS(1030), - [anon_sym_await] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_fn] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_gen] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_impl] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_mod] = ACTIONS(1030), - [anon_sym_pub] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_trait] = ACTIONS(1030), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1030), - [anon_sym_unsafe] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_where] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [sym_mutable_specifier] = ACTIONS(1030), - [sym_integer_literal] = ACTIONS(1032), - [aux_sym_string_literal_token1] = ACTIONS(1032), - [sym_char_literal] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1030), - [sym_super] = ACTIONS(1030), - [sym_crate] = ACTIONS(1030), - [sym_metavariable] = ACTIONS(1032), - [sym__raw_string_literal_start] = ACTIONS(1032), - [sym_float_literal] = ACTIONS(1032), + [sym_identifier] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1034), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_RPAREN] = ACTIONS(1034), + [anon_sym_LBRACK] = ACTIONS(1034), + [anon_sym_RBRACK] = ACTIONS(1034), + [anon_sym_LBRACE] = ACTIONS(1034), + [anon_sym_RBRACE] = ACTIONS(1034), + [anon_sym_EQ_GT] = ACTIONS(1034), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1034), + [anon_sym_u8] = ACTIONS(1032), + [anon_sym_i8] = ACTIONS(1032), + [anon_sym_u16] = ACTIONS(1032), + [anon_sym_i16] = ACTIONS(1032), + [anon_sym_u32] = ACTIONS(1032), + [anon_sym_i32] = ACTIONS(1032), + [anon_sym_u64] = ACTIONS(1032), + [anon_sym_i64] = ACTIONS(1032), + [anon_sym_u128] = ACTIONS(1032), + [anon_sym_i128] = ACTIONS(1032), + [anon_sym_isize] = ACTIONS(1032), + [anon_sym_usize] = ACTIONS(1032), + [anon_sym_f32] = ACTIONS(1032), + [anon_sym_f64] = ACTIONS(1032), + [anon_sym_bool] = ACTIONS(1032), + [anon_sym_str] = ACTIONS(1032), + [anon_sym_char] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_BANG] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1034), + [anon_sym_PIPE_PIPE] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1034), + [anon_sym_DASH_EQ] = ACTIONS(1034), + [anon_sym_STAR_EQ] = ACTIONS(1034), + [anon_sym_SLASH_EQ] = ACTIONS(1034), + [anon_sym_PERCENT_EQ] = ACTIONS(1034), + [anon_sym_CARET_EQ] = ACTIONS(1034), + [anon_sym_AMP_EQ] = ACTIONS(1034), + [anon_sym_PIPE_EQ] = ACTIONS(1034), + [anon_sym_LT_LT_EQ] = ACTIONS(1034), + [anon_sym_GT_GT_EQ] = ACTIONS(1034), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1034), + [anon_sym_BANG_EQ] = ACTIONS(1034), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1034), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_AT] = ACTIONS(1034), + [anon_sym__] = ACTIONS(1032), + [anon_sym_DOT] = ACTIONS(1032), + [anon_sym_DOT_DOT] = ACTIONS(1032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1034), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), + [anon_sym_COMMA] = ACTIONS(1034), + [anon_sym_COLON_COLON] = ACTIONS(1034), + [anon_sym_DASH_GT] = ACTIONS(1034), + [anon_sym_POUND] = ACTIONS(1034), + [anon_sym_SQUOTE] = ACTIONS(1032), + [anon_sym_as] = ACTIONS(1032), + [anon_sym_async] = ACTIONS(1032), + [anon_sym_await] = ACTIONS(1032), + [anon_sym_become] = ACTIONS(1032), + [anon_sym_break] = ACTIONS(1032), + [anon_sym_const] = ACTIONS(1032), + [anon_sym_continue] = ACTIONS(1032), + [anon_sym_default] = ACTIONS(1032), + [anon_sym_enum] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(1032), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_gen] = ACTIONS(1032), + [anon_sym_if] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1032), + [anon_sym_let] = ACTIONS(1032), + [anon_sym_loop] = ACTIONS(1032), + [anon_sym_match] = ACTIONS(1032), + [anon_sym_mod] = ACTIONS(1032), + [anon_sym_pub] = ACTIONS(1032), + [anon_sym_return] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1032), + [anon_sym_struct] = ACTIONS(1032), + [anon_sym_trait] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1032), + [anon_sym_union] = ACTIONS(1032), + [anon_sym_unsafe] = ACTIONS(1032), + [anon_sym_use] = ACTIONS(1032), + [anon_sym_where] = ACTIONS(1032), + [anon_sym_while] = ACTIONS(1032), + [sym_mutable_specifier] = ACTIONS(1032), + [sym_integer_literal] = ACTIONS(1034), + [aux_sym_string_literal_token1] = ACTIONS(1034), + [sym_char_literal] = ACTIONS(1034), + [anon_sym_true] = ACTIONS(1032), + [anon_sym_false] = ACTIONS(1032), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1032), + [sym_super] = ACTIONS(1032), + [sym_crate] = ACTIONS(1032), + [sym_metavariable] = ACTIONS(1034), + [sym__raw_string_literal_start] = ACTIONS(1034), + [sym_float_literal] = ACTIONS(1034), }, [STATE(198)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1973), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1555), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [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(757), + [anon_sym__] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1004), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(199)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1530), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(199), [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [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(757), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1008), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(200)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(2828), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [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(757), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(201)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_let_condition] = STATE(2828), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_RBRACK] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_EQ_GT] = ACTIONS(1036), - [anon_sym_COLON] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_STAR] = ACTIONS(1034), - [anon_sym_QMARK] = ACTIONS(1036), - [anon_sym_u8] = ACTIONS(1034), - [anon_sym_i8] = ACTIONS(1034), - [anon_sym_u16] = ACTIONS(1034), - [anon_sym_i16] = ACTIONS(1034), - [anon_sym_u32] = ACTIONS(1034), - [anon_sym_i32] = ACTIONS(1034), - [anon_sym_u64] = ACTIONS(1034), - [anon_sym_i64] = ACTIONS(1034), - [anon_sym_u128] = ACTIONS(1034), - [anon_sym_i128] = ACTIONS(1034), - [anon_sym_isize] = ACTIONS(1034), - [anon_sym_usize] = ACTIONS(1034), - [anon_sym_f32] = ACTIONS(1034), - [anon_sym_f64] = ACTIONS(1034), - [anon_sym_bool] = ACTIONS(1034), - [anon_sym_str] = ACTIONS(1034), - [anon_sym_char] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_SLASH] = ACTIONS(1034), - [anon_sym_PERCENT] = ACTIONS(1034), - [anon_sym_CARET] = ACTIONS(1034), - [anon_sym_BANG] = ACTIONS(1034), - [anon_sym_AMP] = ACTIONS(1034), - [anon_sym_PIPE] = ACTIONS(1034), - [anon_sym_AMP_AMP] = ACTIONS(1036), - [anon_sym_PIPE_PIPE] = ACTIONS(1036), - [anon_sym_LT_LT] = ACTIONS(1034), - [anon_sym_GT_GT] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PERCENT_EQ] = ACTIONS(1036), - [anon_sym_CARET_EQ] = ACTIONS(1036), - [anon_sym_AMP_EQ] = ACTIONS(1036), - [anon_sym_PIPE_EQ] = ACTIONS(1036), - [anon_sym_LT_LT_EQ] = ACTIONS(1036), - [anon_sym_GT_GT_EQ] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_EQ_EQ] = ACTIONS(1036), - [anon_sym_BANG_EQ] = ACTIONS(1036), - [anon_sym_GT] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(1034), - [anon_sym_GT_EQ] = ACTIONS(1036), - [anon_sym_LT_EQ] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(1036), - [anon_sym__] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1036), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_DASH_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(1036), - [anon_sym_SQUOTE] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_async] = ACTIONS(1034), - [anon_sym_await] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_default] = ACTIONS(1034), - [anon_sym_enum] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_gen] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_impl] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_mod] = ACTIONS(1034), - [anon_sym_pub] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_static] = ACTIONS(1034), - [anon_sym_struct] = ACTIONS(1034), - [anon_sym_trait] = ACTIONS(1034), - [anon_sym_type] = ACTIONS(1034), - [anon_sym_union] = ACTIONS(1034), - [anon_sym_unsafe] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_where] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [sym_mutable_specifier] = ACTIONS(1034), - [sym_integer_literal] = ACTIONS(1036), - [aux_sym_string_literal_token1] = ACTIONS(1036), - [sym_char_literal] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1034), - [sym_super] = ACTIONS(1034), - [sym_crate] = ACTIONS(1034), - [sym_metavariable] = ACTIONS(1036), - [sym__raw_string_literal_start] = ACTIONS(1036), - [sym_float_literal] = ACTIONS(1036), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_let] = ACTIONS(930), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(202)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1527), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_RBRACK] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_EQ_GT] = ACTIONS(1040), - [anon_sym_COLON] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_STAR] = ACTIONS(1038), - [anon_sym_QMARK] = ACTIONS(1040), - [anon_sym_u8] = ACTIONS(1038), - [anon_sym_i8] = ACTIONS(1038), - [anon_sym_u16] = ACTIONS(1038), - [anon_sym_i16] = ACTIONS(1038), - [anon_sym_u32] = ACTIONS(1038), - [anon_sym_i32] = ACTIONS(1038), - [anon_sym_u64] = ACTIONS(1038), - [anon_sym_i64] = ACTIONS(1038), - [anon_sym_u128] = ACTIONS(1038), - [anon_sym_i128] = ACTIONS(1038), - [anon_sym_isize] = ACTIONS(1038), - [anon_sym_usize] = ACTIONS(1038), - [anon_sym_f32] = ACTIONS(1038), - [anon_sym_f64] = ACTIONS(1038), - [anon_sym_bool] = ACTIONS(1038), - [anon_sym_str] = ACTIONS(1038), - [anon_sym_char] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_SLASH] = ACTIONS(1038), - [anon_sym_PERCENT] = ACTIONS(1038), - [anon_sym_CARET] = ACTIONS(1038), - [anon_sym_BANG] = ACTIONS(1038), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(1036), [anon_sym_AMP] = ACTIONS(1038), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1040), - [anon_sym_PIPE_PIPE] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1040), - [anon_sym_DASH_EQ] = ACTIONS(1040), - [anon_sym_STAR_EQ] = ACTIONS(1040), - [anon_sym_SLASH_EQ] = ACTIONS(1040), - [anon_sym_PERCENT_EQ] = ACTIONS(1040), - [anon_sym_CARET_EQ] = ACTIONS(1040), - [anon_sym_AMP_EQ] = ACTIONS(1040), - [anon_sym_PIPE_EQ] = ACTIONS(1040), - [anon_sym_LT_LT_EQ] = ACTIONS(1040), - [anon_sym_GT_GT_EQ] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_EQ_EQ] = ACTIONS(1040), - [anon_sym_BANG_EQ] = ACTIONS(1040), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT_EQ] = ACTIONS(1040), - [anon_sym_LT_EQ] = ACTIONS(1040), - [anon_sym_AT] = ACTIONS(1040), - [anon_sym__] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), - [anon_sym_COMMA] = ACTIONS(1040), - [anon_sym_COLON_COLON] = ACTIONS(1040), - [anon_sym_DASH_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1040), - [anon_sym_SQUOTE] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(1038), - [anon_sym_await] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_default] = ACTIONS(1038), - [anon_sym_enum] = ACTIONS(1038), - [anon_sym_fn] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_gen] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_impl] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_mod] = ACTIONS(1038), - [anon_sym_pub] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_static] = ACTIONS(1038), - [anon_sym_struct] = ACTIONS(1038), - [anon_sym_trait] = ACTIONS(1038), - [anon_sym_type] = ACTIONS(1038), - [anon_sym_union] = ACTIONS(1038), - [anon_sym_unsafe] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_where] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [sym_mutable_specifier] = ACTIONS(1038), - [sym_integer_literal] = ACTIONS(1040), - [aux_sym_string_literal_token1] = ACTIONS(1040), - [sym_char_literal] = ACTIONS(1040), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1038), - [sym_super] = ACTIONS(1038), - [sym_crate] = ACTIONS(1038), - [sym_metavariable] = ACTIONS(1040), - [sym__raw_string_literal_start] = ACTIONS(1040), - [sym_float_literal] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(976), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(203)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1498), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_DASH_GT] = ACTIONS(1018), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), [sym_identifier] = ACTIONS(1042), [anon_sym_SEMI] = ACTIONS(1044), [anon_sym_LPAREN] = ACTIONS(1044), @@ -40811,6 +41287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1042), [anon_sym_async] = ACTIONS(1042), [anon_sym_await] = ACTIONS(1042), + [anon_sym_become] = ACTIONS(1042), [anon_sym_break] = ACTIONS(1042), [anon_sym_const] = ACTIONS(1042), [anon_sym_continue] = ACTIONS(1042), @@ -40842,8 +41319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1044), [anon_sym_true] = ACTIONS(1042), [anon_sym_false] = ACTIONS(1042), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(1042), [sym_super] = ACTIONS(1042), [sym_crate] = ACTIONS(1042), @@ -40851,9 +41328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1044), [sym_float_literal] = ACTIONS(1044), }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), [sym_identifier] = ACTIONS(1046), [anon_sym_SEMI] = ACTIONS(1048), [anon_sym_LPAREN] = ACTIONS(1048), @@ -40864,7 +41341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1048), [anon_sym_EQ_GT] = ACTIONS(1048), [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1046), [anon_sym_PLUS] = ACTIONS(1046), [anon_sym_STAR] = ACTIONS(1046), [anon_sym_QMARK] = ACTIONS(1048), @@ -40927,6 +41404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1046), [anon_sym_async] = ACTIONS(1046), [anon_sym_await] = ACTIONS(1046), + [anon_sym_become] = ACTIONS(1046), [anon_sym_break] = ACTIONS(1046), [anon_sym_const] = ACTIONS(1046), [anon_sym_continue] = ACTIONS(1046), @@ -40958,17 +41436,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1048), [anon_sym_true] = ACTIONS(1046), [anon_sym_false] = ACTIONS(1046), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(1046), [sym_super] = ACTIONS(1046), [sym_crate] = ACTIONS(1046), + [sym_metavariable] = ACTIONS(1048), [sym__raw_string_literal_start] = ACTIONS(1048), [sym_float_literal] = ACTIONS(1048), }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), + [STATE(206)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1555), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(359), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1004), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(207)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1530), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(359), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1008), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(208)] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), [sym_identifier] = ACTIONS(1050), [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_LPAREN] = ACTIONS(1052), @@ -40979,7 +41692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_EQ_GT] = ACTIONS(1052), [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DOLLAR] = ACTIONS(1050), [anon_sym_PLUS] = ACTIONS(1050), [anon_sym_STAR] = ACTIONS(1050), [anon_sym_QMARK] = ACTIONS(1052), @@ -41042,6 +41755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1050), [anon_sym_async] = ACTIONS(1050), [anon_sym_await] = ACTIONS(1050), + [anon_sym_become] = ACTIONS(1050), [anon_sym_break] = ACTIONS(1050), [anon_sym_const] = ACTIONS(1050), [anon_sym_continue] = ACTIONS(1050), @@ -41073,17 +41787,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1052), [anon_sym_true] = ACTIONS(1050), [anon_sym_false] = ACTIONS(1050), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(1050), [sym_super] = ACTIONS(1050), [sym_crate] = ACTIONS(1050), + [sym_metavariable] = ACTIONS(1052), [sym__raw_string_literal_start] = ACTIONS(1052), [sym_float_literal] = ACTIONS(1052), }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), [sym_identifier] = ACTIONS(1054), [anon_sym_SEMI] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(1056), @@ -41094,7 +41809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_EQ_GT] = ACTIONS(1056), [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_STAR] = ACTIONS(1054), [anon_sym_QMARK] = ACTIONS(1056), @@ -41157,6 +41872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(1054), [anon_sym_async] = ACTIONS(1054), [anon_sym_await] = ACTIONS(1054), + [anon_sym_become] = ACTIONS(1054), [anon_sym_break] = ACTIONS(1054), [anon_sym_const] = ACTIONS(1054), [anon_sym_continue] = ACTIONS(1054), @@ -41188,298 +41904,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_char_literal] = ACTIONS(1056), [anon_sym_true] = ACTIONS(1054), [anon_sym_false] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(1054), [sym_super] = ACTIONS(1054), [sym_crate] = ACTIONS(1054), + [sym_metavariable] = ACTIONS(1056), [sym__raw_string_literal_start] = ACTIONS(1056), [sym_float_literal] = ACTIONS(1056), }, - [STATE(207)] = { - [sym_attribute_item] = STATE(424), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3033), - [sym_variadic_parameter] = STATE(3033), - [sym_parameter] = STATE(3033), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_RBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_EQ_GT] = ACTIONS(1136), - [anon_sym_COLON] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1136), - [anon_sym_BANG_EQ] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_GT_EQ] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_DASH_GT] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_as] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_await] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_where] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [sym_mutable_specifier] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym__raw_string_literal_start] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), - }, - [STATE(209)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(344), + [STATE(210)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1527), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41498,448 +41986,222 @@ 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(354), + [anon_sym_DASH] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym__] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(210)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym_DASH_GT] = ACTIONS(976), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(211)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACK] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1058), + [anon_sym_i8] = ACTIONS(1058), + [anon_sym_u16] = ACTIONS(1058), + [anon_sym_i16] = ACTIONS(1058), + [anon_sym_u32] = ACTIONS(1058), + [anon_sym_i32] = ACTIONS(1058), + [anon_sym_u64] = ACTIONS(1058), + [anon_sym_i64] = ACTIONS(1058), + [anon_sym_u128] = ACTIONS(1058), + [anon_sym_i128] = ACTIONS(1058), + [anon_sym_isize] = ACTIONS(1058), + [anon_sym_usize] = ACTIONS(1058), + [anon_sym_f32] = ACTIONS(1058), + [anon_sym_f64] = ACTIONS(1058), + [anon_sym_bool] = ACTIONS(1058), + [anon_sym_str] = ACTIONS(1058), + [anon_sym_char] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_AMP_AMP] = ACTIONS(1060), + [anon_sym_PIPE_PIPE] = ACTIONS(1060), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PERCENT_EQ] = ACTIONS(1060), + [anon_sym_CARET_EQ] = ACTIONS(1060), + [anon_sym_AMP_EQ] = ACTIONS(1060), + [anon_sym_PIPE_EQ] = ACTIONS(1060), + [anon_sym_LT_LT_EQ] = ACTIONS(1060), + [anon_sym_GT_GT_EQ] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1058), + [anon_sym_become] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_fn] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_gen] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_impl] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_mod] = ACTIONS(1058), + [anon_sym_pub] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_trait] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_unsafe] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_where] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1058), + [sym_integer_literal] = ACTIONS(1060), + [aux_sym_string_literal_token1] = ACTIONS(1060), + [sym_char_literal] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym__raw_string_literal_start] = ACTIONS(1060), + [sym_float_literal] = ACTIONS(1060), }, [STATE(212)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1498), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(213)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -41958,565 +42220,692 @@ 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(354), + [anon_sym_DASH] = ACTIONS(359), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym__] = ACTIONS(1016), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym_DASH_GT] = ACTIONS(1018), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(213)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1732), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1062), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(1064), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(214)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1741), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym__] = ACTIONS(1066), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(1068), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(215)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1864), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(215), [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym__] = ACTIONS(1070), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(1072), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(216)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1750), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(216), [sym_block_comment] = STATE(216), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_DASH_GT] = ACTIONS(1076), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(217)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1980), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1530), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(217), [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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(359), + [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(908), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1008), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(218)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(218), [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(344), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42543,325 +42932,331 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(219)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1921), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(470), + [aux_sym_tuple_expression_repeat1] = STATE(230), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1078), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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__] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(220)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1930), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [aux_sym_tuple_expression_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [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__] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(221)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(344), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42888,93 +43283,97 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(222)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1586), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [sym_identifier] = ACTIONS(344), + [aux_sym_tuple_expression_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1082), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -42993,105 +43392,222 @@ 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(354), + [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(1190), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(223)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(223), [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(344), + [aux_sym__non_special_token_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(710), + [anon_sym_COLON] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_STAR] = ACTIONS(720), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(720), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PERCENT] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(720), + [anon_sym_BANG] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(710), + [anon_sym_PIPE_PIPE] = ACTIONS(710), + [anon_sym_LT_LT] = ACTIONS(720), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_PLUS_EQ] = ACTIONS(710), + [anon_sym_DASH_EQ] = ACTIONS(710), + [anon_sym_STAR_EQ] = ACTIONS(710), + [anon_sym_SLASH_EQ] = ACTIONS(710), + [anon_sym_PERCENT_EQ] = ACTIONS(710), + [anon_sym_CARET_EQ] = ACTIONS(710), + [anon_sym_AMP_EQ] = ACTIONS(710), + [anon_sym_PIPE_EQ] = ACTIONS(710), + [anon_sym_LT_LT_EQ] = ACTIONS(710), + [anon_sym_GT_GT_EQ] = ACTIONS(710), + [anon_sym_EQ] = ACTIONS(720), + [anon_sym_EQ_EQ] = ACTIONS(710), + [anon_sym_BANG_EQ] = ACTIONS(710), + [anon_sym_GT] = ACTIONS(720), + [anon_sym_LT] = ACTIONS(720), + [anon_sym_GT_EQ] = ACTIONS(710), + [anon_sym_LT_EQ] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym__] = ACTIONS(720), + [anon_sym_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT] = ACTIONS(720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(710), + [anon_sym_COMMA] = ACTIONS(710), + [anon_sym_COLON_COLON] = ACTIONS(710), + [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(710), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_as] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_become] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_fn] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_gen] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_impl] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_loop] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1084), + [anon_sym_mod] = ACTIONS(1084), + [anon_sym_pub] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_trait] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_unsafe] = ACTIONS(1084), + [anon_sym_use] = ACTIONS(1084), + [anon_sym_where] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [sym_mutable_specifier] = ACTIONS(1084), + [sym_integer_literal] = ACTIONS(1086), + [aux_sym_string_literal_token1] = ACTIONS(1086), + [sym_char_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1084), + [anon_sym_false] = ACTIONS(1084), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_crate] = ACTIONS(1084), + [sym__raw_string_literal_start] = ACTIONS(1086), + [sym_float_literal] = ACTIONS(1086), + }, + [STATE(224)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1088), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43118,210 +43634,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1722), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1200), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1202), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(225)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1498), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1188), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43340,561 +43741,575 @@ 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(359), [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(1016), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1018), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(226)] = { [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_EQ_GT] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_CARET_EQ] = ACTIONS(1006), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_DASH_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_await] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_gen] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_pub] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_where] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [sym_mutable_specifier] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), - [sym_crate] = ACTIONS(1004), - [sym__raw_string_literal_start] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u128] = ACTIONS(968), + [anon_sym_i128] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_str] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PERCENT_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym__] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_DASH_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = ACTIONS(968), + [anon_sym_await] = ACTIONS(968), + [anon_sym_become] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_gen] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_impl] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_pub] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_trait] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(970), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [STATE(227)] = { [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_identifier] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_RBRACK] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_EQ_GT] = ACTIONS(1014), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1014), - [anon_sym_u8] = ACTIONS(1012), - [anon_sym_i8] = ACTIONS(1012), - [anon_sym_u16] = ACTIONS(1012), - [anon_sym_i16] = ACTIONS(1012), - [anon_sym_u32] = ACTIONS(1012), - [anon_sym_i32] = ACTIONS(1012), - [anon_sym_u64] = ACTIONS(1012), - [anon_sym_i64] = ACTIONS(1012), - [anon_sym_u128] = ACTIONS(1012), - [anon_sym_i128] = ACTIONS(1012), - [anon_sym_isize] = ACTIONS(1012), - [anon_sym_usize] = ACTIONS(1012), - [anon_sym_f32] = ACTIONS(1012), - [anon_sym_f64] = ACTIONS(1012), - [anon_sym_bool] = ACTIONS(1012), - [anon_sym_str] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_AMP_AMP] = ACTIONS(1014), - [anon_sym_PIPE_PIPE] = ACTIONS(1014), - [anon_sym_LT_LT] = ACTIONS(1012), - [anon_sym_GT_GT] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PERCENT_EQ] = ACTIONS(1014), - [anon_sym_CARET_EQ] = ACTIONS(1014), - [anon_sym_AMP_EQ] = ACTIONS(1014), - [anon_sym_PIPE_EQ] = ACTIONS(1014), - [anon_sym_LT_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_GT_EQ] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1014), - [anon_sym__] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_COLON_COLON] = ACTIONS(1014), - [anon_sym_DASH_GT] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1012), - [anon_sym_await] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_gen] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_pub] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_trait] = ACTIONS(1012), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_unsafe] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_where] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [sym_mutable_specifier] = ACTIONS(1012), - [sym_integer_literal] = ACTIONS(1014), - [aux_sym_string_literal_token1] = ACTIONS(1014), - [sym_char_literal] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), - [sym_crate] = ACTIONS(1012), - [sym__raw_string_literal_start] = ACTIONS(1014), - [sym_float_literal] = ACTIONS(1014), + [sym_identifier] = ACTIONS(968), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_RBRACK] = ACTIONS(970), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_EQ_GT] = ACTIONS(970), + [anon_sym_COLON] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(970), + [anon_sym_u8] = ACTIONS(968), + [anon_sym_i8] = ACTIONS(968), + [anon_sym_u16] = ACTIONS(968), + [anon_sym_i16] = ACTIONS(968), + [anon_sym_u32] = ACTIONS(968), + [anon_sym_i32] = ACTIONS(968), + [anon_sym_u64] = ACTIONS(968), + [anon_sym_i64] = ACTIONS(968), + [anon_sym_u128] = ACTIONS(968), + [anon_sym_i128] = ACTIONS(968), + [anon_sym_isize] = ACTIONS(968), + [anon_sym_usize] = ACTIONS(968), + [anon_sym_f32] = ACTIONS(968), + [anon_sym_f64] = ACTIONS(968), + [anon_sym_bool] = ACTIONS(968), + [anon_sym_str] = ACTIONS(968), + [anon_sym_char] = ACTIONS(968), + [anon_sym_DASH] = ACTIONS(968), + [anon_sym_SLASH] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(968), + [anon_sym_CARET] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(970), + [anon_sym_PIPE_PIPE] = ACTIONS(970), + [anon_sym_LT_LT] = ACTIONS(968), + [anon_sym_GT_GT] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PERCENT_EQ] = ACTIONS(970), + [anon_sym_CARET_EQ] = ACTIONS(970), + [anon_sym_AMP_EQ] = ACTIONS(970), + [anon_sym_PIPE_EQ] = ACTIONS(970), + [anon_sym_LT_LT_EQ] = ACTIONS(970), + [anon_sym_GT_GT_EQ] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(970), + [anon_sym_BANG_EQ] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(970), + [anon_sym_LT_EQ] = ACTIONS(970), + [anon_sym_AT] = ACTIONS(970), + [anon_sym__] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(970), + [anon_sym_DASH_GT] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_async] = ACTIONS(968), + [anon_sym_await] = ACTIONS(968), + [anon_sym_become] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_default] = ACTIONS(968), + [anon_sym_enum] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_gen] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_impl] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_mod] = ACTIONS(968), + [anon_sym_pub] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_static] = ACTIONS(968), + [anon_sym_struct] = ACTIONS(968), + [anon_sym_trait] = ACTIONS(968), + [anon_sym_type] = ACTIONS(968), + [anon_sym_union] = ACTIONS(968), + [anon_sym_unsafe] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_where] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(970), + [aux_sym_string_literal_token1] = ACTIONS(970), + [sym_char_literal] = ACTIONS(970), + [anon_sym_true] = ACTIONS(968), + [anon_sym_false] = ACTIONS(968), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(968), + [sym_super] = ACTIONS(968), + [sym_crate] = ACTIONS(968), + [sym_metavariable] = ACTIONS(970), + [sym__raw_string_literal_start] = ACTIONS(970), + [sym_float_literal] = ACTIONS(970), }, [STATE(228)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_LPAREN] = ACTIONS(1094), + [anon_sym_RPAREN] = ACTIONS(1094), + [anon_sym_LBRACK] = ACTIONS(1094), + [anon_sym_RBRACK] = ACTIONS(1094), + [anon_sym_LBRACE] = ACTIONS(1094), + [anon_sym_RBRACE] = ACTIONS(1094), + [anon_sym_EQ_GT] = ACTIONS(1094), + [anon_sym_COLON] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1092), + [anon_sym_STAR] = ACTIONS(1092), + [anon_sym_QMARK] = ACTIONS(1094), + [anon_sym_u8] = ACTIONS(1092), + [anon_sym_i8] = ACTIONS(1092), + [anon_sym_u16] = ACTIONS(1092), + [anon_sym_i16] = ACTIONS(1092), + [anon_sym_u32] = ACTIONS(1092), + [anon_sym_i32] = ACTIONS(1092), + [anon_sym_u64] = ACTIONS(1092), + [anon_sym_i64] = ACTIONS(1092), + [anon_sym_u128] = ACTIONS(1092), + [anon_sym_i128] = ACTIONS(1092), + [anon_sym_isize] = ACTIONS(1092), + [anon_sym_usize] = ACTIONS(1092), + [anon_sym_f32] = ACTIONS(1092), + [anon_sym_f64] = ACTIONS(1092), + [anon_sym_bool] = ACTIONS(1092), + [anon_sym_str] = ACTIONS(1092), + [anon_sym_char] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1092), + [anon_sym_SLASH] = ACTIONS(1092), + [anon_sym_PERCENT] = ACTIONS(1092), + [anon_sym_CARET] = ACTIONS(1092), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_AMP] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_GT_GT] = ACTIONS(1092), + [anon_sym_PLUS_EQ] = ACTIONS(1094), + [anon_sym_DASH_EQ] = ACTIONS(1094), + [anon_sym_STAR_EQ] = ACTIONS(1094), + [anon_sym_SLASH_EQ] = ACTIONS(1094), + [anon_sym_PERCENT_EQ] = ACTIONS(1094), + [anon_sym_CARET_EQ] = ACTIONS(1094), + [anon_sym_AMP_EQ] = ACTIONS(1094), + [anon_sym_PIPE_EQ] = ACTIONS(1094), + [anon_sym_LT_LT_EQ] = ACTIONS(1094), + [anon_sym_GT_GT_EQ] = ACTIONS(1094), + [anon_sym_EQ] = ACTIONS(1092), + [anon_sym_EQ_EQ] = ACTIONS(1094), + [anon_sym_BANG_EQ] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1092), + [anon_sym_LT] = ACTIONS(1092), + [anon_sym_GT_EQ] = ACTIONS(1094), + [anon_sym_LT_EQ] = ACTIONS(1094), + [anon_sym_AT] = ACTIONS(1094), + [anon_sym__] = ACTIONS(1092), + [anon_sym_DOT] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1094), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1094), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_COLON_COLON] = ACTIONS(1094), + [anon_sym_DASH_GT] = ACTIONS(1094), + [anon_sym_POUND] = ACTIONS(1094), + [anon_sym_SQUOTE] = ACTIONS(1092), + [anon_sym_as] = ACTIONS(1092), + [anon_sym_async] = ACTIONS(1092), + [anon_sym_await] = ACTIONS(1092), + [anon_sym_become] = ACTIONS(1092), + [anon_sym_break] = ACTIONS(1092), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_continue] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1092), + [anon_sym_enum] = ACTIONS(1092), + [anon_sym_fn] = ACTIONS(1092), + [anon_sym_for] = ACTIONS(1092), + [anon_sym_gen] = ACTIONS(1092), + [anon_sym_if] = ACTIONS(1092), + [anon_sym_impl] = ACTIONS(1092), + [anon_sym_let] = ACTIONS(1092), + [anon_sym_loop] = ACTIONS(1092), + [anon_sym_match] = ACTIONS(1092), + [anon_sym_mod] = ACTIONS(1092), + [anon_sym_pub] = ACTIONS(1092), + [anon_sym_return] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1092), + [anon_sym_struct] = ACTIONS(1092), + [anon_sym_trait] = ACTIONS(1092), + [anon_sym_type] = ACTIONS(1092), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1092), + [anon_sym_use] = ACTIONS(1092), + [anon_sym_where] = ACTIONS(1092), + [anon_sym_while] = ACTIONS(1092), + [sym_mutable_specifier] = ACTIONS(1092), + [sym_integer_literal] = ACTIONS(1094), + [aux_sym_string_literal_token1] = ACTIONS(1094), + [sym_char_literal] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1092), + [sym_super] = ACTIONS(1092), + [sym_crate] = ACTIONS(1092), + [sym_metavariable] = ACTIONS(1094), + [sym__raw_string_literal_start] = ACTIONS(1094), + [sym_float_literal] = ACTIONS(1094), }, [STATE(229)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1982), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(229), [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1148), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1096), + [anon_sym_LPAREN] = ACTIONS(1099), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_STAR] = ACTIONS(1110), + [anon_sym_u8] = ACTIONS(1113), + [anon_sym_i8] = ACTIONS(1113), + [anon_sym_u16] = ACTIONS(1113), + [anon_sym_i16] = ACTIONS(1113), + [anon_sym_u32] = ACTIONS(1113), + [anon_sym_i32] = ACTIONS(1113), + [anon_sym_u64] = ACTIONS(1113), + [anon_sym_i64] = ACTIONS(1113), + [anon_sym_u128] = ACTIONS(1113), + [anon_sym_i128] = ACTIONS(1113), + [anon_sym_isize] = ACTIONS(1113), + [anon_sym_usize] = ACTIONS(1113), + [anon_sym_f32] = ACTIONS(1113), + [anon_sym_f64] = ACTIONS(1113), + [anon_sym_bool] = ACTIONS(1113), + [anon_sym_str] = ACTIONS(1113), + [anon_sym_char] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1110), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_AMP] = ACTIONS(1116), + [anon_sym_PIPE] = ACTIONS(1119), + [anon_sym_LT] = ACTIONS(1122), + [anon_sym_DOT_DOT] = ACTIONS(1125), + [anon_sym_COLON_COLON] = ACTIONS(1128), + [anon_sym_SQUOTE] = ACTIONS(1131), + [anon_sym_async] = ACTIONS(1134), + [anon_sym_become] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1140), + [anon_sym_const] = ACTIONS(1143), + [anon_sym_continue] = ACTIONS(1146), + [anon_sym_default] = ACTIONS(1149), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_gen] = ACTIONS(1155), + [anon_sym_if] = ACTIONS(1158), + [anon_sym_loop] = ACTIONS(1161), + [anon_sym_match] = ACTIONS(1164), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_static] = ACTIONS(1170), + [anon_sym_union] = ACTIONS(1149), + [anon_sym_unsafe] = ACTIONS(1173), + [anon_sym_while] = ACTIONS(1176), + [anon_sym_raw] = ACTIONS(1149), + [anon_sym_yield] = ACTIONS(1179), + [anon_sym_move] = ACTIONS(1182), + [anon_sym_try] = ACTIONS(1185), + [sym_integer_literal] = ACTIONS(1188), + [aux_sym_string_literal_token1] = ACTIONS(1191), + [sym_char_literal] = ACTIONS(1188), + [anon_sym_true] = ACTIONS(1194), + [anon_sym_false] = ACTIONS(1194), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1197), + [sym_super] = ACTIONS(1200), + [sym_crate] = ACTIONS(1200), + [sym_metavariable] = ACTIONS(1203), + [sym__raw_string_literal_start] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1188), }, [STATE(230)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1592), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(344), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1209), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -43913,526 +44328,66 @@ 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(354), + [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(1146), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1148), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(231)] = { [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_EQ_GT] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [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(1018), - [anon_sym_PIPE_PIPE] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1016), - [anon_sym_PLUS_EQ] = ACTIONS(1018), - [anon_sym_DASH_EQ] = ACTIONS(1018), - [anon_sym_STAR_EQ] = ACTIONS(1018), - [anon_sym_SLASH_EQ] = ACTIONS(1018), - [anon_sym_PERCENT_EQ] = ACTIONS(1018), - [anon_sym_CARET_EQ] = ACTIONS(1018), - [anon_sym_AMP_EQ] = ACTIONS(1018), - [anon_sym_PIPE_EQ] = ACTIONS(1018), - [anon_sym_LT_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_GT_EQ] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym__] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_COLON_COLON] = ACTIONS(1018), - [anon_sym_DASH_GT] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_async] = ACTIONS(1016), - [anon_sym_await] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_gen] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1016), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_trait] = ACTIONS(1016), - [anon_sym_type] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_unsafe] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [sym_mutable_specifier] = ACTIONS(1016), - [sym_integer_literal] = ACTIONS(1018), - [aux_sym_string_literal_token1] = ACTIONS(1018), - [sym_char_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1016), - [sym_super] = ACTIONS(1016), - [sym_crate] = ACTIONS(1016), - [sym__raw_string_literal_start] = ACTIONS(1018), - [sym_float_literal] = ACTIONS(1018), - }, - [STATE(232)] = { - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u128] = ACTIONS(966), - [anon_sym_i128] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_str] = ACTIONS(966), - [anon_sym_char] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(968), - [anon_sym_CARET_EQ] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(968), - [anon_sym_LT_LT_EQ] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_async] = ACTIONS(966), - [anon_sym_await] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_fn] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_gen] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_impl] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_mod] = ACTIONS(966), - [anon_sym_pub] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_static] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_trait] = ACTIONS(966), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_unsafe] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_where] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [sym_mutable_specifier] = ACTIONS(966), - [sym_integer_literal] = ACTIONS(968), - [aux_sym_string_literal_token1] = ACTIONS(968), - [sym_char_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(966), - [sym_super] = ACTIONS(966), - [sym_crate] = ACTIONS(966), - [sym__raw_string_literal_start] = ACTIONS(968), - [sym_float_literal] = ACTIONS(968), - }, - [STATE(233)] = { - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RBRACK] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_EQ_GT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_u8] = ACTIONS(1042), - [anon_sym_i8] = ACTIONS(1042), - [anon_sym_u16] = ACTIONS(1042), - [anon_sym_i16] = ACTIONS(1042), - [anon_sym_u32] = ACTIONS(1042), - [anon_sym_i32] = ACTIONS(1042), - [anon_sym_u64] = ACTIONS(1042), - [anon_sym_i64] = ACTIONS(1042), - [anon_sym_u128] = ACTIONS(1042), - [anon_sym_i128] = ACTIONS(1042), - [anon_sym_isize] = ACTIONS(1042), - [anon_sym_usize] = ACTIONS(1042), - [anon_sym_f32] = ACTIONS(1042), - [anon_sym_f64] = ACTIONS(1042), - [anon_sym_bool] = ACTIONS(1042), - [anon_sym_str] = ACTIONS(1042), - [anon_sym_char] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1042), - [anon_sym_PERCENT] = ACTIONS(1042), - [anon_sym_CARET] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1042), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1042), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_COLON_COLON] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(1042), - [anon_sym_async] = ACTIONS(1042), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_enum] = ACTIONS(1042), - [anon_sym_fn] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_gen] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_impl] = ACTIONS(1042), - [anon_sym_let] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_mod] = ACTIONS(1042), - [anon_sym_pub] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_struct] = ACTIONS(1042), - [anon_sym_trait] = ACTIONS(1042), - [anon_sym_type] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1042), - [anon_sym_where] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [sym_mutable_specifier] = ACTIONS(1042), - [sym_integer_literal] = ACTIONS(1044), - [aux_sym_string_literal_token1] = ACTIONS(1044), - [sym_char_literal] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1042), - [sym_super] = ACTIONS(1042), - [sym_crate] = ACTIONS(1042), - [sym__raw_string_literal_start] = ACTIONS(1044), - [sym_float_literal] = ACTIONS(1044), - }, - [STATE(234)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1158), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(235)] = { - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), + [aux_sym__non_special_token_repeat1] = STATE(231), [sym_identifier] = ACTIONS(958), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_RBRACK] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_EQ_GT] = ACTIONS(960), - [anon_sym_COLON] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(1211), + [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(1211), + [anon_sym_COLON] = ACTIONS(1214), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(1214), + [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_u8] = ACTIONS(958), [anon_sym_i8] = ACTIONS(958), [anon_sym_u16] = ACTIONS(958), @@ -44450,48 +44405,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(958), [anon_sym_str] = ACTIONS(958), [anon_sym_char] = ACTIONS(958), - [anon_sym_DASH] = ACTIONS(958), - [anon_sym_SLASH] = ACTIONS(958), - [anon_sym_PERCENT] = ACTIONS(958), - [anon_sym_CARET] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(958), - [anon_sym_AMP] = ACTIONS(958), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(958), - [anon_sym_GT_GT] = ACTIONS(958), - [anon_sym_PLUS_EQ] = ACTIONS(960), - [anon_sym_DASH_EQ] = ACTIONS(960), - [anon_sym_STAR_EQ] = ACTIONS(960), - [anon_sym_SLASH_EQ] = ACTIONS(960), - [anon_sym_PERCENT_EQ] = ACTIONS(960), - [anon_sym_CARET_EQ] = ACTIONS(960), - [anon_sym_AMP_EQ] = ACTIONS(960), - [anon_sym_PIPE_EQ] = ACTIONS(960), - [anon_sym_LT_LT_EQ] = ACTIONS(960), - [anon_sym_GT_GT_EQ] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_GT] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_AT] = ACTIONS(960), - [anon_sym__] = ACTIONS(958), - [anon_sym_DOT] = ACTIONS(958), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_COLON_COLON] = ACTIONS(960), - [anon_sym_DASH_GT] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(1214), + [anon_sym_SLASH] = ACTIONS(1214), + [anon_sym_PERCENT] = ACTIONS(1214), + [anon_sym_CARET] = ACTIONS(1214), + [anon_sym_BANG] = ACTIONS(1214), + [anon_sym_AMP] = ACTIONS(1214), + [anon_sym_PIPE] = ACTIONS(1214), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1214), + [anon_sym_GT_GT] = ACTIONS(1214), + [anon_sym_PLUS_EQ] = ACTIONS(1211), + [anon_sym_DASH_EQ] = ACTIONS(1211), + [anon_sym_STAR_EQ] = ACTIONS(1211), + [anon_sym_SLASH_EQ] = ACTIONS(1211), + [anon_sym_PERCENT_EQ] = ACTIONS(1211), + [anon_sym_CARET_EQ] = ACTIONS(1211), + [anon_sym_AMP_EQ] = ACTIONS(1211), + [anon_sym_PIPE_EQ] = ACTIONS(1211), + [anon_sym_LT_LT_EQ] = ACTIONS(1211), + [anon_sym_GT_GT_EQ] = ACTIONS(1211), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_GT] = ACTIONS(1214), + [anon_sym_LT] = ACTIONS(1214), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1211), + [anon_sym_AT] = ACTIONS(1211), + [anon_sym__] = ACTIONS(1214), + [anon_sym_DOT] = ACTIONS(1214), + [anon_sym_DOT_DOT] = ACTIONS(1214), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1211), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_COLON_COLON] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1211), + [anon_sym_POUND] = ACTIONS(1211), [anon_sym_SQUOTE] = ACTIONS(958), [anon_sym_as] = ACTIONS(958), [anon_sym_async] = ACTIONS(958), [anon_sym_await] = ACTIONS(958), + [anon_sym_become] = ACTIONS(958), [anon_sym_break] = ACTIONS(958), [anon_sym_const] = ACTIONS(958), [anon_sym_continue] = ACTIONS(958), @@ -44518,305 +44474,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(958), [anon_sym_while] = ACTIONS(958), [sym_mutable_specifier] = ACTIONS(958), - [sym_integer_literal] = ACTIONS(960), - [aux_sym_string_literal_token1] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(963), + [aux_sym_string_literal_token1] = ACTIONS(963), + [sym_char_literal] = ACTIONS(963), [anon_sym_true] = ACTIONS(958), [anon_sym_false] = ACTIONS(958), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), [sym_self] = ACTIONS(958), [sym_super] = ACTIONS(958), [sym_crate] = ACTIONS(958), - [sym__raw_string_literal_start] = ACTIONS(960), - [sym_float_literal] = ACTIONS(960), - }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1192), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_tuple_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1210), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym__raw_string_literal_start] = ACTIONS(963), + [sym_float_literal] = ACTIONS(963), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(344), + [STATE(232)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1599), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1555), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -44835,678 +44560,1037 @@ 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(359), [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(1000), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1004), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1216), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1963), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u128] = ACTIONS(1235), - [anon_sym_i128] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_str] = ACTIONS(1235), - [anon_sym_char] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_raw] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1307), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1319), - [sym_crate] = ACTIONS(1319), - [sym_metavariable] = ACTIONS(1322), - [sym__raw_string_literal_start] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1307), + [STATE(233)] = { + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), + [sym_identifier] = ACTIONS(1217), + [anon_sym_SEMI] = ACTIONS(1219), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1219), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_LBRACE] = ACTIONS(1219), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_EQ_GT] = ACTIONS(1219), + [anon_sym_COLON] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1217), + [anon_sym_PLUS] = ACTIONS(1217), + [anon_sym_STAR] = ACTIONS(1217), + [anon_sym_QMARK] = ACTIONS(1219), + [anon_sym_u8] = ACTIONS(1217), + [anon_sym_i8] = ACTIONS(1217), + [anon_sym_u16] = ACTIONS(1217), + [anon_sym_i16] = ACTIONS(1217), + [anon_sym_u32] = ACTIONS(1217), + [anon_sym_i32] = ACTIONS(1217), + [anon_sym_u64] = ACTIONS(1217), + [anon_sym_i64] = ACTIONS(1217), + [anon_sym_u128] = ACTIONS(1217), + [anon_sym_i128] = ACTIONS(1217), + [anon_sym_isize] = ACTIONS(1217), + [anon_sym_usize] = ACTIONS(1217), + [anon_sym_f32] = ACTIONS(1217), + [anon_sym_f64] = ACTIONS(1217), + [anon_sym_bool] = ACTIONS(1217), + [anon_sym_str] = ACTIONS(1217), + [anon_sym_char] = ACTIONS(1217), + [anon_sym_DASH] = ACTIONS(1217), + [anon_sym_SLASH] = ACTIONS(1217), + [anon_sym_PERCENT] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1217), + [anon_sym_BANG] = ACTIONS(1217), + [anon_sym_AMP] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1217), + [anon_sym_GT_GT] = ACTIONS(1217), + [anon_sym_PLUS_EQ] = ACTIONS(1219), + [anon_sym_DASH_EQ] = ACTIONS(1219), + [anon_sym_STAR_EQ] = ACTIONS(1219), + [anon_sym_SLASH_EQ] = ACTIONS(1219), + [anon_sym_PERCENT_EQ] = ACTIONS(1219), + [anon_sym_CARET_EQ] = ACTIONS(1219), + [anon_sym_AMP_EQ] = ACTIONS(1219), + [anon_sym_PIPE_EQ] = ACTIONS(1219), + [anon_sym_LT_LT_EQ] = ACTIONS(1219), + [anon_sym_GT_GT_EQ] = ACTIONS(1219), + [anon_sym_EQ] = ACTIONS(1217), + [anon_sym_EQ_EQ] = ACTIONS(1219), + [anon_sym_BANG_EQ] = ACTIONS(1219), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1219), + [anon_sym_LT_EQ] = ACTIONS(1219), + [anon_sym_AT] = ACTIONS(1219), + [anon_sym__] = ACTIONS(1217), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1219), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1219), + [anon_sym_COMMA] = ACTIONS(1219), + [anon_sym_COLON_COLON] = ACTIONS(1219), + [anon_sym_DASH_GT] = ACTIONS(1219), + [anon_sym_POUND] = ACTIONS(1219), + [anon_sym_SQUOTE] = ACTIONS(1217), + [anon_sym_as] = ACTIONS(1217), + [anon_sym_async] = ACTIONS(1217), + [anon_sym_await] = ACTIONS(1217), + [anon_sym_become] = ACTIONS(1217), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_const] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_default] = ACTIONS(1217), + [anon_sym_enum] = ACTIONS(1217), + [anon_sym_fn] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1217), + [anon_sym_gen] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1217), + [anon_sym_impl] = ACTIONS(1217), + [anon_sym_let] = ACTIONS(1217), + [anon_sym_loop] = ACTIONS(1217), + [anon_sym_match] = ACTIONS(1217), + [anon_sym_mod] = ACTIONS(1217), + [anon_sym_pub] = ACTIONS(1217), + [anon_sym_return] = ACTIONS(1217), + [anon_sym_static] = ACTIONS(1217), + [anon_sym_struct] = ACTIONS(1217), + [anon_sym_trait] = ACTIONS(1217), + [anon_sym_type] = ACTIONS(1217), + [anon_sym_union] = ACTIONS(1217), + [anon_sym_unsafe] = ACTIONS(1217), + [anon_sym_use] = ACTIONS(1217), + [anon_sym_where] = ACTIONS(1217), + [anon_sym_while] = ACTIONS(1217), + [sym_mutable_specifier] = ACTIONS(1217), + [sym_integer_literal] = ACTIONS(1219), + [aux_sym_string_literal_token1] = ACTIONS(1219), + [sym_char_literal] = ACTIONS(1219), + [anon_sym_true] = ACTIONS(1217), + [anon_sym_false] = ACTIONS(1217), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1217), + [sym_super] = ACTIONS(1217), + [sym_crate] = ACTIONS(1217), + [sym_metavariable] = ACTIONS(1219), + [sym__raw_string_literal_start] = ACTIONS(1219), + [sym_float_literal] = ACTIONS(1219), }, - [STATE(242)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(354), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [STATE(234)] = { + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(1221), + [anon_sym_SEMI] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(1223), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1223), + [anon_sym_RBRACK] = ACTIONS(1223), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_EQ_GT] = ACTIONS(1223), + [anon_sym_COLON] = ACTIONS(1221), + [anon_sym_DOLLAR] = ACTIONS(1221), + [anon_sym_PLUS] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1221), + [anon_sym_QMARK] = ACTIONS(1223), + [anon_sym_u8] = ACTIONS(1221), + [anon_sym_i8] = ACTIONS(1221), + [anon_sym_u16] = ACTIONS(1221), + [anon_sym_i16] = ACTIONS(1221), + [anon_sym_u32] = ACTIONS(1221), + [anon_sym_i32] = ACTIONS(1221), + [anon_sym_u64] = ACTIONS(1221), + [anon_sym_i64] = ACTIONS(1221), + [anon_sym_u128] = ACTIONS(1221), + [anon_sym_i128] = ACTIONS(1221), + [anon_sym_isize] = ACTIONS(1221), + [anon_sym_usize] = ACTIONS(1221), + [anon_sym_f32] = ACTIONS(1221), + [anon_sym_f64] = ACTIONS(1221), + [anon_sym_bool] = ACTIONS(1221), + [anon_sym_str] = ACTIONS(1221), + [anon_sym_char] = ACTIONS(1221), + [anon_sym_DASH] = ACTIONS(1221), + [anon_sym_SLASH] = ACTIONS(1221), + [anon_sym_PERCENT] = ACTIONS(1221), + [anon_sym_CARET] = ACTIONS(1221), + [anon_sym_BANG] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1221), + [anon_sym_PLUS_EQ] = ACTIONS(1223), + [anon_sym_DASH_EQ] = ACTIONS(1223), + [anon_sym_STAR_EQ] = ACTIONS(1223), + [anon_sym_SLASH_EQ] = ACTIONS(1223), + [anon_sym_PERCENT_EQ] = ACTIONS(1223), + [anon_sym_CARET_EQ] = ACTIONS(1223), + [anon_sym_AMP_EQ] = ACTIONS(1223), + [anon_sym_PIPE_EQ] = ACTIONS(1223), + [anon_sym_LT_LT_EQ] = ACTIONS(1223), + [anon_sym_GT_GT_EQ] = ACTIONS(1223), + [anon_sym_EQ] = ACTIONS(1221), + [anon_sym_EQ_EQ] = ACTIONS(1223), + [anon_sym_BANG_EQ] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT_EQ] = ACTIONS(1223), + [anon_sym_LT_EQ] = ACTIONS(1223), + [anon_sym_AT] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1221), + [anon_sym_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1221), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1223), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1223), + [anon_sym_COMMA] = ACTIONS(1223), + [anon_sym_COLON_COLON] = ACTIONS(1223), + [anon_sym_DASH_GT] = ACTIONS(1223), + [anon_sym_POUND] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(1221), + [anon_sym_as] = ACTIONS(1221), + [anon_sym_async] = ACTIONS(1221), + [anon_sym_await] = ACTIONS(1221), + [anon_sym_become] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1221), + [anon_sym_continue] = ACTIONS(1221), + [anon_sym_default] = ACTIONS(1221), + [anon_sym_enum] = ACTIONS(1221), + [anon_sym_fn] = ACTIONS(1221), + [anon_sym_for] = ACTIONS(1221), + [anon_sym_gen] = ACTIONS(1221), + [anon_sym_if] = ACTIONS(1221), + [anon_sym_impl] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1221), + [anon_sym_loop] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1221), + [anon_sym_mod] = ACTIONS(1221), + [anon_sym_pub] = ACTIONS(1221), + [anon_sym_return] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1221), + [anon_sym_struct] = ACTIONS(1221), + [anon_sym_trait] = ACTIONS(1221), + [anon_sym_type] = ACTIONS(1221), + [anon_sym_union] = ACTIONS(1221), + [anon_sym_unsafe] = ACTIONS(1221), + [anon_sym_use] = ACTIONS(1221), + [anon_sym_where] = ACTIONS(1221), + [anon_sym_while] = ACTIONS(1221), + [sym_mutable_specifier] = ACTIONS(1221), + [sym_integer_literal] = ACTIONS(1223), + [aux_sym_string_literal_token1] = ACTIONS(1223), + [sym_char_literal] = ACTIONS(1223), + [anon_sym_true] = ACTIONS(1221), + [anon_sym_false] = ACTIONS(1221), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1221), + [sym_super] = ACTIONS(1221), + [sym_crate] = ACTIONS(1221), + [sym_metavariable] = ACTIONS(1223), + [sym__raw_string_literal_start] = ACTIONS(1223), + [sym_float_literal] = ACTIONS(1223), }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(354), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1148), + [STATE(235)] = { + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_EQ_GT] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u128] = ACTIONS(954), + [anon_sym_i128] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_str] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_PERCENT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(956), + [anon_sym_PIPE_PIPE] = ACTIONS(956), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(954), + [anon_sym_PLUS_EQ] = ACTIONS(956), + [anon_sym_DASH_EQ] = ACTIONS(956), + [anon_sym_STAR_EQ] = ACTIONS(956), + [anon_sym_SLASH_EQ] = ACTIONS(956), + [anon_sym_PERCENT_EQ] = ACTIONS(956), + [anon_sym_CARET_EQ] = ACTIONS(956), + [anon_sym_AMP_EQ] = ACTIONS(956), + [anon_sym_PIPE_EQ] = ACTIONS(956), + [anon_sym_LT_LT_EQ] = ACTIONS(956), + [anon_sym_GT_GT_EQ] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym__] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_COLON_COLON] = ACTIONS(956), + [anon_sym_DASH_GT] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_async] = ACTIONS(954), + [anon_sym_await] = ACTIONS(954), + [anon_sym_become] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_gen] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_mod] = ACTIONS(954), + [anon_sym_pub] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_trait] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(954), + [anon_sym_unsafe] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_where] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [sym_mutable_specifier] = ACTIONS(954), + [sym_integer_literal] = ACTIONS(956), + [aux_sym_string_literal_token1] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_crate] = ACTIONS(954), + [sym_metavariable] = ACTIONS(956), + [sym__raw_string_literal_start] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), + }, + [STATE(236)] = { + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(1225), + [anon_sym_SEMI] = ACTIONS(1227), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_RPAREN] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_EQ_GT] = ACTIONS(1227), + [anon_sym_COLON] = ACTIONS(1225), + [anon_sym_DOLLAR] = ACTIONS(1225), + [anon_sym_PLUS] = ACTIONS(1225), + [anon_sym_STAR] = ACTIONS(1225), + [anon_sym_QMARK] = ACTIONS(1227), + [anon_sym_u8] = ACTIONS(1225), + [anon_sym_i8] = ACTIONS(1225), + [anon_sym_u16] = ACTIONS(1225), + [anon_sym_i16] = ACTIONS(1225), + [anon_sym_u32] = ACTIONS(1225), + [anon_sym_i32] = ACTIONS(1225), + [anon_sym_u64] = ACTIONS(1225), + [anon_sym_i64] = ACTIONS(1225), + [anon_sym_u128] = ACTIONS(1225), + [anon_sym_i128] = ACTIONS(1225), + [anon_sym_isize] = ACTIONS(1225), + [anon_sym_usize] = ACTIONS(1225), + [anon_sym_f32] = ACTIONS(1225), + [anon_sym_f64] = ACTIONS(1225), + [anon_sym_bool] = ACTIONS(1225), + [anon_sym_str] = ACTIONS(1225), + [anon_sym_char] = ACTIONS(1225), + [anon_sym_DASH] = ACTIONS(1225), + [anon_sym_SLASH] = ACTIONS(1225), + [anon_sym_PERCENT] = ACTIONS(1225), + [anon_sym_CARET] = ACTIONS(1225), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_AMP] = ACTIONS(1225), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_AMP_AMP] = ACTIONS(1227), + [anon_sym_PIPE_PIPE] = ACTIONS(1227), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1225), + [anon_sym_PLUS_EQ] = ACTIONS(1227), + [anon_sym_DASH_EQ] = ACTIONS(1227), + [anon_sym_STAR_EQ] = ACTIONS(1227), + [anon_sym_SLASH_EQ] = ACTIONS(1227), + [anon_sym_PERCENT_EQ] = ACTIONS(1227), + [anon_sym_CARET_EQ] = ACTIONS(1227), + [anon_sym_AMP_EQ] = ACTIONS(1227), + [anon_sym_PIPE_EQ] = ACTIONS(1227), + [anon_sym_LT_LT_EQ] = ACTIONS(1227), + [anon_sym_GT_GT_EQ] = ACTIONS(1227), + [anon_sym_EQ] = ACTIONS(1225), + [anon_sym_EQ_EQ] = ACTIONS(1227), + [anon_sym_BANG_EQ] = ACTIONS(1227), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT_EQ] = ACTIONS(1227), + [anon_sym_LT_EQ] = ACTIONS(1227), + [anon_sym_AT] = ACTIONS(1227), + [anon_sym__] = ACTIONS(1225), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT] = ACTIONS(1225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1227), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1227), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(1227), + [anon_sym_POUND] = ACTIONS(1227), + [anon_sym_SQUOTE] = ACTIONS(1225), + [anon_sym_as] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_await] = ACTIONS(1225), + [anon_sym_become] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(1225), + [anon_sym_const] = ACTIONS(1225), + [anon_sym_continue] = ACTIONS(1225), + [anon_sym_default] = ACTIONS(1225), + [anon_sym_enum] = ACTIONS(1225), + [anon_sym_fn] = ACTIONS(1225), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_gen] = ACTIONS(1225), + [anon_sym_if] = ACTIONS(1225), + [anon_sym_impl] = ACTIONS(1225), + [anon_sym_let] = ACTIONS(1225), + [anon_sym_loop] = ACTIONS(1225), + [anon_sym_match] = ACTIONS(1225), + [anon_sym_mod] = ACTIONS(1225), + [anon_sym_pub] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1225), + [anon_sym_static] = ACTIONS(1225), + [anon_sym_struct] = ACTIONS(1225), + [anon_sym_trait] = ACTIONS(1225), + [anon_sym_type] = ACTIONS(1225), + [anon_sym_union] = ACTIONS(1225), + [anon_sym_unsafe] = ACTIONS(1225), + [anon_sym_use] = ACTIONS(1225), + [anon_sym_where] = ACTIONS(1225), + [anon_sym_while] = ACTIONS(1225), + [sym_mutable_specifier] = ACTIONS(1225), + [sym_integer_literal] = ACTIONS(1227), + [aux_sym_string_literal_token1] = ACTIONS(1227), + [sym_char_literal] = ACTIONS(1227), + [anon_sym_true] = ACTIONS(1225), + [anon_sym_false] = ACTIONS(1225), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1225), + [sym_super] = ACTIONS(1225), + [sym_crate] = ACTIONS(1225), + [sym_metavariable] = ACTIONS(1227), + [sym__raw_string_literal_start] = ACTIONS(1227), + [sym_float_literal] = ACTIONS(1227), + }, + [STATE(237)] = { + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1231), + [anon_sym_LPAREN] = ACTIONS(1231), + [anon_sym_RPAREN] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1231), + [anon_sym_RBRACK] = ACTIONS(1231), + [anon_sym_LBRACE] = ACTIONS(1231), + [anon_sym_RBRACE] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_DOLLAR] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(1229), + [anon_sym_QMARK] = ACTIONS(1231), + [anon_sym_u8] = ACTIONS(1229), + [anon_sym_i8] = ACTIONS(1229), + [anon_sym_u16] = ACTIONS(1229), + [anon_sym_i16] = ACTIONS(1229), + [anon_sym_u32] = ACTIONS(1229), + [anon_sym_i32] = ACTIONS(1229), + [anon_sym_u64] = ACTIONS(1229), + [anon_sym_i64] = ACTIONS(1229), + [anon_sym_u128] = ACTIONS(1229), + [anon_sym_i128] = ACTIONS(1229), + [anon_sym_isize] = ACTIONS(1229), + [anon_sym_usize] = ACTIONS(1229), + [anon_sym_f32] = ACTIONS(1229), + [anon_sym_f64] = ACTIONS(1229), + [anon_sym_bool] = ACTIONS(1229), + [anon_sym_str] = ACTIONS(1229), + [anon_sym_char] = ACTIONS(1229), + [anon_sym_DASH] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1229), + [anon_sym_PERCENT] = ACTIONS(1229), + [anon_sym_CARET] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1229), + [anon_sym_AMP_AMP] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1231), + [anon_sym_LT_LT] = ACTIONS(1229), + [anon_sym_GT_GT] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1231), + [anon_sym_DASH_EQ] = ACTIONS(1231), + [anon_sym_STAR_EQ] = ACTIONS(1231), + [anon_sym_SLASH_EQ] = ACTIONS(1231), + [anon_sym_PERCENT_EQ] = ACTIONS(1231), + [anon_sym_CARET_EQ] = ACTIONS(1231), + [anon_sym_AMP_EQ] = ACTIONS(1231), + [anon_sym_PIPE_EQ] = ACTIONS(1231), + [anon_sym_LT_LT_EQ] = ACTIONS(1231), + [anon_sym_GT_GT_EQ] = ACTIONS(1231), + [anon_sym_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1231), + [anon_sym_BANG_EQ] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1231), + [anon_sym_AT] = ACTIONS(1231), + [anon_sym__] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1231), + [anon_sym_COMMA] = ACTIONS(1231), + [anon_sym_COLON_COLON] = ACTIONS(1231), + [anon_sym_DASH_GT] = ACTIONS(1231), + [anon_sym_POUND] = ACTIONS(1231), + [anon_sym_SQUOTE] = ACTIONS(1229), + [anon_sym_as] = ACTIONS(1229), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_await] = ACTIONS(1229), + [anon_sym_become] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(1229), + [anon_sym_const] = ACTIONS(1229), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_default] = ACTIONS(1229), + [anon_sym_enum] = ACTIONS(1229), + [anon_sym_fn] = ACTIONS(1229), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1229), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_impl] = ACTIONS(1229), + [anon_sym_let] = ACTIONS(1229), + [anon_sym_loop] = ACTIONS(1229), + [anon_sym_match] = ACTIONS(1229), + [anon_sym_mod] = ACTIONS(1229), + [anon_sym_pub] = ACTIONS(1229), + [anon_sym_return] = ACTIONS(1229), + [anon_sym_static] = ACTIONS(1229), + [anon_sym_struct] = ACTIONS(1229), + [anon_sym_trait] = ACTIONS(1229), + [anon_sym_type] = ACTIONS(1229), + [anon_sym_union] = ACTIONS(1229), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_use] = ACTIONS(1229), + [anon_sym_where] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1229), + [sym_mutable_specifier] = ACTIONS(1229), + [sym_integer_literal] = ACTIONS(1231), + [aux_sym_string_literal_token1] = ACTIONS(1231), + [sym_char_literal] = ACTIONS(1231), + [anon_sym_true] = ACTIONS(1229), + [anon_sym_false] = ACTIONS(1229), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1229), + [sym_super] = ACTIONS(1229), + [sym_crate] = ACTIONS(1229), + [sym__raw_string_literal_start] = ACTIONS(1231), + [sym_float_literal] = ACTIONS(1231), + }, + [STATE(238)] = { + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_EQ_GT] = ACTIONS(1056), + [anon_sym_COLON] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1056), + [anon_sym_u8] = ACTIONS(1054), + [anon_sym_i8] = ACTIONS(1054), + [anon_sym_u16] = ACTIONS(1054), + [anon_sym_i16] = ACTIONS(1054), + [anon_sym_u32] = ACTIONS(1054), + [anon_sym_i32] = ACTIONS(1054), + [anon_sym_u64] = ACTIONS(1054), + [anon_sym_i64] = ACTIONS(1054), + [anon_sym_u128] = ACTIONS(1054), + [anon_sym_i128] = ACTIONS(1054), + [anon_sym_isize] = ACTIONS(1054), + [anon_sym_usize] = ACTIONS(1054), + [anon_sym_f32] = ACTIONS(1054), + [anon_sym_f64] = ACTIONS(1054), + [anon_sym_bool] = ACTIONS(1054), + [anon_sym_str] = ACTIONS(1054), + [anon_sym_char] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PERCENT_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1056), + [anon_sym_BANG_EQ] = ACTIONS(1056), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_AT] = ACTIONS(1056), + [anon_sym__] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_COMMA] = ACTIONS(1056), + [anon_sym_COLON_COLON] = ACTIONS(1056), + [anon_sym_DASH_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(1056), + [anon_sym_SQUOTE] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(1054), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_become] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_default] = ACTIONS(1054), + [anon_sym_enum] = ACTIONS(1054), + [anon_sym_fn] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_gen] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_impl] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_mod] = ACTIONS(1054), + [anon_sym_pub] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_static] = ACTIONS(1054), + [anon_sym_struct] = ACTIONS(1054), + [anon_sym_trait] = ACTIONS(1054), + [anon_sym_type] = ACTIONS(1054), + [anon_sym_union] = ACTIONS(1054), + [anon_sym_unsafe] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_where] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [sym_mutable_specifier] = ACTIONS(1054), + [sym_integer_literal] = ACTIONS(1056), + [aux_sym_string_literal_token1] = ACTIONS(1056), + [sym_char_literal] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1054), + [sym_super] = ACTIONS(1054), + [sym_crate] = ACTIONS(1054), + [sym__raw_string_literal_start] = ACTIONS(1056), + [sym_float_literal] = ACTIONS(1056), + }, + [STATE(239)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [sym_mutable_specifier] = ACTIONS(1233), + [anon_sym_raw] = ACTIONS(1235), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, - [STATE(244)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(344), + [STATE(240)] = { + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_identifier] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_RBRACK] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_COLON] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1058), + [anon_sym_QMARK] = ACTIONS(1060), + [anon_sym_u8] = ACTIONS(1058), + [anon_sym_i8] = ACTIONS(1058), + [anon_sym_u16] = ACTIONS(1058), + [anon_sym_i16] = ACTIONS(1058), + [anon_sym_u32] = ACTIONS(1058), + [anon_sym_i32] = ACTIONS(1058), + [anon_sym_u64] = ACTIONS(1058), + [anon_sym_i64] = ACTIONS(1058), + [anon_sym_u128] = ACTIONS(1058), + [anon_sym_i128] = ACTIONS(1058), + [anon_sym_isize] = ACTIONS(1058), + [anon_sym_usize] = ACTIONS(1058), + [anon_sym_f32] = ACTIONS(1058), + [anon_sym_f64] = ACTIONS(1058), + [anon_sym_bool] = ACTIONS(1058), + [anon_sym_str] = ACTIONS(1058), + [anon_sym_char] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1058), + [anon_sym_PERCENT] = ACTIONS(1058), + [anon_sym_CARET] = ACTIONS(1058), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_AMP] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1058), + [anon_sym_AMP_AMP] = ACTIONS(1060), + [anon_sym_PIPE_PIPE] = ACTIONS(1060), + [anon_sym_LT_LT] = ACTIONS(1058), + [anon_sym_GT_GT] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PERCENT_EQ] = ACTIONS(1060), + [anon_sym_CARET_EQ] = ACTIONS(1060), + [anon_sym_AMP_EQ] = ACTIONS(1060), + [anon_sym_PIPE_EQ] = ACTIONS(1060), + [anon_sym_LT_LT_EQ] = ACTIONS(1060), + [anon_sym_GT_GT_EQ] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_EQ_EQ] = ACTIONS(1060), + [anon_sym_BANG_EQ] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT_EQ] = ACTIONS(1060), + [anon_sym_LT_EQ] = ACTIONS(1060), + [anon_sym_AT] = ACTIONS(1060), + [anon_sym__] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1060), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_COLON_COLON] = ACTIONS(1060), + [anon_sym_DASH_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(1060), + [anon_sym_SQUOTE] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1058), + [anon_sym_become] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_default] = ACTIONS(1058), + [anon_sym_enum] = ACTIONS(1058), + [anon_sym_fn] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_gen] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_impl] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_mod] = ACTIONS(1058), + [anon_sym_pub] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_static] = ACTIONS(1058), + [anon_sym_struct] = ACTIONS(1058), + [anon_sym_trait] = ACTIONS(1058), + [anon_sym_type] = ACTIONS(1058), + [anon_sym_union] = ACTIONS(1058), + [anon_sym_unsafe] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_where] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [sym_mutable_specifier] = ACTIONS(1058), + [sym_integer_literal] = ACTIONS(1060), + [aux_sym_string_literal_token1] = ACTIONS(1060), + [sym_char_literal] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym__raw_string_literal_start] = ACTIONS(1060), + [sym_float_literal] = ACTIONS(1060), + }, + [STATE(241)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1328), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45530,786 +45614,1259 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [sym_mutable_specifier] = ACTIONS(1237), + [anon_sym_raw] = ACTIONS(1239), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(242)] = { + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_EQ_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_u8] = ACTIONS(1042), + [anon_sym_i8] = ACTIONS(1042), + [anon_sym_u16] = ACTIONS(1042), + [anon_sym_i16] = ACTIONS(1042), + [anon_sym_u32] = ACTIONS(1042), + [anon_sym_i32] = ACTIONS(1042), + [anon_sym_u64] = ACTIONS(1042), + [anon_sym_i64] = ACTIONS(1042), + [anon_sym_u128] = ACTIONS(1042), + [anon_sym_i128] = ACTIONS(1042), + [anon_sym_isize] = ACTIONS(1042), + [anon_sym_usize] = ACTIONS(1042), + [anon_sym_f32] = ACTIONS(1042), + [anon_sym_f64] = ACTIONS(1042), + [anon_sym_bool] = ACTIONS(1042), + [anon_sym_str] = ACTIONS(1042), + [anon_sym_char] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PERCENT_EQ] = ACTIONS(1044), + [anon_sym_CARET_EQ] = ACTIONS(1044), + [anon_sym_AMP_EQ] = ACTIONS(1044), + [anon_sym_PIPE_EQ] = ACTIONS(1044), + [anon_sym_LT_LT_EQ] = ACTIONS(1044), + [anon_sym_GT_GT_EQ] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym__] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(1044), + [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_await] = ACTIONS(1042), + [anon_sym_become] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_fn] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_gen] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_impl] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_mod] = ACTIONS(1042), + [anon_sym_pub] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_trait] = ACTIONS(1042), + [anon_sym_type] = ACTIONS(1042), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_where] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [sym_mutable_specifier] = ACTIONS(1042), + [sym_integer_literal] = ACTIONS(1044), + [aux_sym_string_literal_token1] = ACTIONS(1044), + [sym_char_literal] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1042), + [sym_super] = ACTIONS(1042), + [sym_crate] = ACTIONS(1042), + [sym__raw_string_literal_start] = ACTIONS(1044), + [sym_float_literal] = ACTIONS(1044), + }, + [STATE(243)] = { + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_EQ_GT] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1243), + [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(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym_AT] = ACTIONS(1243), + [anon_sym__] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), + [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_DASH_GT] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_await] = ACTIONS(1241), + [anon_sym_become] = 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_where] = ACTIONS(1241), + [anon_sym_while] = ACTIONS(1241), + [sym_mutable_specifier] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1243), + [aux_sym_string_literal_token1] = ACTIONS(1243), + [sym_char_literal] = ACTIONS(1243), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym__raw_string_literal_start] = ACTIONS(1243), + [sym_float_literal] = ACTIONS(1243), + }, + [STATE(244)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [sym_mutable_specifier] = ACTIONS(1245), + [anon_sym_raw] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(245)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1533), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [sym_mutable_specifier] = ACTIONS(1249), + [anon_sym_raw] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(246)] = { [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(964), - [anon_sym_COLON] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(964), - [anon_sym__] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_async] = ACTIONS(962), - [anon_sym_await] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_fn] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_gen] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_impl] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_mod] = ACTIONS(962), - [anon_sym_pub] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_where] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [sym_mutable_specifier] = ACTIONS(962), - [sym_integer_literal] = ACTIONS(964), - [aux_sym_string_literal_token1] = ACTIONS(964), - [sym_char_literal] = ACTIONS(964), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(962), - [sym_super] = ACTIONS(962), - [sym_crate] = ACTIONS(962), - [sym__raw_string_literal_start] = ACTIONS(964), - [sym_float_literal] = ACTIONS(964), + [sym_identifier] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1052), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_LBRACK] = ACTIONS(1052), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LBRACE] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_EQ_GT] = ACTIONS(1052), + [anon_sym_COLON] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_PLUS] = ACTIONS(1050), + [anon_sym_STAR] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1052), + [anon_sym_u8] = ACTIONS(1050), + [anon_sym_i8] = ACTIONS(1050), + [anon_sym_u16] = ACTIONS(1050), + [anon_sym_i16] = ACTIONS(1050), + [anon_sym_u32] = ACTIONS(1050), + [anon_sym_i32] = ACTIONS(1050), + [anon_sym_u64] = ACTIONS(1050), + [anon_sym_i64] = ACTIONS(1050), + [anon_sym_u128] = ACTIONS(1050), + [anon_sym_i128] = ACTIONS(1050), + [anon_sym_isize] = ACTIONS(1050), + [anon_sym_usize] = ACTIONS(1050), + [anon_sym_f32] = ACTIONS(1050), + [anon_sym_f64] = ACTIONS(1050), + [anon_sym_bool] = ACTIONS(1050), + [anon_sym_str] = ACTIONS(1050), + [anon_sym_char] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_SLASH] = ACTIONS(1050), + [anon_sym_PERCENT] = ACTIONS(1050), + [anon_sym_CARET] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1050), + [anon_sym_GT_GT] = ACTIONS(1050), + [anon_sym_PLUS_EQ] = ACTIONS(1052), + [anon_sym_DASH_EQ] = ACTIONS(1052), + [anon_sym_STAR_EQ] = ACTIONS(1052), + [anon_sym_SLASH_EQ] = ACTIONS(1052), + [anon_sym_PERCENT_EQ] = ACTIONS(1052), + [anon_sym_CARET_EQ] = ACTIONS(1052), + [anon_sym_AMP_EQ] = ACTIONS(1052), + [anon_sym_PIPE_EQ] = ACTIONS(1052), + [anon_sym_LT_LT_EQ] = ACTIONS(1052), + [anon_sym_GT_GT_EQ] = ACTIONS(1052), + [anon_sym_EQ] = ACTIONS(1050), + [anon_sym_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1052), + [anon_sym_GT] = ACTIONS(1050), + [anon_sym_LT] = ACTIONS(1050), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym__] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_COLON_COLON] = ACTIONS(1052), + [anon_sym_DASH_GT] = ACTIONS(1052), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_SQUOTE] = ACTIONS(1050), + [anon_sym_as] = ACTIONS(1050), + [anon_sym_async] = ACTIONS(1050), + [anon_sym_await] = ACTIONS(1050), + [anon_sym_become] = ACTIONS(1050), + [anon_sym_break] = ACTIONS(1050), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_continue] = ACTIONS(1050), + [anon_sym_default] = ACTIONS(1050), + [anon_sym_enum] = ACTIONS(1050), + [anon_sym_fn] = ACTIONS(1050), + [anon_sym_for] = ACTIONS(1050), + [anon_sym_gen] = ACTIONS(1050), + [anon_sym_if] = ACTIONS(1050), + [anon_sym_impl] = ACTIONS(1050), + [anon_sym_let] = ACTIONS(1050), + [anon_sym_loop] = ACTIONS(1050), + [anon_sym_match] = ACTIONS(1050), + [anon_sym_mod] = ACTIONS(1050), + [anon_sym_pub] = ACTIONS(1050), + [anon_sym_return] = ACTIONS(1050), + [anon_sym_static] = ACTIONS(1050), + [anon_sym_struct] = ACTIONS(1050), + [anon_sym_trait] = ACTIONS(1050), + [anon_sym_type] = ACTIONS(1050), + [anon_sym_union] = ACTIONS(1050), + [anon_sym_unsafe] = ACTIONS(1050), + [anon_sym_use] = ACTIONS(1050), + [anon_sym_where] = ACTIONS(1050), + [anon_sym_while] = ACTIONS(1050), + [sym_mutable_specifier] = ACTIONS(1050), + [sym_integer_literal] = ACTIONS(1052), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1052), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1050), + [sym_super] = ACTIONS(1050), + [sym_crate] = ACTIONS(1050), + [sym__raw_string_literal_start] = ACTIONS(1052), + [sym_float_literal] = ACTIONS(1052), }, [STATE(247)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [aux_sym_tuple_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_identifier] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_RBRACK] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_EQ_GT] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1014), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u128] = ACTIONS(1012), + [anon_sym_i128] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_str] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_AMP_AMP] = ACTIONS(1014), + [anon_sym_PIPE_PIPE] = ACTIONS(1014), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(1014), + [anon_sym__] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_COLON_COLON] = ACTIONS(1014), + [anon_sym_DASH_GT] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_as] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_await] = ACTIONS(1012), + [anon_sym_become] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_gen] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_impl] = ACTIONS(1012), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_loop] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1012), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_pub] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_trait] = ACTIONS(1012), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_unsafe] = ACTIONS(1012), + [anon_sym_use] = ACTIONS(1012), + [anon_sym_where] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [sym_mutable_specifier] = ACTIONS(1012), + [sym_integer_literal] = ACTIONS(1014), + [aux_sym_string_literal_token1] = ACTIONS(1014), + [sym_char_literal] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_crate] = ACTIONS(1012), + [sym__raw_string_literal_start] = ACTIONS(1014), + [sym_float_literal] = ACTIONS(1014), }, [STATE(248)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1896), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1338), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_identifier] = ACTIONS(1084), + [anon_sym_SEMI] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(1086), + [anon_sym_RPAREN] = ACTIONS(1086), + [anon_sym_LBRACK] = ACTIONS(1086), + [anon_sym_RBRACK] = ACTIONS(1086), + [anon_sym_LBRACE] = ACTIONS(1086), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_EQ_GT] = ACTIONS(1086), + [anon_sym_COLON] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(1086), + [anon_sym_PLUS] = ACTIONS(1084), + [anon_sym_STAR] = ACTIONS(1084), + [anon_sym_QMARK] = ACTIONS(1086), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1084), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_PERCENT] = ACTIONS(1084), + [anon_sym_CARET] = ACTIONS(1084), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_AMP] = ACTIONS(1084), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_AMP_AMP] = ACTIONS(1086), + [anon_sym_PIPE_PIPE] = ACTIONS(1086), + [anon_sym_LT_LT] = ACTIONS(1084), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PERCENT_EQ] = ACTIONS(1086), + [anon_sym_CARET_EQ] = ACTIONS(1086), + [anon_sym_AMP_EQ] = ACTIONS(1086), + [anon_sym_PIPE_EQ] = ACTIONS(1086), + [anon_sym_LT_LT_EQ] = ACTIONS(1086), + [anon_sym_GT_GT_EQ] = ACTIONS(1086), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_EQ_EQ] = ACTIONS(1086), + [anon_sym_BANG_EQ] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1084), + [anon_sym_GT_EQ] = ACTIONS(1086), + [anon_sym_LT_EQ] = ACTIONS(1086), + [anon_sym_AT] = ACTIONS(1086), + [anon_sym__] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT] = ACTIONS(1084), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), + [anon_sym_COMMA] = ACTIONS(1086), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_DASH_GT] = ACTIONS(1086), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1084), + [anon_sym_as] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_await] = ACTIONS(1084), + [anon_sym_become] = ACTIONS(1084), + [anon_sym_break] = ACTIONS(1084), + [anon_sym_const] = ACTIONS(1084), + [anon_sym_continue] = ACTIONS(1084), + [anon_sym_default] = ACTIONS(1084), + [anon_sym_enum] = ACTIONS(1084), + [anon_sym_fn] = ACTIONS(1084), + [anon_sym_for] = ACTIONS(1084), + [anon_sym_gen] = ACTIONS(1084), + [anon_sym_if] = ACTIONS(1084), + [anon_sym_impl] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1084), + [anon_sym_loop] = ACTIONS(1084), + [anon_sym_match] = ACTIONS(1084), + [anon_sym_mod] = ACTIONS(1084), + [anon_sym_pub] = ACTIONS(1084), + [anon_sym_return] = ACTIONS(1084), + [anon_sym_static] = ACTIONS(1084), + [anon_sym_struct] = ACTIONS(1084), + [anon_sym_trait] = ACTIONS(1084), + [anon_sym_type] = ACTIONS(1084), + [anon_sym_union] = ACTIONS(1084), + [anon_sym_unsafe] = ACTIONS(1084), + [anon_sym_use] = ACTIONS(1084), + [anon_sym_where] = ACTIONS(1084), + [anon_sym_while] = ACTIONS(1084), + [sym_mutable_specifier] = ACTIONS(1084), + [sym_integer_literal] = ACTIONS(1086), + [aux_sym_string_literal_token1] = ACTIONS(1086), + [sym_char_literal] = ACTIONS(1086), + [anon_sym_true] = ACTIONS(1084), + [anon_sym_false] = ACTIONS(1084), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1084), + [sym_super] = ACTIONS(1084), + [sym_crate] = ACTIONS(1084), + [sym__raw_string_literal_start] = ACTIONS(1086), + [sym_float_literal] = ACTIONS(1086), }, [STATE(249)] = { - [sym_attribute_item] = STATE(418), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2891), - [sym_variadic_parameter] = STATE(2891), - [sym_parameter] = STATE(2891), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_RBRACK] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_EQ_GT] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym__] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COMMA] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1255), + [anon_sym_DASH_GT] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1253), + [anon_sym_await] = ACTIONS(1253), + [anon_sym_become] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_where] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [sym_mutable_specifier] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1255), + [aux_sym_string_literal_token1] = ACTIONS(1255), + [sym_char_literal] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1255), + [sym_float_literal] = ACTIONS(1255), }, [STATE(250)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1046), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_LBRACK] = ACTIONS(1048), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_EQ_GT] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1046), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_u8] = ACTIONS(1046), + [anon_sym_i8] = ACTIONS(1046), + [anon_sym_u16] = ACTIONS(1046), + [anon_sym_i16] = ACTIONS(1046), + [anon_sym_u32] = ACTIONS(1046), + [anon_sym_i32] = ACTIONS(1046), + [anon_sym_u64] = ACTIONS(1046), + [anon_sym_i64] = ACTIONS(1046), + [anon_sym_u128] = ACTIONS(1046), + [anon_sym_i128] = ACTIONS(1046), + [anon_sym_isize] = ACTIONS(1046), + [anon_sym_usize] = ACTIONS(1046), + [anon_sym_f32] = ACTIONS(1046), + [anon_sym_f64] = ACTIONS(1046), + [anon_sym_bool] = ACTIONS(1046), + [anon_sym_str] = ACTIONS(1046), + [anon_sym_char] = ACTIONS(1046), + [anon_sym_DASH] = ACTIONS(1046), + [anon_sym_SLASH] = ACTIONS(1046), + [anon_sym_PERCENT] = ACTIONS(1046), + [anon_sym_CARET] = ACTIONS(1046), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1046), + [anon_sym_GT_GT] = ACTIONS(1046), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1048), + [anon_sym_CARET_EQ] = ACTIONS(1048), + [anon_sym_AMP_EQ] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1048), + [anon_sym_LT_LT_EQ] = ACTIONS(1048), + [anon_sym_GT_GT_EQ] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1046), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1046), + [anon_sym_LT] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_AT] = ACTIONS(1048), + [anon_sym__] = ACTIONS(1046), + [anon_sym_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_COLON_COLON] = ACTIONS(1048), + [anon_sym_DASH_GT] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(1048), + [anon_sym_SQUOTE] = ACTIONS(1046), + [anon_sym_as] = ACTIONS(1046), + [anon_sym_async] = ACTIONS(1046), + [anon_sym_await] = ACTIONS(1046), + [anon_sym_become] = ACTIONS(1046), + [anon_sym_break] = ACTIONS(1046), + [anon_sym_const] = ACTIONS(1046), + [anon_sym_continue] = ACTIONS(1046), + [anon_sym_default] = ACTIONS(1046), + [anon_sym_enum] = ACTIONS(1046), + [anon_sym_fn] = ACTIONS(1046), + [anon_sym_for] = ACTIONS(1046), + [anon_sym_gen] = ACTIONS(1046), + [anon_sym_if] = ACTIONS(1046), + [anon_sym_impl] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1046), + [anon_sym_loop] = ACTIONS(1046), + [anon_sym_match] = ACTIONS(1046), + [anon_sym_mod] = ACTIONS(1046), + [anon_sym_pub] = ACTIONS(1046), + [anon_sym_return] = ACTIONS(1046), + [anon_sym_static] = ACTIONS(1046), + [anon_sym_struct] = ACTIONS(1046), + [anon_sym_trait] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(1046), + [anon_sym_union] = ACTIONS(1046), + [anon_sym_unsafe] = ACTIONS(1046), + [anon_sym_use] = ACTIONS(1046), + [anon_sym_where] = ACTIONS(1046), + [anon_sym_while] = ACTIONS(1046), + [sym_mutable_specifier] = ACTIONS(1046), + [sym_integer_literal] = ACTIONS(1048), + [aux_sym_string_literal_token1] = ACTIONS(1048), + [sym_char_literal] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1046), + [anon_sym_false] = ACTIONS(1046), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1046), + [sym_super] = ACTIONS(1046), + [sym_crate] = ACTIONS(1046), + [sym__raw_string_literal_start] = ACTIONS(1048), + [sym_float_literal] = ACTIONS(1048), }, [STATE(251)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_RBRACK] = ACTIONS(1259), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_QMARK] = ACTIONS(1259), + [anon_sym_u8] = ACTIONS(1257), + [anon_sym_i8] = ACTIONS(1257), + [anon_sym_u16] = ACTIONS(1257), + [anon_sym_i16] = ACTIONS(1257), + [anon_sym_u32] = ACTIONS(1257), + [anon_sym_i32] = ACTIONS(1257), + [anon_sym_u64] = ACTIONS(1257), + [anon_sym_i64] = ACTIONS(1257), + [anon_sym_u128] = ACTIONS(1257), + [anon_sym_i128] = ACTIONS(1257), + [anon_sym_isize] = ACTIONS(1257), + [anon_sym_usize] = ACTIONS(1257), + [anon_sym_f32] = ACTIONS(1257), + [anon_sym_f64] = ACTIONS(1257), + [anon_sym_bool] = ACTIONS(1257), + [anon_sym_str] = ACTIONS(1257), + [anon_sym_char] = ACTIONS(1257), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1257), + [anon_sym_PERCENT] = ACTIONS(1257), + [anon_sym_CARET] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1259), + [anon_sym_LT_LT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1259), + [anon_sym_DASH_EQ] = ACTIONS(1259), + [anon_sym_STAR_EQ] = ACTIONS(1259), + [anon_sym_SLASH_EQ] = ACTIONS(1259), + [anon_sym_PERCENT_EQ] = ACTIONS(1259), + [anon_sym_CARET_EQ] = ACTIONS(1259), + [anon_sym_AMP_EQ] = ACTIONS(1259), + [anon_sym_PIPE_EQ] = ACTIONS(1259), + [anon_sym_LT_LT_EQ] = ACTIONS(1259), + [anon_sym_GT_GT_EQ] = ACTIONS(1259), + [anon_sym_EQ] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1259), + [anon_sym_BANG_EQ] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1259), + [anon_sym_AT] = ACTIONS(1259), + [anon_sym__] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), + [anon_sym_COMMA] = ACTIONS(1259), + [anon_sym_COLON_COLON] = ACTIONS(1259), + [anon_sym_DASH_GT] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1257), + [anon_sym_async] = ACTIONS(1257), + [anon_sym_await] = ACTIONS(1257), + [anon_sym_become] = ACTIONS(1257), + [anon_sym_break] = ACTIONS(1257), + [anon_sym_const] = ACTIONS(1257), + [anon_sym_continue] = ACTIONS(1257), + [anon_sym_default] = ACTIONS(1257), + [anon_sym_enum] = ACTIONS(1257), + [anon_sym_fn] = ACTIONS(1257), + [anon_sym_for] = ACTIONS(1257), + [anon_sym_gen] = ACTIONS(1257), + [anon_sym_if] = ACTIONS(1257), + [anon_sym_impl] = ACTIONS(1257), + [anon_sym_let] = ACTIONS(1257), + [anon_sym_loop] = ACTIONS(1257), + [anon_sym_match] = ACTIONS(1257), + [anon_sym_mod] = ACTIONS(1257), + [anon_sym_pub] = ACTIONS(1257), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_static] = ACTIONS(1257), + [anon_sym_struct] = ACTIONS(1257), + [anon_sym_trait] = ACTIONS(1257), + [anon_sym_type] = ACTIONS(1257), + [anon_sym_union] = ACTIONS(1257), + [anon_sym_unsafe] = ACTIONS(1257), + [anon_sym_use] = ACTIONS(1257), + [anon_sym_where] = ACTIONS(1257), + [anon_sym_while] = ACTIONS(1257), + [sym_mutable_specifier] = ACTIONS(1257), + [sym_integer_literal] = ACTIONS(1259), + [aux_sym_string_literal_token1] = ACTIONS(1259), + [sym_char_literal] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1257), + [anon_sym_false] = ACTIONS(1257), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1257), + [sym_super] = ACTIONS(1257), + [sym_crate] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1259), + [sym_float_literal] = ACTIONS(1259), + }, + [STATE(252)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1970), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46328,1815 +46885,1598 @@ 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(354), + [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(1190), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(253)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(354), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(254)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1350), - [anon_sym_raw] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(255)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(256)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(257)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1360), - [anon_sym_raw] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(258)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(259)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(260)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(261)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1457), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(261), [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(262)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(263)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1374), - [anon_sym_raw] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(264)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [sym_mutable_specifier] = ACTIONS(1378), - [anon_sym_raw] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(265)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(266)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(266), [sym_block_comment] = STATE(266), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1958), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48163,2353 +48503,1935 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(267)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(268)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(268), [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(269)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1736), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(269), [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(270)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(270), [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(271)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(272)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(272), [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(273)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1965), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(273), [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [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(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(274)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [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(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(275)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1936), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(276)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [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(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(277)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(278)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(279)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(280)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(281)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(282)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(283)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(489), - [sym_match_expression] = STATE(489), - [sym_while_expression] = STATE(489), - [sym_loop_expression] = STATE(489), - [sym_for_expression] = STATE(489), - [sym_const_block] = STATE(489), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(489), - [sym_async_block] = STATE(489), - [sym_gen_block] = STATE(489), - [sym_try_block] = STATE(489), - [sym_block] = STATE(489), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50536,432 +50458,325 @@ 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(1388), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(470), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(290)] = { - [sym_else_clause] = STATE(406), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_gen] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_raw] = ACTIONS(1412), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [STATE(285)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, - [STATE(292)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1971), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(344), + [STATE(286)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50985,96 +50800,213 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(344), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1457), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(288)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1457), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51098,96 +51030,213 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(344), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), + }, + [STATE(290)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1974), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3777), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(1263), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -51214,884 +51263,1130 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(291)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(292)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), + }, + [STATE(293)] = { + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), + }, + [STATE(294)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(295)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [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(1261), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(296)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(296), [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(297)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3675), + [sym_generic_function] = STATE(1802), + [sym_generic_type_with_turbofish] = STATE(3017), + [sym__expression_except_range] = STATE(1678), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1834), + [sym_scoped_identifier] = STATE(1636), + [sym_scoped_type_identifier_in_expression_position] = STATE(3419), + [sym_range_expression] = STATE(1812), + [sym_unary_expression] = STATE(1802), + [sym_try_expression] = STATE(1802), + [sym_reference_expression] = STATE(1802), + [sym_binary_expression] = STATE(1802), + [sym_assignment_expression] = STATE(1802), + [sym_compound_assignment_expr] = STATE(1802), + [sym_type_cast_expression] = STATE(1802), + [sym_return_expression] = STATE(1802), + [sym_become_expression] = STATE(1802), + [sym_yield_expression] = STATE(1802), + [sym_call_expression] = STATE(1802), + [sym_array_expression] = STATE(1802), + [sym_parenthesized_expression] = STATE(1802), + [sym_tuple_expression] = STATE(1802), + [sym_unit_expression] = STATE(1802), + [sym_struct_expression] = STATE(1802), + [sym_if_expression] = STATE(1802), + [sym_match_expression] = STATE(1802), + [sym_while_expression] = STATE(1802), + [sym_loop_expression] = STATE(1802), + [sym_for_expression] = STATE(1802), + [sym_const_block] = STATE(1802), + [sym_closure_expression] = STATE(1802), + [sym_closure_parameters] = STATE(213), + [sym_label] = STATE(3783), + [sym_break_expression] = STATE(1802), + [sym_continue_expression] = STATE(1802), + [sym_index_expression] = STATE(1802), + [sym_await_expression] = STATE(1802), + [sym_field_expression] = STATE(1680), + [sym_unsafe_block] = STATE(1802), + [sym_async_block] = STATE(1802), + [sym_gen_block] = STATE(1802), + [sym_try_block] = STATE(1802), + [sym_block] = STATE(1802), + [sym__literal] = STATE(1802), + [sym_string_literal] = STATE(1866), + [sym_raw_string_literal] = STATE(1866), + [sym_boolean_literal] = STATE(1866), [sym_line_comment] = STATE(297), [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [sym_identifier] = ACTIONS(415), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_LBRACK] = ACTIONS(479), + [anon_sym_LBRACE] = ACTIONS(417), + [anon_sym_STAR] = ACTIONS(942), + [anon_sym_u8] = ACTIONS(421), + [anon_sym_i8] = ACTIONS(421), + [anon_sym_u16] = ACTIONS(421), + [anon_sym_i16] = ACTIONS(421), + [anon_sym_u32] = ACTIONS(421), + [anon_sym_i32] = ACTIONS(421), + [anon_sym_u64] = ACTIONS(421), + [anon_sym_i64] = ACTIONS(421), + [anon_sym_u128] = ACTIONS(421), + [anon_sym_i128] = ACTIONS(421), + [anon_sym_isize] = ACTIONS(421), + [anon_sym_usize] = ACTIONS(421), + [anon_sym_f32] = ACTIONS(421), + [anon_sym_f64] = ACTIONS(421), + [anon_sym_bool] = ACTIONS(421), + [anon_sym_str] = ACTIONS(421), + [anon_sym_char] = ACTIONS(421), + [anon_sym_DASH] = ACTIONS(942), + [anon_sym_BANG] = ACTIONS(942), + [anon_sym_AMP] = ACTIONS(944), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(425), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(427), + [anon_sym_become] = ACTIONS(429), + [anon_sym_break] = ACTIONS(431), + [anon_sym_const] = ACTIONS(433), + [anon_sym_continue] = ACTIONS(435), + [anon_sym_default] = ACTIONS(437), + [anon_sym_for] = ACTIONS(439), + [anon_sym_gen] = ACTIONS(441), + [anon_sym_if] = ACTIONS(443), + [anon_sym_loop] = ACTIONS(445), + [anon_sym_match] = ACTIONS(447), + [anon_sym_return] = ACTIONS(449), + [anon_sym_static] = ACTIONS(451), + [anon_sym_union] = ACTIONS(437), + [anon_sym_unsafe] = ACTIONS(453), + [anon_sym_while] = ACTIONS(455), + [anon_sym_raw] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(457), + [anon_sym_move] = ACTIONS(459), + [anon_sym_try] = ACTIONS(461), + [sym_integer_literal] = ACTIONS(463), + [aux_sym_string_literal_token1] = ACTIONS(465), + [sym_char_literal] = ACTIONS(463), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(469), + [sym_super] = ACTIONS(471), + [sym_crate] = ACTIONS(471), + [sym_metavariable] = ACTIONS(473), + [sym__raw_string_literal_start] = ACTIONS(475), + [sym_float_literal] = ACTIONS(463), }, [STATE(298)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(298), [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [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(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(299)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(299), [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(300)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1983), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(300), [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52115,96 +52410,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(344), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1986), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52231,93 +52528,325 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(302)] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3001), + [sym_variadic_parameter] = STATE(3001), + [sym_parameter] = STATE(3001), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(303)] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(2899), + [sym_variadic_parameter] = STATE(2899), + [sym_parameter] = STATE(2899), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2643), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(304)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1987), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52344,206 +52873,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(305)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1988), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(305), [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52565,98 +52983,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(344), + [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(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(306)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52680,96 +53100,98 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1976), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(344), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1962), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52796,93 +53218,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1949), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(344), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52906,96 +53330,213 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(309)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(310)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1961), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53022,93 +53563,325 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(311)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(312)] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3001), + [sym_variadic_parameter] = STATE(3001), + [sym_parameter] = STATE(3001), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2591), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(313)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53132,96 +53905,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(344), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53245,96 +54020,328 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(344), + [STATE(315)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(316)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(317)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53358,96 +54365,328 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(344), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(319)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(320)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53471,96 +54710,213 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(344), + [STATE(321)] = { + [sym_attribute_item] = STATE(432), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3041), + [sym_variadic_parameter] = STATE(3041), + [sym_parameter] = STATE(3041), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2740), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1393), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(322)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53584,96 +54940,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(344), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53697,96 +55055,213 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(324)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(344), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1595), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53810,96 +55285,328 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1974), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(344), + [STATE(326)] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3001), + [sym_variadic_parameter] = STATE(3001), + [sym_parameter] = STATE(3001), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2591), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1401), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(327)] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3001), + [sym_variadic_parameter] = STATE(3001), + [sym_parameter] = STATE(3001), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2591), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1405), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(328)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53926,319 +55633,210 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(319)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(320)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1002), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(344), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54262,96 +55860,98 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(489), - [sym_match_expression] = STATE(489), - [sym_while_expression] = STATE(489), - [sym_loop_expression] = STATE(489), - [sym_for_expression] = STATE(489), - [sym_const_block] = STATE(489), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(489), - [sym_async_block] = STATE(489), - [sym_gen_block] = STATE(489), - [sym_try_block] = STATE(489), - [sym_block] = STATE(489), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(344), + [STATE(331)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54378,93 +55978,95 @@ 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(1388), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1962), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(344), + [STATE(332)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54491,93 +56093,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1982), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(344), + [STATE(333)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(502), + [sym_match_expression] = STATE(502), + [sym_while_expression] = STATE(502), + [sym_loop_expression] = STATE(502), + [sym_for_expression] = STATE(502), + [sym_const_block] = STATE(502), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3777), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(502), + [sym_async_block] = STATE(502), + [sym_gen_block] = STATE(502), + [sym_try_block] = STATE(502), + [sym_block] = STATE(502), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(1263), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54604,319 +56208,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(325)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1969), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(344), + [STATE(334)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54940,96 +56320,98 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(344), + [STATE(335)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1990), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55056,93 +56438,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1953), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(344), + [STATE(336)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55169,93 +56553,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(344), + [STATE(337)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55279,209 +56665,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [sym_identifier] = ACTIONS(344), + [STATE(338)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55505,96 +56780,213 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(344), + [STATE(339)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(340)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55618,96 +57010,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(344), + [STATE(341)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55731,96 +57125,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(344), + [STATE(342)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55844,209 +57240,98 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(344), + [STATE(343)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -56070,1678 +57355,328 @@ 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(974), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(340)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, [STATE(344)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1669), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(470), + [STATE(345)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(344), + [STATE(346)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1922), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57765,209 +57700,213 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(470), + [STATE(347)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [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(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(354)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(344), + [STATE(348)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57994,206 +57933,210 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1964), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [STATE(349)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1968), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), - [sym_identifier] = ACTIONS(344), + [STATE(350)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(479), + [sym_match_expression] = STATE(479), + [sym_while_expression] = STATE(479), + [sym_loop_expression] = STATE(479), + [sym_for_expression] = STATE(479), + [sym_const_block] = STATE(479), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3777), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(479), + [sym_async_block] = STATE(479), + [sym_gen_block] = STATE(479), + [sym_try_block] = STATE(479), + [sym_block] = STATE(479), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(1263), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58220,93 +58163,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(344), + [STATE(351)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58333,93 +58278,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(344), + [STATE(352)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58446,206 +58393,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(360)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(344), + [STATE(353)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1976), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -58669,322 +58505,213 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(470), + [STATE(354)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1979), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(344), + [STATE(355)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59011,93 +58738,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), + [STATE(356)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), [sym__expression] = STATE(1981), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(344), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59124,206 +58853,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(344), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1975), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59350,206 +58968,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(344), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1965), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59576,93 +59083,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(344), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59689,93 +59198,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(344), + [STATE(360)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59802,93 +59313,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1954), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), - [sym_identifier] = ACTIONS(344), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -59915,93 +59428,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [sym_identifier] = ACTIONS(344), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1901), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60028,93 +59543,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1955), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), - [sym_identifier] = ACTIONS(344), + [STATE(363)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60141,206 +59658,210 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(470), + [STATE(364)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [sym_identifier] = ACTIONS(344), + [STATE(365)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60367,93 +59888,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1956), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [sym_identifier] = ACTIONS(344), + [STATE(366)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60480,93 +60003,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1957), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [sym_identifier] = ACTIONS(344), + [STATE(367)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60593,206 +60118,95 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1959), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [sym_identifier] = ACTIONS(344), + [STATE(368)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1972), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -60819,658 +60233,670 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(470), + [STATE(369)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1973), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [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(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(470), + [STATE(370)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [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(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(470), + [STATE(371)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [STATE(372)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(470), + [STATE(373)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [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(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [sym_identifier] = ACTIONS(344), + [STATE(374)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1977), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(353), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -61497,884 +60923,1015 @@ 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(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(361), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(369), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(470), + [STATE(375)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(470), + [STATE(376)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(470), + [STATE(377)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(389)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [sym_identifier] = ACTIONS(470), + [STATE(378)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(390)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym_identifier] = ACTIONS(470), + [STATE(379)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(391)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [sym_identifier] = ACTIONS(470), + [STATE(380)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(392)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [sym_identifier] = ACTIONS(470), + [STATE(381)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(198), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(485), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_BANG] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1038), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(491), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(523), + [anon_sym_become] = ACTIONS(525), + [anon_sym_break] = ACTIONS(527), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(529), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(531), + [anon_sym_static] = ACTIONS(533), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(535), + [anon_sym_move] = ACTIONS(537), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), }, - [STATE(393)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1966), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [sym_identifier] = ACTIONS(344), + [STATE(382)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3104), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1629), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(1542), + [sym_match_expression] = STATE(1542), + [sym_while_expression] = STATE(1542), + [sym_loop_expression] = STATE(1542), + [sym_for_expression] = STATE(1542), + [sym_const_block] = STATE(1542), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(187), + [sym_label] = STATE(3717), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(1542), + [sym_async_block] = STATE(1542), + [sym_gen_block] = STATE(1542), + [sym_try_block] = STATE(1542), + [sym_block] = STATE(1542), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(485), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(353), + [anon_sym_STAR] = ACTIONS(924), + [anon_sym_u8] = ACTIONS(487), + [anon_sym_i8] = ACTIONS(487), + [anon_sym_u16] = ACTIONS(487), + [anon_sym_i16] = ACTIONS(487), + [anon_sym_u32] = ACTIONS(487), + [anon_sym_i32] = ACTIONS(487), + [anon_sym_u64] = ACTIONS(487), + [anon_sym_i64] = ACTIONS(487), + [anon_sym_u128] = ACTIONS(487), + [anon_sym_i128] = ACTIONS(487), + [anon_sym_isize] = ACTIONS(487), + [anon_sym_usize] = ACTIONS(487), + [anon_sym_f32] = ACTIONS(487), + [anon_sym_f64] = ACTIONS(487), + [anon_sym_bool] = ACTIONS(487), + [anon_sym_str] = ACTIONS(487), + [anon_sym_char] = ACTIONS(487), + [anon_sym_DASH] = ACTIONS(924), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_AMP] = ACTIONS(926), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_COLON_COLON] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(493), + [anon_sym_become] = ACTIONS(495), + [anon_sym_break] = ACTIONS(497), + [anon_sym_const] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(499), + [anon_sym_default] = ACTIONS(501), + [anon_sym_for] = ACTIONS(367), + [anon_sym_gen] = ACTIONS(503), + [anon_sym_if] = ACTIONS(371), + [anon_sym_loop] = ACTIONS(373), + [anon_sym_match] = ACTIONS(375), + [anon_sym_return] = ACTIONS(505), + [anon_sym_static] = ACTIONS(507), + [anon_sym_union] = ACTIONS(501), + [anon_sym_unsafe] = ACTIONS(379), + [anon_sym_while] = ACTIONS(381), + [anon_sym_raw] = ACTIONS(501), + [anon_sym_yield] = ACTIONS(509), + [anon_sym_move] = ACTIONS(511), + [anon_sym_try] = ACTIONS(383), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(513), + [sym_super] = ACTIONS(515), + [sym_crate] = ACTIONS(515), + [sym_metavariable] = ACTIONS(517), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(383)] = { + [sym_bracketed_type] = STATE(3547), + [sym_generic_function] = STATE(1542), + [sym_generic_type_with_turbofish] = STATE(3046), + [sym__expression_except_range] = STATE(1435), + [sym__expression] = STATE(1980), + [sym_macro_invocation] = STATE(1452), + [sym_scoped_identifier] = STATE(1553), + [sym_scoped_type_identifier_in_expression_position] = STATE(3282), + [sym_range_expression] = STATE(1550), + [sym_unary_expression] = STATE(1542), + [sym_try_expression] = STATE(1542), + [sym_reference_expression] = STATE(1542), + [sym_binary_expression] = STATE(1542), + [sym_assignment_expression] = STATE(1542), + [sym_compound_assignment_expr] = STATE(1542), + [sym_type_cast_expression] = STATE(1542), + [sym_return_expression] = STATE(1542), + [sym_become_expression] = STATE(1542), + [sym_yield_expression] = STATE(1542), + [sym_call_expression] = STATE(1542), + [sym_array_expression] = STATE(1542), + [sym_parenthesized_expression] = STATE(1542), + [sym_tuple_expression] = STATE(1542), + [sym_unit_expression] = STATE(1542), + [sym_struct_expression] = STATE(1542), + [sym_if_expression] = STATE(502), + [sym_match_expression] = STATE(502), + [sym_while_expression] = STATE(502), + [sym_loop_expression] = STATE(502), + [sym_for_expression] = STATE(502), + [sym_const_block] = STATE(502), + [sym_closure_expression] = STATE(1542), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3777), + [sym_break_expression] = STATE(1542), + [sym_continue_expression] = STATE(1542), + [sym_index_expression] = STATE(1542), + [sym_await_expression] = STATE(1542), + [sym_field_expression] = STATE(1437), + [sym_unsafe_block] = STATE(502), + [sym_async_block] = STATE(502), + [sym_gen_block] = STATE(502), + [sym_try_block] = STATE(502), + [sym_block] = STATE(502), + [sym__literal] = STATE(1542), + [sym_string_literal] = STATE(1493), + [sym_raw_string_literal] = STATE(1493), + [sym_boolean_literal] = STATE(1493), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(349), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1263), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -62401,54636 +61958,56547 @@ 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(1388), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [anon_sym_async] = ACTIONS(1265), + [anon_sym_become] = ACTIONS(41), + [anon_sym_break] = ACTIONS(43), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_default] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1269), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1273), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1277), + [anon_sym_return] = ACTIONS(73), + [anon_sym_static] = ACTIONS(377), + [anon_sym_union] = ACTIONS(365), + [anon_sym_unsafe] = ACTIONS(1279), + [anon_sym_while] = ACTIONS(1281), + [anon_sym_raw] = ACTIONS(365), + [anon_sym_yield] = ACTIONS(95), + [anon_sym_move] = ACTIONS(97), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(101), + [aux_sym_string_literal_token1] = ACTIONS(103), + [sym_char_literal] = ACTIONS(101), + [anon_sym_true] = ACTIONS(105), + [anon_sym_false] = ACTIONS(105), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(113), + [sym_super] = ACTIONS(115), + [sym_crate] = ACTIONS(115), + [sym_metavariable] = ACTIONS(119), + [sym__raw_string_literal_start] = ACTIONS(121), + [sym_float_literal] = ACTIONS(101), + }, + [STATE(384)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(385)] = { + [sym_else_clause] = STATE(412), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(1411), + [sym_identifier] = ACTIONS(1413), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_macro_rules_BANG] = ACTIONS(1411), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_u8] = ACTIONS(1413), + [anon_sym_i8] = ACTIONS(1413), + [anon_sym_u16] = ACTIONS(1413), + [anon_sym_i16] = ACTIONS(1413), + [anon_sym_u32] = ACTIONS(1413), + [anon_sym_i32] = ACTIONS(1413), + [anon_sym_u64] = ACTIONS(1413), + [anon_sym_i64] = ACTIONS(1413), + [anon_sym_u128] = ACTIONS(1413), + [anon_sym_i128] = ACTIONS(1413), + [anon_sym_isize] = ACTIONS(1413), + [anon_sym_usize] = ACTIONS(1413), + [anon_sym_f32] = ACTIONS(1413), + [anon_sym_f64] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_str] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_PERCENT] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1413), + [anon_sym_GT_GT] = ACTIONS(1413), + [anon_sym_PLUS_EQ] = ACTIONS(1411), + [anon_sym_DASH_EQ] = ACTIONS(1411), + [anon_sym_STAR_EQ] = ACTIONS(1411), + [anon_sym_SLASH_EQ] = ACTIONS(1411), + [anon_sym_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_CARET_EQ] = ACTIONS(1411), + [anon_sym_AMP_EQ] = ACTIONS(1411), + [anon_sym_PIPE_EQ] = ACTIONS(1411), + [anon_sym_LT_LT_EQ] = ACTIONS(1411), + [anon_sym_GT_GT_EQ] = ACTIONS(1411), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_EQ_EQ] = ACTIONS(1411), + [anon_sym_BANG_EQ] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_GT_EQ] = ACTIONS(1411), + [anon_sym_LT_EQ] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), + [anon_sym_COLON_COLON] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_SQUOTE] = ACTIONS(1413), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_async] = ACTIONS(1413), + [anon_sym_become] = ACTIONS(1413), + [anon_sym_break] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_continue] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_enum] = ACTIONS(1413), + [anon_sym_fn] = ACTIONS(1413), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_gen] = ACTIONS(1413), + [anon_sym_if] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1413), + [anon_sym_loop] = ACTIONS(1413), + [anon_sym_match] = ACTIONS(1413), + [anon_sym_mod] = ACTIONS(1413), + [anon_sym_pub] = ACTIONS(1413), + [anon_sym_return] = ACTIONS(1413), + [anon_sym_static] = ACTIONS(1413), + [anon_sym_struct] = ACTIONS(1413), + [anon_sym_trait] = ACTIONS(1413), + [anon_sym_type] = ACTIONS(1413), + [anon_sym_union] = ACTIONS(1413), + [anon_sym_unsafe] = ACTIONS(1413), + [anon_sym_use] = ACTIONS(1413), + [anon_sym_while] = ACTIONS(1413), + [anon_sym_extern] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_raw] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_move] = ACTIONS(1413), + [anon_sym_try] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1411), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1413), + [sym_super] = ACTIONS(1413), + [sym_crate] = ACTIONS(1413), + [sym_metavariable] = ACTIONS(1411), + [sym__raw_string_literal_start] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), + }, + [STATE(386)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(387)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(388)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(389)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(390)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1425), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(391)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(392)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1429), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), + }, + [STATE(393)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(394)] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PERCENT_EQ] = ACTIONS(1438), - [anon_sym_CARET_EQ] = ACTIONS(1438), - [anon_sym_AMP_EQ] = ACTIONS(1438), - [anon_sym_PIPE_EQ] = ACTIONS(1438), - [anon_sym_LT_LT_EQ] = ACTIONS(1438), - [anon_sym_GT_GT_EQ] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_gen] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [anon_sym_raw] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym__raw_string_literal_start] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_become] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_raw] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, [STATE(395)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3123), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(2741), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [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_gen] = 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_else] = ACTIONS(1444), - [anon_sym_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(396)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3123), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(2741), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1446), - [anon_sym_CARET_EQ] = ACTIONS(1446), - [anon_sym_AMP_EQ] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1446), - [anon_sym_LT_LT_EQ] = ACTIONS(1446), - [anon_sym_GT_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_gen] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_else] = ACTIONS(1448), - [anon_sym_raw] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(397)] = { [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [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_gen] = 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_else] = ACTIONS(1452), - [anon_sym_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1459), + [anon_sym_become] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_impl] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_pub] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_trait] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_else] = ACTIONS(1459), + [anon_sym_raw] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_move] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), }, [STATE(398)] = { [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), - [anon_sym_STAR_EQ] = ACTIONS(1454), - [anon_sym_SLASH_EQ] = ACTIONS(1454), - [anon_sym_PERCENT_EQ] = ACTIONS(1454), - [anon_sym_CARET_EQ] = ACTIONS(1454), - [anon_sym_AMP_EQ] = ACTIONS(1454), - [anon_sym_PIPE_EQ] = ACTIONS(1454), - [anon_sym_LT_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_GT_EQ] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_as] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1463), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_PLUS_EQ] = ACTIONS(1461), + [anon_sym_DASH_EQ] = ACTIONS(1461), + [anon_sym_STAR_EQ] = ACTIONS(1461), + [anon_sym_SLASH_EQ] = ACTIONS(1461), + [anon_sym_PERCENT_EQ] = ACTIONS(1461), + [anon_sym_CARET_EQ] = ACTIONS(1461), + [anon_sym_AMP_EQ] = ACTIONS(1461), + [anon_sym_PIPE_EQ] = ACTIONS(1461), + [anon_sym_LT_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_become] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_gen] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_raw] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_move] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym__raw_string_literal_start] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), }, [STATE(399)] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3222), + [sym_variadic_parameter] = STATE(3222), + [sym_parameter] = STATE(3222), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3039), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_as] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_gen] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_raw] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [anon_sym_try] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym__raw_string_literal_start] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1409), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(400)] = { [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1464), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_macro_rules_BANG] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PERCENT_EQ] = ACTIONS(1462), - [anon_sym_CARET_EQ] = ACTIONS(1462), - [anon_sym_AMP_EQ] = ACTIONS(1462), - [anon_sym_PIPE_EQ] = ACTIONS(1462), - [anon_sym_LT_LT_EQ] = ACTIONS(1462), - [anon_sym_GT_GT_EQ] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1464), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_async] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_fn] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_gen] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_impl] = ACTIONS(1464), - [anon_sym_let] = ACTIONS(1464), - [anon_sym_loop] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1464), - [anon_sym_mod] = ACTIONS(1464), - [anon_sym_pub] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_trait] = ACTIONS(1464), - [anon_sym_type] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_unsafe] = ACTIONS(1464), - [anon_sym_use] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym_raw] = ACTIONS(1464), - [anon_sym_yield] = ACTIONS(1464), - [anon_sym_move] = ACTIONS(1464), - [anon_sym_try] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym__raw_string_literal_start] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_macro_rules_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_become] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_gen] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_impl] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_pub] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_struct] = ACTIONS(1467), + [anon_sym_trait] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_unsafe] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_raw] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_move] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), }, [STATE(401)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3123), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(2741), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym_macro_rules_BANG] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PERCENT_EQ] = ACTIONS(1466), - [anon_sym_CARET_EQ] = ACTIONS(1466), - [anon_sym_AMP_EQ] = ACTIONS(1466), - [anon_sym_PIPE_EQ] = ACTIONS(1466), - [anon_sym_LT_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_GT_EQ] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_gen] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [anon_sym_yield] = ACTIONS(1468), - [anon_sym_move] = ACTIONS(1468), - [anon_sym_try] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym__raw_string_literal_start] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1385), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(402)] = { [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_macro_rules_BANG] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PERCENT_EQ] = ACTIONS(1470), - [anon_sym_CARET_EQ] = ACTIONS(1470), - [anon_sym_AMP_EQ] = ACTIONS(1470), - [anon_sym_PIPE_EQ] = ACTIONS(1470), - [anon_sym_LT_LT_EQ] = ACTIONS(1470), - [anon_sym_GT_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_gen] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym_raw] = ACTIONS(1472), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_move] = ACTIONS(1472), - [anon_sym_try] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym__raw_string_literal_start] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_become] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [anon_sym_raw] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), }, [STATE(403)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3421), - [sym_variadic_parameter] = STATE(3421), - [sym_parameter] = STATE(3421), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3170), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_identifier] = ACTIONS(1477), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_macro_rules_BANG] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_SQUOTE] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_async] = ACTIONS(1477), + [anon_sym_become] = ACTIONS(1477), + [anon_sym_break] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_continue] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_enum] = ACTIONS(1477), + [anon_sym_fn] = ACTIONS(1477), + [anon_sym_for] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_if] = ACTIONS(1477), + [anon_sym_impl] = ACTIONS(1477), + [anon_sym_let] = ACTIONS(1477), + [anon_sym_loop] = ACTIONS(1477), + [anon_sym_match] = ACTIONS(1477), + [anon_sym_mod] = ACTIONS(1477), + [anon_sym_pub] = ACTIONS(1477), + [anon_sym_return] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1477), + [anon_sym_struct] = ACTIONS(1477), + [anon_sym_trait] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_unsafe] = ACTIONS(1477), + [anon_sym_use] = ACTIONS(1477), + [anon_sym_while] = ACTIONS(1477), + [anon_sym_extern] = ACTIONS(1477), + [anon_sym_raw] = ACTIONS(1477), + [anon_sym_yield] = ACTIONS(1477), + [anon_sym_move] = ACTIONS(1477), + [anon_sym_try] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), }, [STATE(404)] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_gen] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_raw] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym__raw_string_literal_start] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1255), + [anon_sym_macro_rules_BANG] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1255), + [anon_sym_LBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1255), + [anon_sym_DASH_EQ] = ACTIONS(1255), + [anon_sym_STAR_EQ] = ACTIONS(1255), + [anon_sym_SLASH_EQ] = ACTIONS(1255), + [anon_sym_PERCENT_EQ] = ACTIONS(1255), + [anon_sym_CARET_EQ] = ACTIONS(1255), + [anon_sym_AMP_EQ] = ACTIONS(1255), + [anon_sym_PIPE_EQ] = ACTIONS(1255), + [anon_sym_LT_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_GT_EQ] = ACTIONS(1255), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1255), + [anon_sym_BANG_EQ] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1255), + [anon_sym_COLON_COLON] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1255), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1253), + [anon_sym_become] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_raw] = ACTIONS(1253), + [anon_sym_yield] = ACTIONS(1253), + [anon_sym_move] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1255), + [aux_sym_string_literal_token1] = ACTIONS(1255), + [sym_char_literal] = ACTIONS(1255), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1255), + [sym__raw_string_literal_start] = ACTIONS(1255), + [sym_float_literal] = ACTIONS(1255), }, [STATE(405)] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PERCENT_EQ] = ACTIONS(1480), - [anon_sym_CARET_EQ] = ACTIONS(1480), - [anon_sym_AMP_EQ] = ACTIONS(1480), - [anon_sym_PIPE_EQ] = ACTIONS(1480), - [anon_sym_LT_LT_EQ] = ACTIONS(1480), - [anon_sym_GT_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_gen] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_raw] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym__raw_string_literal_start] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1479), + [sym_identifier] = ACTIONS(1481), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_macro_rules_BANG] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1479), + [anon_sym_DASH_EQ] = ACTIONS(1479), + [anon_sym_STAR_EQ] = ACTIONS(1479), + [anon_sym_SLASH_EQ] = ACTIONS(1479), + [anon_sym_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_CARET_EQ] = ACTIONS(1479), + [anon_sym_AMP_EQ] = ACTIONS(1479), + [anon_sym_PIPE_EQ] = ACTIONS(1479), + [anon_sym_LT_LT_EQ] = ACTIONS(1479), + [anon_sym_GT_GT_EQ] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1479), + [anon_sym_BANG_EQ] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT_EQ] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_SQUOTE] = ACTIONS(1481), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1481), + [anon_sym_become] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_continue] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_enum] = ACTIONS(1481), + [anon_sym_fn] = ACTIONS(1481), + [anon_sym_for] = ACTIONS(1481), + [anon_sym_gen] = ACTIONS(1481), + [anon_sym_if] = ACTIONS(1481), + [anon_sym_impl] = ACTIONS(1481), + [anon_sym_let] = ACTIONS(1481), + [anon_sym_loop] = ACTIONS(1481), + [anon_sym_match] = ACTIONS(1481), + [anon_sym_mod] = ACTIONS(1481), + [anon_sym_pub] = ACTIONS(1481), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_static] = ACTIONS(1481), + [anon_sym_struct] = ACTIONS(1481), + [anon_sym_trait] = ACTIONS(1481), + [anon_sym_type] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_unsafe] = ACTIONS(1481), + [anon_sym_use] = ACTIONS(1481), + [anon_sym_while] = ACTIONS(1481), + [anon_sym_extern] = ACTIONS(1481), + [anon_sym_raw] = ACTIONS(1481), + [anon_sym_yield] = ACTIONS(1481), + [anon_sym_move] = ACTIONS(1481), + [anon_sym_try] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym__raw_string_literal_start] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), }, [STATE(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_PERCENT_EQ] = ACTIONS(1484), - [anon_sym_CARET_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_gen] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_raw] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym__raw_string_literal_start] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [ts_builtin_sym_end] = ACTIONS(1483), + [sym_identifier] = ACTIONS(1485), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_macro_rules_BANG] = ACTIONS(1483), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_QMARK] = ACTIONS(1483), + [anon_sym_u8] = ACTIONS(1485), + [anon_sym_i8] = ACTIONS(1485), + [anon_sym_u16] = ACTIONS(1485), + [anon_sym_i16] = ACTIONS(1485), + [anon_sym_u32] = ACTIONS(1485), + [anon_sym_i32] = ACTIONS(1485), + [anon_sym_u64] = ACTIONS(1485), + [anon_sym_i64] = ACTIONS(1485), + [anon_sym_u128] = ACTIONS(1485), + [anon_sym_i128] = ACTIONS(1485), + [anon_sym_isize] = ACTIONS(1485), + [anon_sym_usize] = ACTIONS(1485), + [anon_sym_f32] = ACTIONS(1485), + [anon_sym_f64] = ACTIONS(1485), + [anon_sym_bool] = ACTIONS(1485), + [anon_sym_str] = ACTIONS(1485), + [anon_sym_char] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1485), + [anon_sym_GT_GT] = ACTIONS(1485), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1485), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_GT] = ACTIONS(1485), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT] = ACTIONS(1485), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), + [anon_sym_COLON_COLON] = ACTIONS(1483), + [anon_sym_POUND] = ACTIONS(1483), + [anon_sym_SQUOTE] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(1485), + [anon_sym_async] = ACTIONS(1485), + [anon_sym_become] = ACTIONS(1485), + [anon_sym_break] = ACTIONS(1485), + [anon_sym_const] = ACTIONS(1485), + [anon_sym_continue] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(1485), + [anon_sym_enum] = ACTIONS(1485), + [anon_sym_fn] = ACTIONS(1485), + [anon_sym_for] = ACTIONS(1485), + [anon_sym_gen] = ACTIONS(1485), + [anon_sym_if] = ACTIONS(1485), + [anon_sym_impl] = ACTIONS(1485), + [anon_sym_let] = ACTIONS(1485), + [anon_sym_loop] = ACTIONS(1485), + [anon_sym_match] = ACTIONS(1485), + [anon_sym_mod] = ACTIONS(1485), + [anon_sym_pub] = ACTIONS(1485), + [anon_sym_return] = ACTIONS(1485), + [anon_sym_static] = ACTIONS(1485), + [anon_sym_struct] = ACTIONS(1485), + [anon_sym_trait] = ACTIONS(1485), + [anon_sym_type] = ACTIONS(1485), + [anon_sym_union] = ACTIONS(1485), + [anon_sym_unsafe] = ACTIONS(1485), + [anon_sym_use] = ACTIONS(1485), + [anon_sym_while] = ACTIONS(1485), + [anon_sym_extern] = ACTIONS(1485), + [anon_sym_raw] = ACTIONS(1485), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_move] = ACTIONS(1485), + [anon_sym_try] = ACTIONS(1485), + [sym_integer_literal] = ACTIONS(1483), + [aux_sym_string_literal_token1] = ACTIONS(1483), + [sym_char_literal] = ACTIONS(1483), + [anon_sym_true] = ACTIONS(1485), + [anon_sym_false] = ACTIONS(1485), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1485), + [sym_super] = ACTIONS(1485), + [sym_crate] = ACTIONS(1485), + [sym_metavariable] = ACTIONS(1483), + [sym__raw_string_literal_start] = ACTIONS(1483), + [sym_float_literal] = ACTIONS(1483), }, [STATE(407)] = { [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1488), - [anon_sym_PIPE_PIPE] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PERCENT_EQ] = ACTIONS(1488), - [anon_sym_CARET_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_gen] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_raw] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym__raw_string_literal_start] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_identifier] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_macro_rules_BANG] = ACTIONS(1487), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_SQUOTE] = ACTIONS(1489), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(1489), + [anon_sym_become] = ACTIONS(1489), + [anon_sym_break] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_continue] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_enum] = ACTIONS(1489), + [anon_sym_fn] = ACTIONS(1489), + [anon_sym_for] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1489), + [anon_sym_impl] = ACTIONS(1489), + [anon_sym_let] = ACTIONS(1489), + [anon_sym_loop] = ACTIONS(1489), + [anon_sym_match] = ACTIONS(1489), + [anon_sym_mod] = ACTIONS(1489), + [anon_sym_pub] = ACTIONS(1489), + [anon_sym_return] = ACTIONS(1489), + [anon_sym_static] = ACTIONS(1489), + [anon_sym_struct] = ACTIONS(1489), + [anon_sym_trait] = ACTIONS(1489), + [anon_sym_type] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_unsafe] = ACTIONS(1489), + [anon_sym_use] = ACTIONS(1489), + [anon_sym_while] = ACTIONS(1489), + [anon_sym_extern] = ACTIONS(1489), + [anon_sym_raw] = ACTIONS(1489), + [anon_sym_yield] = ACTIONS(1489), + [anon_sym_move] = ACTIONS(1489), + [anon_sym_try] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), }, [STATE(408)] = { [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PERCENT_EQ] = ACTIONS(1492), - [anon_sym_CARET_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_gen] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_raw] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym__raw_string_literal_start] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [ts_builtin_sym_end] = ACTIONS(1491), + [sym_identifier] = ACTIONS(1493), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_macro_rules_BANG] = ACTIONS(1491), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_SQUOTE] = ACTIONS(1493), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_async] = ACTIONS(1493), + [anon_sym_become] = ACTIONS(1493), + [anon_sym_break] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_continue] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_enum] = ACTIONS(1493), + [anon_sym_fn] = ACTIONS(1493), + [anon_sym_for] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_if] = ACTIONS(1493), + [anon_sym_impl] = ACTIONS(1493), + [anon_sym_let] = ACTIONS(1493), + [anon_sym_loop] = ACTIONS(1493), + [anon_sym_match] = ACTIONS(1493), + [anon_sym_mod] = ACTIONS(1493), + [anon_sym_pub] = ACTIONS(1493), + [anon_sym_return] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1493), + [anon_sym_struct] = ACTIONS(1493), + [anon_sym_trait] = ACTIONS(1493), + [anon_sym_type] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_unsafe] = ACTIONS(1493), + [anon_sym_use] = ACTIONS(1493), + [anon_sym_while] = ACTIONS(1493), + [anon_sym_extern] = ACTIONS(1493), + [anon_sym_raw] = ACTIONS(1493), + [anon_sym_yield] = ACTIONS(1493), + [anon_sym_move] = ACTIONS(1493), + [anon_sym_try] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), }, [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT_EQ] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_gen] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_raw] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym__raw_string_literal_start] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [ts_builtin_sym_end] = ACTIONS(1495), + [sym_identifier] = ACTIONS(1497), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_macro_rules_BANG] = ACTIONS(1495), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_SQUOTE] = ACTIONS(1497), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_async] = ACTIONS(1497), + [anon_sym_become] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_enum] = ACTIONS(1497), + [anon_sym_fn] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_impl] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_mod] = ACTIONS(1497), + [anon_sym_pub] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_static] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1497), + [anon_sym_trait] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_unsafe] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_raw] = ACTIONS(1497), + [anon_sym_yield] = ACTIONS(1497), + [anon_sym_move] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), }, [STATE(410)] = { [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_identifier] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_macro_rules_BANG] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_SQUOTE] = ACTIONS(1501), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_async] = ACTIONS(1501), + [anon_sym_become] = ACTIONS(1501), + [anon_sym_break] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_continue] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_enum] = ACTIONS(1501), + [anon_sym_fn] = ACTIONS(1501), + [anon_sym_for] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_if] = ACTIONS(1501), + [anon_sym_impl] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1501), + [anon_sym_loop] = ACTIONS(1501), + [anon_sym_match] = ACTIONS(1501), + [anon_sym_mod] = ACTIONS(1501), + [anon_sym_pub] = ACTIONS(1501), + [anon_sym_return] = ACTIONS(1501), + [anon_sym_static] = ACTIONS(1501), + [anon_sym_struct] = ACTIONS(1501), + [anon_sym_trait] = ACTIONS(1501), + [anon_sym_type] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_unsafe] = ACTIONS(1501), + [anon_sym_use] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1501), + [anon_sym_extern] = ACTIONS(1501), + [anon_sym_raw] = ACTIONS(1501), + [anon_sym_yield] = ACTIONS(1501), + [anon_sym_move] = ACTIONS(1501), + [anon_sym_try] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), }, [STATE(411)] = { [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1508), - [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(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1508), - [anon_sym_PIPE_PIPE] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PERCENT_EQ] = ACTIONS(1508), - [anon_sym_CARET_EQ] = ACTIONS(1508), - [anon_sym_AMP_EQ] = ACTIONS(1508), - [anon_sym_PIPE_EQ] = ACTIONS(1508), - [anon_sym_LT_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_GT_EQ] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_gen] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_raw] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym__raw_string_literal_start] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [ts_builtin_sym_end] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1243), + [anon_sym_macro_rules_BANG] = ACTIONS(1243), + [anon_sym_LPAREN] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1241), + [anon_sym_STAR] = ACTIONS(1241), + [anon_sym_QMARK] = ACTIONS(1243), + [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(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_LT_LT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1243), + [anon_sym_DASH_EQ] = ACTIONS(1243), + [anon_sym_STAR_EQ] = ACTIONS(1243), + [anon_sym_SLASH_EQ] = ACTIONS(1243), + [anon_sym_PERCENT_EQ] = ACTIONS(1243), + [anon_sym_CARET_EQ] = ACTIONS(1243), + [anon_sym_AMP_EQ] = ACTIONS(1243), + [anon_sym_PIPE_EQ] = ACTIONS(1243), + [anon_sym_LT_LT_EQ] = ACTIONS(1243), + [anon_sym_GT_GT_EQ] = ACTIONS(1243), + [anon_sym_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1243), + [anon_sym_BANG_EQ] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1243), + [anon_sym_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1243), + [anon_sym_COLON_COLON] = ACTIONS(1243), + [anon_sym_POUND] = ACTIONS(1243), + [anon_sym_SQUOTE] = ACTIONS(1241), + [anon_sym_as] = ACTIONS(1241), + [anon_sym_async] = ACTIONS(1241), + [anon_sym_become] = 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_raw] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(1241), + [anon_sym_move] = ACTIONS(1241), + [anon_sym_try] = ACTIONS(1241), + [sym_integer_literal] = ACTIONS(1243), + [aux_sym_string_literal_token1] = ACTIONS(1243), + [sym_char_literal] = ACTIONS(1243), + [anon_sym_true] = ACTIONS(1241), + [anon_sym_false] = ACTIONS(1241), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1241), + [sym_super] = ACTIONS(1241), + [sym_crate] = ACTIONS(1241), + [sym_metavariable] = ACTIONS(1243), + [sym__raw_string_literal_start] = ACTIONS(1243), + [sym_float_literal] = ACTIONS(1243), }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_as] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_gen] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_raw] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym__raw_string_literal_start] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1503), + [sym_identifier] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_macro_rules_BANG] = ACTIONS(1503), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_async] = ACTIONS(1505), + [anon_sym_become] = ACTIONS(1505), + [anon_sym_break] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_continue] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_enum] = ACTIONS(1505), + [anon_sym_fn] = ACTIONS(1505), + [anon_sym_for] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_if] = ACTIONS(1505), + [anon_sym_impl] = ACTIONS(1505), + [anon_sym_let] = ACTIONS(1505), + [anon_sym_loop] = ACTIONS(1505), + [anon_sym_match] = ACTIONS(1505), + [anon_sym_mod] = ACTIONS(1505), + [anon_sym_pub] = ACTIONS(1505), + [anon_sym_return] = ACTIONS(1505), + [anon_sym_static] = ACTIONS(1505), + [anon_sym_struct] = ACTIONS(1505), + [anon_sym_trait] = ACTIONS(1505), + [anon_sym_type] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_unsafe] = ACTIONS(1505), + [anon_sym_use] = ACTIONS(1505), + [anon_sym_while] = ACTIONS(1505), + [anon_sym_extern] = ACTIONS(1505), + [anon_sym_raw] = ACTIONS(1505), + [anon_sym_yield] = ACTIONS(1505), + [anon_sym_move] = ACTIONS(1505), + [anon_sym_try] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym__raw_string_literal_start] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), }, [STATE(413)] = { [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_macro_rules_BANG] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1136), - [anon_sym_BANG_EQ] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_GT_EQ] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_as] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym_raw] = ACTIONS(1134), - [anon_sym_yield] = ACTIONS(1134), - [anon_sym_move] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym_metavariable] = ACTIONS(1136), - [sym__raw_string_literal_start] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), + [ts_builtin_sym_end] = ACTIONS(1507), + [sym_identifier] = ACTIONS(1509), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_macro_rules_BANG] = ACTIONS(1507), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_SQUOTE] = ACTIONS(1509), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_async] = ACTIONS(1509), + [anon_sym_become] = ACTIONS(1509), + [anon_sym_break] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_continue] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_enum] = ACTIONS(1509), + [anon_sym_fn] = ACTIONS(1509), + [anon_sym_for] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_if] = ACTIONS(1509), + [anon_sym_impl] = ACTIONS(1509), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_loop] = ACTIONS(1509), + [anon_sym_match] = ACTIONS(1509), + [anon_sym_mod] = ACTIONS(1509), + [anon_sym_pub] = ACTIONS(1509), + [anon_sym_return] = ACTIONS(1509), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_struct] = ACTIONS(1509), + [anon_sym_trait] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_unsafe] = ACTIONS(1509), + [anon_sym_use] = ACTIONS(1509), + [anon_sym_while] = ACTIONS(1509), + [anon_sym_extern] = ACTIONS(1509), + [anon_sym_raw] = ACTIONS(1509), + [anon_sym_yield] = ACTIONS(1509), + [anon_sym_move] = ACTIONS(1509), + [anon_sym_try] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), }, [STATE(414)] = { [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_gen] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_raw] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym__raw_string_literal_start] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_identifier] = ACTIONS(1513), + [anon_sym_SEMI] = ACTIONS(1511), + [anon_sym_macro_rules_BANG] = ACTIONS(1511), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_BANG] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PERCENT_EQ] = ACTIONS(1511), + [anon_sym_CARET_EQ] = ACTIONS(1511), + [anon_sym_AMP_EQ] = ACTIONS(1511), + [anon_sym_PIPE_EQ] = ACTIONS(1511), + [anon_sym_LT_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_GT_EQ] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_SQUOTE] = ACTIONS(1513), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_async] = ACTIONS(1513), + [anon_sym_become] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_continue] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_enum] = ACTIONS(1513), + [anon_sym_fn] = ACTIONS(1513), + [anon_sym_for] = ACTIONS(1513), + [anon_sym_gen] = ACTIONS(1513), + [anon_sym_if] = ACTIONS(1513), + [anon_sym_impl] = ACTIONS(1513), + [anon_sym_let] = ACTIONS(1513), + [anon_sym_loop] = ACTIONS(1513), + [anon_sym_match] = ACTIONS(1513), + [anon_sym_mod] = ACTIONS(1513), + [anon_sym_pub] = ACTIONS(1513), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_static] = ACTIONS(1513), + [anon_sym_struct] = ACTIONS(1513), + [anon_sym_trait] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_unsafe] = ACTIONS(1513), + [anon_sym_use] = ACTIONS(1513), + [anon_sym_while] = ACTIONS(1513), + [anon_sym_extern] = ACTIONS(1513), + [anon_sym_raw] = ACTIONS(1513), + [anon_sym_yield] = ACTIONS(1513), + [anon_sym_move] = ACTIONS(1513), + [anon_sym_try] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_crate] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1511), + [sym__raw_string_literal_start] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), }, [STATE(415)] = { [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_as] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_gen] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_raw] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym__raw_string_literal_start] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [ts_builtin_sym_end] = ACTIONS(1515), + [sym_identifier] = ACTIONS(1517), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_macro_rules_BANG] = ACTIONS(1515), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_LBRACE] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1517), + [anon_sym_BANG] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1517), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PERCENT_EQ] = ACTIONS(1515), + [anon_sym_CARET_EQ] = ACTIONS(1515), + [anon_sym_AMP_EQ] = ACTIONS(1515), + [anon_sym_PIPE_EQ] = ACTIONS(1515), + [anon_sym_LT_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1517), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_async] = ACTIONS(1517), + [anon_sym_become] = ACTIONS(1517), + [anon_sym_break] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_continue] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_enum] = ACTIONS(1517), + [anon_sym_fn] = ACTIONS(1517), + [anon_sym_for] = ACTIONS(1517), + [anon_sym_gen] = ACTIONS(1517), + [anon_sym_if] = ACTIONS(1517), + [anon_sym_impl] = ACTIONS(1517), + [anon_sym_let] = ACTIONS(1517), + [anon_sym_loop] = ACTIONS(1517), + [anon_sym_match] = ACTIONS(1517), + [anon_sym_mod] = ACTIONS(1517), + [anon_sym_pub] = ACTIONS(1517), + [anon_sym_return] = ACTIONS(1517), + [anon_sym_static] = ACTIONS(1517), + [anon_sym_struct] = ACTIONS(1517), + [anon_sym_trait] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_unsafe] = ACTIONS(1517), + [anon_sym_use] = ACTIONS(1517), + [anon_sym_while] = ACTIONS(1517), + [anon_sym_extern] = ACTIONS(1517), + [anon_sym_raw] = ACTIONS(1517), + [anon_sym_yield] = ACTIONS(1517), + [anon_sym_move] = ACTIONS(1517), + [anon_sym_try] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_crate] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym__raw_string_literal_start] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), }, [STATE(416)] = { [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1524), - [anon_sym_PIPE_PIPE] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PERCENT_EQ] = ACTIONS(1524), - [anon_sym_CARET_EQ] = ACTIONS(1524), - [anon_sym_AMP_EQ] = ACTIONS(1524), - [anon_sym_PIPE_EQ] = ACTIONS(1524), - [anon_sym_LT_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_GT_EQ] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_as] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_gen] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_raw] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_move] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1519), + [sym_identifier] = ACTIONS(1521), + [anon_sym_SEMI] = ACTIONS(1519), + [anon_sym_macro_rules_BANG] = ACTIONS(1519), + [anon_sym_LPAREN] = ACTIONS(1519), + [anon_sym_LBRACK] = ACTIONS(1519), + [anon_sym_LBRACE] = ACTIONS(1519), + [anon_sym_RBRACE] = ACTIONS(1519), + [anon_sym_PLUS] = ACTIONS(1521), + [anon_sym_STAR] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1519), + [anon_sym_u8] = ACTIONS(1521), + [anon_sym_i8] = ACTIONS(1521), + [anon_sym_u16] = ACTIONS(1521), + [anon_sym_i16] = ACTIONS(1521), + [anon_sym_u32] = ACTIONS(1521), + [anon_sym_i32] = ACTIONS(1521), + [anon_sym_u64] = ACTIONS(1521), + [anon_sym_i64] = ACTIONS(1521), + [anon_sym_u128] = ACTIONS(1521), + [anon_sym_i128] = ACTIONS(1521), + [anon_sym_isize] = ACTIONS(1521), + [anon_sym_usize] = ACTIONS(1521), + [anon_sym_f32] = ACTIONS(1521), + [anon_sym_f64] = ACTIONS(1521), + [anon_sym_bool] = ACTIONS(1521), + [anon_sym_str] = ACTIONS(1521), + [anon_sym_char] = ACTIONS(1521), + [anon_sym_DASH] = ACTIONS(1521), + [anon_sym_SLASH] = ACTIONS(1521), + [anon_sym_PERCENT] = ACTIONS(1521), + [anon_sym_CARET] = ACTIONS(1521), + [anon_sym_BANG] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + [anon_sym_PIPE] = ACTIONS(1521), + [anon_sym_AMP_AMP] = ACTIONS(1519), + [anon_sym_PIPE_PIPE] = ACTIONS(1519), + [anon_sym_LT_LT] = ACTIONS(1521), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_PLUS_EQ] = ACTIONS(1519), + [anon_sym_DASH_EQ] = ACTIONS(1519), + [anon_sym_STAR_EQ] = ACTIONS(1519), + [anon_sym_SLASH_EQ] = ACTIONS(1519), + [anon_sym_PERCENT_EQ] = ACTIONS(1519), + [anon_sym_CARET_EQ] = ACTIONS(1519), + [anon_sym_AMP_EQ] = ACTIONS(1519), + [anon_sym_PIPE_EQ] = ACTIONS(1519), + [anon_sym_LT_LT_EQ] = ACTIONS(1519), + [anon_sym_GT_GT_EQ] = ACTIONS(1519), + [anon_sym_EQ] = ACTIONS(1521), + [anon_sym_EQ_EQ] = ACTIONS(1519), + [anon_sym_BANG_EQ] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1521), + [anon_sym_LT] = ACTIONS(1521), + [anon_sym_GT_EQ] = ACTIONS(1519), + [anon_sym_LT_EQ] = ACTIONS(1519), + [anon_sym_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT] = ACTIONS(1521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1519), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1519), + [anon_sym_POUND] = ACTIONS(1519), + [anon_sym_SQUOTE] = ACTIONS(1521), + [anon_sym_as] = ACTIONS(1521), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_become] = ACTIONS(1521), + [anon_sym_break] = ACTIONS(1521), + [anon_sym_const] = ACTIONS(1521), + [anon_sym_continue] = ACTIONS(1521), + [anon_sym_default] = ACTIONS(1521), + [anon_sym_enum] = ACTIONS(1521), + [anon_sym_fn] = ACTIONS(1521), + [anon_sym_for] = ACTIONS(1521), + [anon_sym_gen] = ACTIONS(1521), + [anon_sym_if] = ACTIONS(1521), + [anon_sym_impl] = ACTIONS(1521), + [anon_sym_let] = ACTIONS(1521), + [anon_sym_loop] = ACTIONS(1521), + [anon_sym_match] = ACTIONS(1521), + [anon_sym_mod] = ACTIONS(1521), + [anon_sym_pub] = ACTIONS(1521), + [anon_sym_return] = ACTIONS(1521), + [anon_sym_static] = ACTIONS(1521), + [anon_sym_struct] = ACTIONS(1521), + [anon_sym_trait] = ACTIONS(1521), + [anon_sym_type] = ACTIONS(1521), + [anon_sym_union] = ACTIONS(1521), + [anon_sym_unsafe] = ACTIONS(1521), + [anon_sym_use] = ACTIONS(1521), + [anon_sym_while] = ACTIONS(1521), + [anon_sym_extern] = ACTIONS(1521), + [anon_sym_raw] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1521), + [anon_sym_try] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1519), + [aux_sym_string_literal_token1] = ACTIONS(1519), + [sym_char_literal] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(1521), + [anon_sym_false] = ACTIONS(1521), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1521), + [sym_super] = ACTIONS(1521), + [sym_crate] = ACTIONS(1521), + [sym_metavariable] = ACTIONS(1519), + [sym__raw_string_literal_start] = ACTIONS(1519), + [sym_float_literal] = ACTIONS(1519), }, [STATE(417)] = { [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1528), - [anon_sym_macro_rules_BANG] = ACTIONS(1528), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_STAR] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_PERCENT] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1530), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_AMP_AMP] = ACTIONS(1528), - [anon_sym_PIPE_PIPE] = ACTIONS(1528), - [anon_sym_LT_LT] = ACTIONS(1530), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_PLUS_EQ] = ACTIONS(1528), - [anon_sym_DASH_EQ] = ACTIONS(1528), - [anon_sym_STAR_EQ] = ACTIONS(1528), - [anon_sym_SLASH_EQ] = ACTIONS(1528), - [anon_sym_PERCENT_EQ] = ACTIONS(1528), - [anon_sym_CARET_EQ] = ACTIONS(1528), - [anon_sym_AMP_EQ] = ACTIONS(1528), - [anon_sym_PIPE_EQ] = ACTIONS(1528), - [anon_sym_LT_LT_EQ] = ACTIONS(1528), - [anon_sym_GT_GT_EQ] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1530), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_DOT_DOT] = ACTIONS(1530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_gen] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_raw] = ACTIONS(1530), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_move] = ACTIONS(1530), - [anon_sym_try] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_metavariable] = ACTIONS(1528), - [sym__raw_string_literal_start] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_identifier] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1523), + [anon_sym_macro_rules_BANG] = ACTIONS(1523), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1525), + [anon_sym_i8] = ACTIONS(1525), + [anon_sym_u16] = ACTIONS(1525), + [anon_sym_i16] = ACTIONS(1525), + [anon_sym_u32] = ACTIONS(1525), + [anon_sym_i32] = ACTIONS(1525), + [anon_sym_u64] = ACTIONS(1525), + [anon_sym_i64] = ACTIONS(1525), + [anon_sym_u128] = ACTIONS(1525), + [anon_sym_i128] = ACTIONS(1525), + [anon_sym_isize] = ACTIONS(1525), + [anon_sym_usize] = ACTIONS(1525), + [anon_sym_f32] = ACTIONS(1525), + [anon_sym_f64] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_str] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_SQUOTE] = ACTIONS(1525), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_async] = ACTIONS(1525), + [anon_sym_become] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_enum] = ACTIONS(1525), + [anon_sym_fn] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_gen] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_impl] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_mod] = ACTIONS(1525), + [anon_sym_pub] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_static] = ACTIONS(1525), + [anon_sym_struct] = ACTIONS(1525), + [anon_sym_trait] = ACTIONS(1525), + [anon_sym_type] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_unsafe] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_raw] = ACTIONS(1525), + [anon_sym_yield] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1523), + [aux_sym_string_literal_token1] = ACTIONS(1523), + [sym_char_literal] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_crate] = ACTIONS(1525), + [sym_metavariable] = ACTIONS(1523), + [sym__raw_string_literal_start] = ACTIONS(1523), + [sym_float_literal] = ACTIONS(1523), }, [STATE(418)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2946), - [sym_variadic_parameter] = STATE(2946), - [sym_parameter] = STATE(2946), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_become] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_raw] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, [STATE(419)] = { [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_macro_rules_BANG] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_gen] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_raw] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym__raw_string_literal_start] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_identifier] = ACTIONS(1537), + [anon_sym_SEMI] = ACTIONS(1535), + [anon_sym_macro_rules_BANG] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_LBRACK] = ACTIONS(1535), + [anon_sym_LBRACE] = ACTIONS(1535), + [anon_sym_RBRACE] = ACTIONS(1535), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1537), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1537), + [anon_sym_i8] = ACTIONS(1537), + [anon_sym_u16] = ACTIONS(1537), + [anon_sym_i16] = ACTIONS(1537), + [anon_sym_u32] = ACTIONS(1537), + [anon_sym_i32] = ACTIONS(1537), + [anon_sym_u64] = ACTIONS(1537), + [anon_sym_i64] = ACTIONS(1537), + [anon_sym_u128] = ACTIONS(1537), + [anon_sym_i128] = ACTIONS(1537), + [anon_sym_isize] = ACTIONS(1537), + [anon_sym_usize] = ACTIONS(1537), + [anon_sym_f32] = ACTIONS(1537), + [anon_sym_f64] = ACTIONS(1537), + [anon_sym_bool] = ACTIONS(1537), + [anon_sym_str] = ACTIONS(1537), + [anon_sym_char] = ACTIONS(1537), + [anon_sym_DASH] = ACTIONS(1537), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1537), + [anon_sym_AMP] = ACTIONS(1537), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1537), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1535), + [anon_sym_POUND] = ACTIONS(1535), + [anon_sym_SQUOTE] = ACTIONS(1537), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1537), + [anon_sym_become] = ACTIONS(1537), + [anon_sym_break] = ACTIONS(1537), + [anon_sym_const] = ACTIONS(1537), + [anon_sym_continue] = ACTIONS(1537), + [anon_sym_default] = ACTIONS(1537), + [anon_sym_enum] = ACTIONS(1537), + [anon_sym_fn] = ACTIONS(1537), + [anon_sym_for] = ACTIONS(1537), + [anon_sym_gen] = ACTIONS(1537), + [anon_sym_if] = ACTIONS(1537), + [anon_sym_impl] = ACTIONS(1537), + [anon_sym_let] = ACTIONS(1537), + [anon_sym_loop] = ACTIONS(1537), + [anon_sym_match] = ACTIONS(1537), + [anon_sym_mod] = ACTIONS(1537), + [anon_sym_pub] = ACTIONS(1537), + [anon_sym_return] = ACTIONS(1537), + [anon_sym_static] = ACTIONS(1537), + [anon_sym_struct] = ACTIONS(1537), + [anon_sym_trait] = ACTIONS(1537), + [anon_sym_type] = ACTIONS(1537), + [anon_sym_union] = ACTIONS(1537), + [anon_sym_unsafe] = ACTIONS(1537), + [anon_sym_use] = ACTIONS(1537), + [anon_sym_while] = ACTIONS(1537), + [anon_sym_extern] = ACTIONS(1537), + [anon_sym_raw] = ACTIONS(1537), + [anon_sym_yield] = ACTIONS(1537), + [anon_sym_move] = ACTIONS(1537), + [anon_sym_try] = ACTIONS(1537), + [sym_integer_literal] = ACTIONS(1535), + [aux_sym_string_literal_token1] = ACTIONS(1535), + [sym_char_literal] = ACTIONS(1535), + [anon_sym_true] = ACTIONS(1537), + [anon_sym_false] = ACTIONS(1537), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1537), + [sym_super] = ACTIONS(1537), + [sym_crate] = ACTIONS(1537), + [sym_metavariable] = ACTIONS(1535), + [sym__raw_string_literal_start] = ACTIONS(1535), + [sym_float_literal] = ACTIONS(1535), }, [STATE(420)] = { [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_macro_rules_BANG] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1056), - [anon_sym_u8] = ACTIONS(1054), - [anon_sym_i8] = ACTIONS(1054), - [anon_sym_u16] = ACTIONS(1054), - [anon_sym_i16] = ACTIONS(1054), - [anon_sym_u32] = ACTIONS(1054), - [anon_sym_i32] = ACTIONS(1054), - [anon_sym_u64] = ACTIONS(1054), - [anon_sym_i64] = ACTIONS(1054), - [anon_sym_u128] = ACTIONS(1054), - [anon_sym_i128] = ACTIONS(1054), - [anon_sym_isize] = ACTIONS(1054), - [anon_sym_usize] = ACTIONS(1054), - [anon_sym_f32] = ACTIONS(1054), - [anon_sym_f64] = ACTIONS(1054), - [anon_sym_bool] = ACTIONS(1054), - [anon_sym_str] = ACTIONS(1054), - [anon_sym_char] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_LT_LT] = ACTIONS(1054), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1056), - [anon_sym_DASH_EQ] = ACTIONS(1056), - [anon_sym_STAR_EQ] = ACTIONS(1056), - [anon_sym_SLASH_EQ] = ACTIONS(1056), - [anon_sym_PERCENT_EQ] = ACTIONS(1056), - [anon_sym_CARET_EQ] = ACTIONS(1056), - [anon_sym_AMP_EQ] = ACTIONS(1056), - [anon_sym_PIPE_EQ] = ACTIONS(1056), - [anon_sym_LT_LT_EQ] = ACTIONS(1056), - [anon_sym_GT_GT_EQ] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1056), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_fn] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_gen] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_pub] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_trait] = ACTIONS(1054), - [anon_sym_type] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_raw] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1054), - [anon_sym_move] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1054), - [sym_integer_literal] = ACTIONS(1056), - [aux_sym_string_literal_token1] = ACTIONS(1056), - [sym_char_literal] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1054), - [sym_super] = ACTIONS(1054), - [sym_crate] = ACTIONS(1054), - [sym_metavariable] = ACTIONS(1056), - [sym__raw_string_literal_start] = ACTIONS(1056), - [sym_float_literal] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1539), + [sym_identifier] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1539), + [anon_sym_macro_rules_BANG] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_SQUOTE] = ACTIONS(1541), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_async] = ACTIONS(1541), + [anon_sym_become] = ACTIONS(1541), + [anon_sym_break] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_continue] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_enum] = ACTIONS(1541), + [anon_sym_fn] = ACTIONS(1541), + [anon_sym_for] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_if] = ACTIONS(1541), + [anon_sym_impl] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1541), + [anon_sym_loop] = ACTIONS(1541), + [anon_sym_match] = ACTIONS(1541), + [anon_sym_mod] = ACTIONS(1541), + [anon_sym_pub] = ACTIONS(1541), + [anon_sym_return] = ACTIONS(1541), + [anon_sym_static] = ACTIONS(1541), + [anon_sym_struct] = ACTIONS(1541), + [anon_sym_trait] = ACTIONS(1541), + [anon_sym_type] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_unsafe] = ACTIONS(1541), + [anon_sym_use] = ACTIONS(1541), + [anon_sym_while] = ACTIONS(1541), + [anon_sym_extern] = ACTIONS(1541), + [anon_sym_raw] = ACTIONS(1541), + [anon_sym_yield] = ACTIONS(1541), + [anon_sym_move] = ACTIONS(1541), + [anon_sym_try] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), }, [STATE(421)] = { [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PERCENT_EQ] = ACTIONS(1538), - [anon_sym_CARET_EQ] = ACTIONS(1538), - [anon_sym_AMP_EQ] = ACTIONS(1538), - [anon_sym_PIPE_EQ] = ACTIONS(1538), - [anon_sym_LT_LT_EQ] = ACTIONS(1538), - [anon_sym_GT_GT_EQ] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_gen] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_raw] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym__raw_string_literal_start] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [ts_builtin_sym_end] = ACTIONS(1543), + [sym_identifier] = ACTIONS(1545), + [anon_sym_SEMI] = ACTIONS(1543), + [anon_sym_macro_rules_BANG] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_BANG] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1545), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_async] = ACTIONS(1545), + [anon_sym_become] = ACTIONS(1545), + [anon_sym_break] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_continue] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_enum] = ACTIONS(1545), + [anon_sym_fn] = ACTIONS(1545), + [anon_sym_for] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_if] = ACTIONS(1545), + [anon_sym_impl] = ACTIONS(1545), + [anon_sym_let] = ACTIONS(1545), + [anon_sym_loop] = ACTIONS(1545), + [anon_sym_match] = ACTIONS(1545), + [anon_sym_mod] = ACTIONS(1545), + [anon_sym_pub] = ACTIONS(1545), + [anon_sym_return] = ACTIONS(1545), + [anon_sym_static] = ACTIONS(1545), + [anon_sym_struct] = ACTIONS(1545), + [anon_sym_trait] = ACTIONS(1545), + [anon_sym_type] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1545), + [anon_sym_use] = ACTIONS(1545), + [anon_sym_while] = ACTIONS(1545), + [anon_sym_extern] = ACTIONS(1545), + [anon_sym_raw] = ACTIONS(1545), + [anon_sym_yield] = ACTIONS(1545), + [anon_sym_move] = ACTIONS(1545), + [anon_sym_try] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), }, [STATE(422)] = { [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_macro_rules_BANG] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(1542), - [anon_sym_DASH_EQ] = ACTIONS(1542), - [anon_sym_STAR_EQ] = ACTIONS(1542), - [anon_sym_SLASH_EQ] = ACTIONS(1542), - [anon_sym_PERCENT_EQ] = ACTIONS(1542), - [anon_sym_CARET_EQ] = ACTIONS(1542), - [anon_sym_AMP_EQ] = ACTIONS(1542), - [anon_sym_PIPE_EQ] = ACTIONS(1542), - [anon_sym_LT_LT_EQ] = ACTIONS(1542), - [anon_sym_GT_GT_EQ] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1542), - [anon_sym_BANG_EQ] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT_EQ] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_gen] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_raw] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym__raw_string_literal_start] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_identifier] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_macro_rules_BANG] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_async] = ACTIONS(1549), + [anon_sym_become] = ACTIONS(1549), + [anon_sym_break] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_continue] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_enum] = ACTIONS(1549), + [anon_sym_fn] = ACTIONS(1549), + [anon_sym_for] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_if] = ACTIONS(1549), + [anon_sym_impl] = ACTIONS(1549), + [anon_sym_let] = ACTIONS(1549), + [anon_sym_loop] = ACTIONS(1549), + [anon_sym_match] = ACTIONS(1549), + [anon_sym_mod] = ACTIONS(1549), + [anon_sym_pub] = ACTIONS(1549), + [anon_sym_return] = ACTIONS(1549), + [anon_sym_static] = ACTIONS(1549), + [anon_sym_struct] = ACTIONS(1549), + [anon_sym_trait] = ACTIONS(1549), + [anon_sym_type] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_unsafe] = ACTIONS(1549), + [anon_sym_use] = ACTIONS(1549), + [anon_sym_while] = ACTIONS(1549), + [anon_sym_extern] = ACTIONS(1549), + [anon_sym_raw] = ACTIONS(1549), + [anon_sym_yield] = ACTIONS(1549), + [anon_sym_move] = ACTIONS(1549), + [anon_sym_try] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), }, [STATE(423)] = { [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(1546), - [sym_identifier] = ACTIONS(1548), - [anon_sym_SEMI] = ACTIONS(1546), - [anon_sym_macro_rules_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_PLUS_EQ] = ACTIONS(1546), - [anon_sym_DASH_EQ] = ACTIONS(1546), - [anon_sym_STAR_EQ] = ACTIONS(1546), - [anon_sym_SLASH_EQ] = ACTIONS(1546), - [anon_sym_PERCENT_EQ] = ACTIONS(1546), - [anon_sym_CARET_EQ] = ACTIONS(1546), - [anon_sym_AMP_EQ] = ACTIONS(1546), - [anon_sym_PIPE_EQ] = ACTIONS(1546), - [anon_sym_LT_LT_EQ] = ACTIONS(1546), - [anon_sym_GT_GT_EQ] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ] = ACTIONS(1546), - [anon_sym_GT] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_GT_EQ] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1546), - [anon_sym_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_SQUOTE] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_async] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_enum] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_gen] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_impl] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_mod] = ACTIONS(1548), - [anon_sym_pub] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_static] = ACTIONS(1548), - [anon_sym_struct] = ACTIONS(1548), - [anon_sym_trait] = ACTIONS(1548), - [anon_sym_type] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_raw] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1548), - [anon_sym_move] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym__raw_string_literal_start] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), + [ts_builtin_sym_end] = ACTIONS(1551), + [sym_identifier] = ACTIONS(1553), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_macro_rules_BANG] = ACTIONS(1551), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_SQUOTE] = ACTIONS(1553), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_async] = ACTIONS(1553), + [anon_sym_become] = ACTIONS(1553), + [anon_sym_break] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_continue] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_enum] = ACTIONS(1553), + [anon_sym_fn] = ACTIONS(1553), + [anon_sym_for] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_impl] = ACTIONS(1553), + [anon_sym_let] = ACTIONS(1553), + [anon_sym_loop] = ACTIONS(1553), + [anon_sym_match] = ACTIONS(1553), + [anon_sym_mod] = ACTIONS(1553), + [anon_sym_pub] = ACTIONS(1553), + [anon_sym_return] = ACTIONS(1553), + [anon_sym_static] = ACTIONS(1553), + [anon_sym_struct] = ACTIONS(1553), + [anon_sym_trait] = ACTIONS(1553), + [anon_sym_type] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1553), + [anon_sym_use] = ACTIONS(1553), + [anon_sym_while] = ACTIONS(1553), + [anon_sym_extern] = ACTIONS(1553), + [anon_sym_raw] = ACTIONS(1553), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_move] = ACTIONS(1553), + [anon_sym_try] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3047), - [sym_variadic_parameter] = STATE(3047), - [sym_parameter] = STATE(3047), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1555), + [sym_identifier] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_macro_rules_BANG] = ACTIONS(1555), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_QMARK] = ACTIONS(1555), + [anon_sym_u8] = ACTIONS(1557), + [anon_sym_i8] = ACTIONS(1557), + [anon_sym_u16] = ACTIONS(1557), + [anon_sym_i16] = ACTIONS(1557), + [anon_sym_u32] = ACTIONS(1557), + [anon_sym_i32] = ACTIONS(1557), + [anon_sym_u64] = ACTIONS(1557), + [anon_sym_i64] = ACTIONS(1557), + [anon_sym_u128] = ACTIONS(1557), + [anon_sym_i128] = ACTIONS(1557), + [anon_sym_isize] = ACTIONS(1557), + [anon_sym_usize] = ACTIONS(1557), + [anon_sym_f32] = ACTIONS(1557), + [anon_sym_f64] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_str] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1557), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1555), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1555), + [anon_sym_SQUOTE] = ACTIONS(1557), + [anon_sym_as] = ACTIONS(1557), + [anon_sym_async] = ACTIONS(1557), + [anon_sym_become] = ACTIONS(1557), + [anon_sym_break] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_continue] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_enum] = ACTIONS(1557), + [anon_sym_fn] = ACTIONS(1557), + [anon_sym_for] = ACTIONS(1557), + [anon_sym_gen] = ACTIONS(1557), + [anon_sym_if] = ACTIONS(1557), + [anon_sym_impl] = ACTIONS(1557), + [anon_sym_let] = ACTIONS(1557), + [anon_sym_loop] = ACTIONS(1557), + [anon_sym_match] = ACTIONS(1557), + [anon_sym_mod] = ACTIONS(1557), + [anon_sym_pub] = ACTIONS(1557), + [anon_sym_return] = ACTIONS(1557), + [anon_sym_static] = ACTIONS(1557), + [anon_sym_struct] = ACTIONS(1557), + [anon_sym_trait] = ACTIONS(1557), + [anon_sym_type] = ACTIONS(1557), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_unsafe] = ACTIONS(1557), + [anon_sym_use] = ACTIONS(1557), + [anon_sym_while] = ACTIONS(1557), + [anon_sym_extern] = ACTIONS(1557), + [anon_sym_raw] = ACTIONS(1557), + [anon_sym_yield] = ACTIONS(1557), + [anon_sym_move] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1555), + [aux_sym_string_literal_token1] = ACTIONS(1555), + [sym_char_literal] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1557), + [sym_super] = ACTIONS(1557), + [sym_crate] = ACTIONS(1557), + [sym_metavariable] = ACTIONS(1555), + [sym__raw_string_literal_start] = ACTIONS(1555), + [sym_float_literal] = ACTIONS(1555), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2940), - [sym_variadic_parameter] = STATE(2940), - [sym_parameter] = STATE(2940), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_identifier] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_macro_rules_BANG] = ACTIONS(1559), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1559), + [anon_sym_u8] = ACTIONS(1561), + [anon_sym_i8] = ACTIONS(1561), + [anon_sym_u16] = ACTIONS(1561), + [anon_sym_i16] = ACTIONS(1561), + [anon_sym_u32] = ACTIONS(1561), + [anon_sym_i32] = ACTIONS(1561), + [anon_sym_u64] = ACTIONS(1561), + [anon_sym_i64] = ACTIONS(1561), + [anon_sym_u128] = ACTIONS(1561), + [anon_sym_i128] = ACTIONS(1561), + [anon_sym_isize] = ACTIONS(1561), + [anon_sym_usize] = ACTIONS(1561), + [anon_sym_f32] = ACTIONS(1561), + [anon_sym_f64] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_str] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1559), + [anon_sym_DASH_EQ] = ACTIONS(1559), + [anon_sym_STAR_EQ] = ACTIONS(1559), + [anon_sym_SLASH_EQ] = ACTIONS(1559), + [anon_sym_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_CARET_EQ] = ACTIONS(1559), + [anon_sym_AMP_EQ] = ACTIONS(1559), + [anon_sym_PIPE_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_BANG_EQ] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1559), + [anon_sym_SQUOTE] = ACTIONS(1561), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_async] = ACTIONS(1561), + [anon_sym_become] = ACTIONS(1561), + [anon_sym_break] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_continue] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_enum] = ACTIONS(1561), + [anon_sym_fn] = ACTIONS(1561), + [anon_sym_for] = ACTIONS(1561), + [anon_sym_gen] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1561), + [anon_sym_impl] = ACTIONS(1561), + [anon_sym_let] = ACTIONS(1561), + [anon_sym_loop] = ACTIONS(1561), + [anon_sym_match] = ACTIONS(1561), + [anon_sym_mod] = ACTIONS(1561), + [anon_sym_pub] = ACTIONS(1561), + [anon_sym_return] = ACTIONS(1561), + [anon_sym_static] = ACTIONS(1561), + [anon_sym_struct] = ACTIONS(1561), + [anon_sym_trait] = ACTIONS(1561), + [anon_sym_type] = ACTIONS(1561), + [anon_sym_union] = ACTIONS(1561), + [anon_sym_unsafe] = ACTIONS(1561), + [anon_sym_use] = ACTIONS(1561), + [anon_sym_while] = ACTIONS(1561), + [anon_sym_extern] = ACTIONS(1561), + [anon_sym_raw] = ACTIONS(1561), + [anon_sym_yield] = ACTIONS(1561), + [anon_sym_move] = ACTIONS(1561), + [anon_sym_try] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1559), + [aux_sym_string_literal_token1] = ACTIONS(1559), + [sym_char_literal] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1561), + [sym_crate] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1559), + [sym__raw_string_literal_start] = ACTIONS(1559), + [sym_float_literal] = ACTIONS(1559), }, [STATE(426)] = { [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1554), - [anon_sym_BANG_EQ] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_gen] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_raw] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym__raw_string_literal_start] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1563), + [sym_identifier] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_macro_rules_BANG] = ACTIONS(1563), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_QMARK] = ACTIONS(1563), + [anon_sym_u8] = ACTIONS(1565), + [anon_sym_i8] = ACTIONS(1565), + [anon_sym_u16] = ACTIONS(1565), + [anon_sym_i16] = ACTIONS(1565), + [anon_sym_u32] = ACTIONS(1565), + [anon_sym_i32] = ACTIONS(1565), + [anon_sym_u64] = ACTIONS(1565), + [anon_sym_i64] = ACTIONS(1565), + [anon_sym_u128] = ACTIONS(1565), + [anon_sym_i128] = ACTIONS(1565), + [anon_sym_isize] = ACTIONS(1565), + [anon_sym_usize] = ACTIONS(1565), + [anon_sym_f32] = ACTIONS(1565), + [anon_sym_f64] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_str] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ] = ACTIONS(1563), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_COLON_COLON] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1563), + [anon_sym_SQUOTE] = ACTIONS(1565), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_async] = ACTIONS(1565), + [anon_sym_become] = ACTIONS(1565), + [anon_sym_break] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_continue] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_enum] = ACTIONS(1565), + [anon_sym_fn] = ACTIONS(1565), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_gen] = ACTIONS(1565), + [anon_sym_if] = ACTIONS(1565), + [anon_sym_impl] = ACTIONS(1565), + [anon_sym_let] = ACTIONS(1565), + [anon_sym_loop] = ACTIONS(1565), + [anon_sym_match] = ACTIONS(1565), + [anon_sym_mod] = ACTIONS(1565), + [anon_sym_pub] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1565), + [anon_sym_static] = ACTIONS(1565), + [anon_sym_struct] = ACTIONS(1565), + [anon_sym_trait] = ACTIONS(1565), + [anon_sym_type] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [anon_sym_unsafe] = ACTIONS(1565), + [anon_sym_use] = ACTIONS(1565), + [anon_sym_while] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1565), + [anon_sym_raw] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1565), + [anon_sym_move] = ACTIONS(1565), + [anon_sym_try] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1563), + [aux_sym_string_literal_token1] = ACTIONS(1563), + [sym_char_literal] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_crate] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1563), + [sym__raw_string_literal_start] = ACTIONS(1563), + [sym_float_literal] = ACTIONS(1563), }, [STATE(427)] = { [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1560), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PERCENT_EQ] = ACTIONS(1558), - [anon_sym_CARET_EQ] = ACTIONS(1558), - [anon_sym_AMP_EQ] = ACTIONS(1558), - [anon_sym_PIPE_EQ] = ACTIONS(1558), - [anon_sym_LT_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_GT_EQ] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1558), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_gen] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_raw] = ACTIONS(1560), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym__raw_string_literal_start] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [ts_builtin_sym_end] = ACTIONS(1567), + [sym_identifier] = ACTIONS(1569), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_macro_rules_BANG] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1569), + [anon_sym_i8] = ACTIONS(1569), + [anon_sym_u16] = ACTIONS(1569), + [anon_sym_i16] = ACTIONS(1569), + [anon_sym_u32] = ACTIONS(1569), + [anon_sym_i32] = ACTIONS(1569), + [anon_sym_u64] = ACTIONS(1569), + [anon_sym_i64] = ACTIONS(1569), + [anon_sym_u128] = ACTIONS(1569), + [anon_sym_i128] = ACTIONS(1569), + [anon_sym_isize] = ACTIONS(1569), + [anon_sym_usize] = ACTIONS(1569), + [anon_sym_f32] = ACTIONS(1569), + [anon_sym_f64] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_str] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_CARET_EQ] = ACTIONS(1567), + [anon_sym_AMP_EQ] = ACTIONS(1567), + [anon_sym_PIPE_EQ] = ACTIONS(1567), + [anon_sym_LT_LT_EQ] = ACTIONS(1567), + [anon_sym_GT_GT_EQ] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(1567), + [anon_sym_SQUOTE] = ACTIONS(1569), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_async] = ACTIONS(1569), + [anon_sym_become] = ACTIONS(1569), + [anon_sym_break] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_continue] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_enum] = ACTIONS(1569), + [anon_sym_fn] = ACTIONS(1569), + [anon_sym_for] = ACTIONS(1569), + [anon_sym_gen] = ACTIONS(1569), + [anon_sym_if] = ACTIONS(1569), + [anon_sym_impl] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1569), + [anon_sym_loop] = ACTIONS(1569), + [anon_sym_match] = ACTIONS(1569), + [anon_sym_mod] = ACTIONS(1569), + [anon_sym_pub] = ACTIONS(1569), + [anon_sym_return] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1569), + [anon_sym_struct] = ACTIONS(1569), + [anon_sym_trait] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1569), + [anon_sym_union] = ACTIONS(1569), + [anon_sym_unsafe] = ACTIONS(1569), + [anon_sym_use] = ACTIONS(1569), + [anon_sym_while] = ACTIONS(1569), + [anon_sym_extern] = ACTIONS(1569), + [anon_sym_raw] = ACTIONS(1569), + [anon_sym_yield] = ACTIONS(1569), + [anon_sym_move] = ACTIONS(1569), + [anon_sym_try] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1567), + [aux_sym_string_literal_token1] = ACTIONS(1567), + [sym_char_literal] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1569), + [sym_super] = ACTIONS(1569), + [sym_crate] = ACTIONS(1569), + [sym_metavariable] = ACTIONS(1567), + [sym__raw_string_literal_start] = ACTIONS(1567), + [sym_float_literal] = ACTIONS(1567), }, [STATE(428)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3466), + [sym_variadic_parameter] = STATE(3466), + [sym_parameter] = STATE(3466), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(429)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3013), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3131), + [sym_variadic_parameter] = STATE(3131), + [sym_parameter] = STATE(3131), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2827), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2722), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1573), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(430)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(2944), + [sym_variadic_parameter] = STATE(2944), + [sym_parameter] = STATE(2944), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2663), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(431)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1586), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1531), + [anon_sym_LBRACK] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1533), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1529), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_become] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_raw] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, [STATE(432)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_self_parameter] = STATE(3051), + [sym_variadic_parameter] = STATE(3051), + [sym_parameter] = STATE(3051), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2748), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3072), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1588), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1577), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1345), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1353), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(433)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3201), + [sym_bracketed_type] = STATE(3709), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3450), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2615), + [sym_scoped_identifier] = STATE(2270), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2690), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_RBRACK] = ACTIONS(1583), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1595), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1599), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(434)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1590), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1603), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1605), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(435)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(863), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1607), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(436)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1594), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(437)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3709), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3450), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2615), + [sym_scoped_identifier] = STATE(2270), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1598), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1595), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1599), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(438)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1389), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1609), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(440)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(858), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), - [anon_sym_COMMA] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_gen] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_else] = ACTIONS(1604), - [anon_sym_raw] = ACTIONS(1604), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1606), - [sym__raw_string_literal_start] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1611), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1613), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(441)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3700), + [sym_lifetime] = STATE(863), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3347), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2595), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_EQ_GT] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_gen] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_raw] = ACTIONS(1604), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1606), - [sym__raw_string_literal_start] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1297), + [anon_sym_i8] = ACTIONS(1297), + [anon_sym_u16] = ACTIONS(1297), + [anon_sym_i16] = ACTIONS(1297), + [anon_sym_u32] = ACTIONS(1297), + [anon_sym_i32] = ACTIONS(1297), + [anon_sym_u64] = ACTIONS(1297), + [anon_sym_i64] = ACTIONS(1297), + [anon_sym_u128] = ACTIONS(1297), + [anon_sym_i128] = ACTIONS(1297), + [anon_sym_isize] = ACTIONS(1297), + [anon_sym_usize] = ACTIONS(1297), + [anon_sym_f32] = ACTIONS(1297), + [anon_sym_f64] = ACTIONS(1297), + [anon_sym_bool] = ACTIONS(1297), + [anon_sym_str] = ACTIONS(1297), + [anon_sym_char] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1327), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1333), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1333), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1615), + [anon_sym_raw] = ACTIONS(1333), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1355), + [sym_super] = ACTIONS(1355), + [sym_crate] = ACTIONS(1355), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(442)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2231), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3709), + [sym_lifetime] = STATE(863), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3450), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2615), + [sym_scoped_identifier] = STATE(2270), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [sym_identifier] = ACTIONS(1608), - [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym__] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_gen] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1608), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1610), - [sym__raw_string_literal_start] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1579), + [anon_sym_LPAREN] = ACTIONS(1581), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1585), + [anon_sym_i8] = ACTIONS(1585), + [anon_sym_u16] = ACTIONS(1585), + [anon_sym_i16] = ACTIONS(1585), + [anon_sym_u32] = ACTIONS(1585), + [anon_sym_i32] = ACTIONS(1585), + [anon_sym_u64] = ACTIONS(1585), + [anon_sym_i64] = ACTIONS(1585), + [anon_sym_u128] = ACTIONS(1585), + [anon_sym_i128] = ACTIONS(1585), + [anon_sym_isize] = ACTIONS(1585), + [anon_sym_usize] = ACTIONS(1585), + [anon_sym_f32] = ACTIONS(1585), + [anon_sym_f64] = ACTIONS(1585), + [anon_sym_bool] = ACTIONS(1585), + [anon_sym_str] = ACTIONS(1585), + [anon_sym_char] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1591), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1593), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1595), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1595), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1617), + [anon_sym_raw] = ACTIONS(1595), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1597), + [sym_super] = ACTIONS(1597), + [sym_crate] = ACTIONS(1597), + [sym_metavariable] = ACTIONS(1599), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(443)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3708), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3444), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2608), + [sym_scoped_identifier] = STATE(2222), + [sym_scoped_type_identifier] = STATE(2204), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [sym_identifier] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [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(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym__] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_DASH_GT] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_gen] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1614), - [sym__raw_string_literal_start] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1367), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [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(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_SQUOTE] = ACTIONS(1321), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1325), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1385), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1385), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1341), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1385), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1389), + [sym_crate] = ACTIONS(1389), + [sym_metavariable] = ACTIONS(1391), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1621), + [anon_sym_SEMI] = ACTIONS(1623), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_RPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_RBRACK] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_RBRACE] = ACTIONS(1623), + [anon_sym_COLON] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_QMARK] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1621), + [anon_sym_i8] = ACTIONS(1621), + [anon_sym_u16] = ACTIONS(1621), + [anon_sym_i16] = ACTIONS(1621), + [anon_sym_u32] = ACTIONS(1621), + [anon_sym_i32] = ACTIONS(1621), + [anon_sym_u64] = ACTIONS(1621), + [anon_sym_i64] = ACTIONS(1621), + [anon_sym_u128] = ACTIONS(1621), + [anon_sym_i128] = ACTIONS(1621), + [anon_sym_isize] = ACTIONS(1621), + [anon_sym_usize] = ACTIONS(1621), + [anon_sym_f32] = ACTIONS(1621), + [anon_sym_f64] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_str] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PERCENT] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE_PIPE] = ACTIONS(1623), + [anon_sym_LT_LT] = ACTIONS(1621), + [anon_sym_GT_GT] = ACTIONS(1621), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_EQ] = ACTIONS(1621), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_COMMA] = ACTIONS(1623), + [anon_sym_COLON_COLON] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_as] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1621), + [anon_sym_become] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_gen] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_unsafe] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_else] = ACTIONS(1621), + [anon_sym_raw] = ACTIONS(1621), + [anon_sym_yield] = ACTIONS(1621), + [anon_sym_move] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [aux_sym_string_literal_token1] = ACTIONS(1623), + [sym_char_literal] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1621), + [sym_super] = ACTIONS(1621), + [sym_crate] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(1623), + [sym__raw_string_literal_start] = ACTIONS(1623), + [sym_float_literal] = ACTIONS(1623), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1621), + [anon_sym_LPAREN] = ACTIONS(1623), + [anon_sym_LBRACK] = ACTIONS(1623), + [anon_sym_LBRACE] = ACTIONS(1623), + [anon_sym_EQ_GT] = ACTIONS(1623), + [anon_sym_COLON] = ACTIONS(1621), + [anon_sym_PLUS] = ACTIONS(1621), + [anon_sym_STAR] = ACTIONS(1621), + [anon_sym_QMARK] = ACTIONS(1623), + [anon_sym_u8] = ACTIONS(1621), + [anon_sym_i8] = ACTIONS(1621), + [anon_sym_u16] = ACTIONS(1621), + [anon_sym_i16] = ACTIONS(1621), + [anon_sym_u32] = ACTIONS(1621), + [anon_sym_i32] = ACTIONS(1621), + [anon_sym_u64] = ACTIONS(1621), + [anon_sym_i64] = ACTIONS(1621), + [anon_sym_u128] = ACTIONS(1621), + [anon_sym_i128] = ACTIONS(1621), + [anon_sym_isize] = ACTIONS(1621), + [anon_sym_usize] = ACTIONS(1621), + [anon_sym_f32] = ACTIONS(1621), + [anon_sym_f64] = ACTIONS(1621), + [anon_sym_bool] = ACTIONS(1621), + [anon_sym_str] = ACTIONS(1621), + [anon_sym_char] = ACTIONS(1621), + [anon_sym_DASH] = ACTIONS(1621), + [anon_sym_SLASH] = ACTIONS(1621), + [anon_sym_PERCENT] = ACTIONS(1621), + [anon_sym_CARET] = ACTIONS(1621), + [anon_sym_BANG] = ACTIONS(1621), + [anon_sym_AMP] = ACTIONS(1621), + [anon_sym_PIPE] = ACTIONS(1621), + [anon_sym_AMP_AMP] = ACTIONS(1623), + [anon_sym_PIPE_PIPE] = ACTIONS(1623), + [anon_sym_LT_LT] = ACTIONS(1621), + [anon_sym_GT_GT] = ACTIONS(1621), + [anon_sym_PLUS_EQ] = ACTIONS(1623), + [anon_sym_DASH_EQ] = ACTIONS(1623), + [anon_sym_STAR_EQ] = ACTIONS(1623), + [anon_sym_SLASH_EQ] = ACTIONS(1623), + [anon_sym_PERCENT_EQ] = ACTIONS(1623), + [anon_sym_CARET_EQ] = ACTIONS(1623), + [anon_sym_AMP_EQ] = ACTIONS(1623), + [anon_sym_PIPE_EQ] = ACTIONS(1623), + [anon_sym_LT_LT_EQ] = ACTIONS(1623), + [anon_sym_GT_GT_EQ] = ACTIONS(1623), + [anon_sym_EQ] = ACTIONS(1621), + [anon_sym_EQ_EQ] = ACTIONS(1623), + [anon_sym_BANG_EQ] = ACTIONS(1623), + [anon_sym_GT] = ACTIONS(1621), + [anon_sym_LT] = ACTIONS(1621), + [anon_sym_GT_EQ] = ACTIONS(1623), + [anon_sym_LT_EQ] = ACTIONS(1623), + [anon_sym_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT] = ACTIONS(1621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1623), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1623), + [anon_sym_COLON_COLON] = ACTIONS(1623), + [anon_sym_SQUOTE] = ACTIONS(1621), + [anon_sym_as] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1621), + [anon_sym_become] = ACTIONS(1621), + [anon_sym_break] = ACTIONS(1621), + [anon_sym_const] = ACTIONS(1621), + [anon_sym_continue] = ACTIONS(1621), + [anon_sym_default] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1621), + [anon_sym_gen] = ACTIONS(1621), + [anon_sym_if] = ACTIONS(1621), + [anon_sym_loop] = ACTIONS(1621), + [anon_sym_match] = ACTIONS(1621), + [anon_sym_return] = ACTIONS(1621), + [anon_sym_static] = ACTIONS(1621), + [anon_sym_union] = ACTIONS(1621), + [anon_sym_unsafe] = ACTIONS(1621), + [anon_sym_while] = ACTIONS(1621), + [anon_sym_raw] = ACTIONS(1621), + [anon_sym_yield] = ACTIONS(1621), + [anon_sym_move] = ACTIONS(1621), + [anon_sym_try] = ACTIONS(1621), + [sym_integer_literal] = ACTIONS(1623), + [aux_sym_string_literal_token1] = ACTIONS(1623), + [sym_char_literal] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1621), + [anon_sym_false] = ACTIONS(1621), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1621), + [sym_super] = ACTIONS(1621), + [sym_crate] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(1623), + [sym__raw_string_literal_start] = ACTIONS(1623), + [sym_float_literal] = ACTIONS(1623), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1625), + [anon_sym_LPAREN] = ACTIONS(1627), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_LBRACE] = ACTIONS(1627), + [anon_sym_STAR] = ACTIONS(1627), + [anon_sym_u8] = ACTIONS(1625), + [anon_sym_i8] = ACTIONS(1625), + [anon_sym_u16] = ACTIONS(1625), + [anon_sym_i16] = ACTIONS(1625), + [anon_sym_u32] = ACTIONS(1625), + [anon_sym_i32] = ACTIONS(1625), + [anon_sym_u64] = ACTIONS(1625), + [anon_sym_i64] = ACTIONS(1625), + [anon_sym_u128] = ACTIONS(1625), + [anon_sym_i128] = ACTIONS(1625), + [anon_sym_isize] = ACTIONS(1625), + [anon_sym_usize] = ACTIONS(1625), + [anon_sym_f32] = ACTIONS(1625), + [anon_sym_f64] = ACTIONS(1625), + [anon_sym_bool] = ACTIONS(1625), + [anon_sym_str] = ACTIONS(1625), + [anon_sym_char] = ACTIONS(1625), + [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_BANG] = ACTIONS(1627), + [anon_sym_AMP] = ACTIONS(1627), + [anon_sym_PIPE] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(1627), + [anon_sym__] = ACTIONS(1625), + [anon_sym_DOT_DOT] = ACTIONS(1625), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1627), + [anon_sym_DASH_GT] = ACTIONS(1627), + [anon_sym_SQUOTE] = ACTIONS(1625), + [anon_sym_async] = ACTIONS(1625), + [anon_sym_become] = ACTIONS(1625), + [anon_sym_break] = ACTIONS(1625), + [anon_sym_const] = ACTIONS(1625), + [anon_sym_continue] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1625), + [anon_sym_for] = ACTIONS(1625), + [anon_sym_gen] = ACTIONS(1625), + [anon_sym_if] = ACTIONS(1625), + [anon_sym_loop] = ACTIONS(1625), + [anon_sym_match] = ACTIONS(1625), + [anon_sym_return] = ACTIONS(1625), + [anon_sym_static] = ACTIONS(1625), + [anon_sym_union] = ACTIONS(1625), + [anon_sym_unsafe] = ACTIONS(1625), + [anon_sym_while] = ACTIONS(1625), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1625), + [anon_sym_yield] = ACTIONS(1625), + [anon_sym_move] = ACTIONS(1625), + [anon_sym_try] = ACTIONS(1625), + [sym_integer_literal] = ACTIONS(1627), + [aux_sym_string_literal_token1] = ACTIONS(1627), + [sym_char_literal] = ACTIONS(1627), + [anon_sym_true] = ACTIONS(1625), + [anon_sym_false] = ACTIONS(1625), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1625), + [sym_super] = ACTIONS(1625), + [sym_crate] = ACTIONS(1625), + [sym_metavariable] = ACTIONS(1627), + [sym__raw_string_literal_start] = ACTIONS(1627), + [sym_float_literal] = ACTIONS(1627), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1631), + [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_BANG] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym__] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1631), + [anon_sym_DASH_GT] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_become] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_gen] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_unsafe] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1629), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_move] = ACTIONS(1629), + [anon_sym_try] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1660), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1649), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1671), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1673), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1675), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1677), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1679), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1681), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1683), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(456)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(457)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2476), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2476), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2517), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2517), - [sym__literal] = STATE(2517), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(458)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2477), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2477), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2518), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2518), - [sym__literal] = STATE(2518), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1689), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(459)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2442), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2442), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2580), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2580), - [sym__literal] = STATE(2580), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_GT] = ACTIONS(1691), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(460)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2433), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2433), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2569), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2569), - [sym__literal] = STATE(2569), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2561), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2561), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2648), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2648), + [sym__literal] = STATE(2648), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(461)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3746), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2437), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2564), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2564), + [sym__literal] = STATE(2564), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = 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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(462)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3604), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2474), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2588), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2588), + [sym__literal] = STATE(2588), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1722), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(463)] = { - [sym_else_clause] = STATE(483), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2475), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2475), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2566), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2566), + [sym__literal] = STATE(2566), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1412), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_gen] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_ref] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1724), - [sym_mutable_specifier] = ACTIONS(1412), - [anon_sym_raw] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(464)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3643), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2454), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2454), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_type_binding] = STATE(2593), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), + [sym_label] = STATE(3780), + [sym_block] = STATE(2593), + [sym__literal] = STATE(2593), + [sym_string_literal] = STATE(2957), + [sym_raw_string_literal] = STATE(2957), + [sym_boolean_literal] = STATE(2957), [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [aux_sym_match_block_repeat1] = STATE(474), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1726), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [sym_integer_literal] = ACTIONS(1665), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1665), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1665), }, [STATE(465)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3787), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3759), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1728), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_match_block_repeat1] = STATE(470), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACE] = 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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(466)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3784), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3664), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(466), [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_match_block_repeat1] = STATE(471), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1739), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(467)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3751), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3588), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(467), [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_match_block_repeat1] = STATE(472), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1741), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(468)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3791), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3569), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(468), [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1743), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(469)] = { + [sym_else_clause] = STATE(490), [sym_line_comment] = STATE(469), [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = 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_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__] = ACTIONS(1444), - [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_COMMA] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_gen] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_ref] = ACTIONS(1444), - [anon_sym_else] = ACTIONS(1444), - [sym_mutable_specifier] = ACTIONS(1444), - [anon_sym_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [sym_identifier] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_u8] = ACTIONS(1413), + [anon_sym_i8] = ACTIONS(1413), + [anon_sym_u16] = ACTIONS(1413), + [anon_sym_i16] = ACTIONS(1413), + [anon_sym_u32] = ACTIONS(1413), + [anon_sym_i32] = ACTIONS(1413), + [anon_sym_u64] = ACTIONS(1413), + [anon_sym_i64] = ACTIONS(1413), + [anon_sym_u128] = ACTIONS(1413), + [anon_sym_i128] = ACTIONS(1413), + [anon_sym_isize] = ACTIONS(1413), + [anon_sym_usize] = ACTIONS(1413), + [anon_sym_f32] = ACTIONS(1413), + [anon_sym_f64] = ACTIONS(1413), + [anon_sym_bool] = ACTIONS(1413), + [anon_sym_str] = ACTIONS(1413), + [anon_sym_char] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_PERCENT] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_AMP_AMP] = ACTIONS(1411), + [anon_sym_PIPE_PIPE] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1413), + [anon_sym_GT_GT] = ACTIONS(1413), + [anon_sym_PLUS_EQ] = ACTIONS(1411), + [anon_sym_DASH_EQ] = ACTIONS(1411), + [anon_sym_STAR_EQ] = ACTIONS(1411), + [anon_sym_SLASH_EQ] = ACTIONS(1411), + [anon_sym_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_CARET_EQ] = ACTIONS(1411), + [anon_sym_AMP_EQ] = ACTIONS(1411), + [anon_sym_PIPE_EQ] = ACTIONS(1411), + [anon_sym_LT_LT_EQ] = ACTIONS(1411), + [anon_sym_GT_GT_EQ] = ACTIONS(1411), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_EQ_EQ] = ACTIONS(1411), + [anon_sym_BANG_EQ] = ACTIONS(1411), + [anon_sym_GT] = ACTIONS(1413), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_GT_EQ] = ACTIONS(1411), + [anon_sym_LT_EQ] = ACTIONS(1411), + [anon_sym__] = ACTIONS(1413), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT] = ACTIONS(1413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), + [anon_sym_COMMA] = ACTIONS(1411), + [anon_sym_COLON_COLON] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_as] = ACTIONS(1413), + [anon_sym_const] = ACTIONS(1413), + [anon_sym_default] = ACTIONS(1413), + [anon_sym_gen] = ACTIONS(1413), + [anon_sym_union] = ACTIONS(1413), + [anon_sym_ref] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1745), + [sym_mutable_specifier] = ACTIONS(1413), + [anon_sym_raw] = ACTIONS(1413), + [sym_integer_literal] = ACTIONS(1411), + [aux_sym_string_literal_token1] = ACTIONS(1411), + [sym_char_literal] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1413), + [anon_sym_false] = ACTIONS(1413), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1413), + [sym_super] = ACTIONS(1413), + [sym_crate] = ACTIONS(1413), + [sym_metavariable] = ACTIONS(1411), + [sym__raw_string_literal_start] = ACTIONS(1411), + [sym_float_literal] = ACTIONS(1411), }, [STATE(470)] = { + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3782), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1446), - [anon_sym_CARET_EQ] = ACTIONS(1446), - [anon_sym_AMP_EQ] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1446), - [anon_sym_LT_LT_EQ] = ACTIONS(1446), - [anon_sym_GT_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym__] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_gen] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_ref] = ACTIONS(1448), - [anon_sym_else] = ACTIONS(1448), - [sym_mutable_specifier] = ACTIONS(1448), - [anon_sym_raw] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [aux_sym_match_block_repeat1] = STATE(501), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(471)] = { + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3527), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), - [anon_sym_STAR_EQ] = ACTIONS(1454), - [anon_sym_SLASH_EQ] = ACTIONS(1454), - [anon_sym_PERCENT_EQ] = ACTIONS(1454), - [anon_sym_CARET_EQ] = ACTIONS(1454), - [anon_sym_AMP_EQ] = ACTIONS(1454), - [anon_sym_PIPE_EQ] = ACTIONS(1454), - [anon_sym_LT_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_GT_EQ] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_ref] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [sym_mutable_specifier] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [aux_sym_match_block_repeat1] = STATE(501), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(472)] = { + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3558), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PERCENT_EQ] = ACTIONS(1438), - [anon_sym_CARET_EQ] = ACTIONS(1438), - [anon_sym_AMP_EQ] = ACTIONS(1438), - [anon_sym_PIPE_EQ] = ACTIONS(1438), - [anon_sym_LT_LT_EQ] = ACTIONS(1438), - [anon_sym_GT_GT_EQ] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym__] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_gen] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_ref] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [sym_mutable_specifier] = ACTIONS(1440), - [anon_sym_raw] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym__raw_string_literal_start] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [aux_sym_match_block_repeat1] = STATE(501), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(473)] = { [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [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_gen] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [anon_sym_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym__] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [sym_mutable_specifier] = ACTIONS(1435), + [anon_sym_raw] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, [STATE(474)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3501), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_ref] = ACTIONS(1459), + [anon_sym_else] = ACTIONS(1459), + [sym_mutable_specifier] = ACTIONS(1459), + [anon_sym_raw] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), }, [STATE(475)] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT_EQ] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1496), - [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_gen] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_ref] = ACTIONS(1498), - [sym_mutable_specifier] = ACTIONS(1498), - [anon_sym_raw] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym__raw_string_literal_start] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [sym_identifier] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_gen] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1467), + [anon_sym_else] = ACTIONS(1467), + [sym_mutable_specifier] = ACTIONS(1467), + [anon_sym_raw] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), }, [STATE(476)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3121), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2804), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1463), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1463), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1463), + [anon_sym_PERCENT] = ACTIONS(1463), + [anon_sym_CARET] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1463), + [anon_sym_GT_GT] = ACTIONS(1463), + [anon_sym_PLUS_EQ] = ACTIONS(1461), + [anon_sym_DASH_EQ] = ACTIONS(1461), + [anon_sym_STAR_EQ] = ACTIONS(1461), + [anon_sym_SLASH_EQ] = ACTIONS(1461), + [anon_sym_PERCENT_EQ] = ACTIONS(1461), + [anon_sym_CARET_EQ] = ACTIONS(1461), + [anon_sym_AMP_EQ] = ACTIONS(1461), + [anon_sym_PIPE_EQ] = ACTIONS(1461), + [anon_sym_LT_LT_EQ] = ACTIONS(1461), + [anon_sym_GT_GT_EQ] = ACTIONS(1461), + [anon_sym_EQ] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1461), + [anon_sym_BANG_EQ] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1461), + [anon_sym__] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_as] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_gen] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_ref] = ACTIONS(1463), + [anon_sym_else] = ACTIONS(1463), + [sym_mutable_specifier] = ACTIONS(1463), + [anon_sym_raw] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym__raw_string_literal_start] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), }, [STATE(477)] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PERCENT_EQ] = ACTIONS(1470), - [anon_sym_CARET_EQ] = ACTIONS(1470), - [anon_sym_AMP_EQ] = ACTIONS(1470), - [anon_sym_PIPE_EQ] = ACTIONS(1470), - [anon_sym_LT_LT_EQ] = ACTIONS(1470), - [anon_sym_GT_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_gen] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_ref] = ACTIONS(1472), - [sym_mutable_specifier] = ACTIONS(1472), - [anon_sym_raw] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym__raw_string_literal_start] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [sym_identifier] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1471), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_ref] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1473), + [sym_mutable_specifier] = ACTIONS(1473), + [anon_sym_raw] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), }, [STATE(478)] = { + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_last_match_arm] = STATE(3816), + [sym_match_pattern] = STATE(3589), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(1542), - [anon_sym_DASH_EQ] = ACTIONS(1542), - [anon_sym_STAR_EQ] = ACTIONS(1542), - [anon_sym_SLASH_EQ] = ACTIONS(1542), - [anon_sym_PERCENT_EQ] = ACTIONS(1542), - [anon_sym_CARET_EQ] = ACTIONS(1542), - [anon_sym_AMP_EQ] = ACTIONS(1542), - [anon_sym_PIPE_EQ] = ACTIONS(1542), - [anon_sym_LT_LT_EQ] = ACTIONS(1542), - [anon_sym_GT_GT_EQ] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1542), - [anon_sym_BANG_EQ] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT_EQ] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1542), - [anon_sym__] = ACTIONS(1544), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_gen] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_ref] = ACTIONS(1544), - [sym_mutable_specifier] = ACTIONS(1544), - [anon_sym_raw] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym__raw_string_literal_start] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), + [aux_sym_match_block_repeat1] = STATE(501), + [aux_sym_match_arm_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(479)] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [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(1756), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_gen] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_ref] = ACTIONS(1756), - [sym_mutable_specifier] = ACTIONS(1756), - [anon_sym_raw] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1758), - [sym__raw_string_literal_start] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1747), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [anon_sym_u8] = ACTIONS(1747), + [anon_sym_i8] = ACTIONS(1747), + [anon_sym_u16] = ACTIONS(1747), + [anon_sym_i16] = ACTIONS(1747), + [anon_sym_u32] = ACTIONS(1747), + [anon_sym_i32] = ACTIONS(1747), + [anon_sym_u64] = ACTIONS(1747), + [anon_sym_i64] = ACTIONS(1747), + [anon_sym_u128] = ACTIONS(1747), + [anon_sym_i128] = ACTIONS(1747), + [anon_sym_isize] = ACTIONS(1747), + [anon_sym_usize] = ACTIONS(1747), + [anon_sym_f32] = ACTIONS(1747), + [anon_sym_f64] = ACTIONS(1747), + [anon_sym_bool] = ACTIONS(1747), + [anon_sym_str] = ACTIONS(1747), + [anon_sym_char] = ACTIONS(1747), + [anon_sym_DASH] = ACTIONS(1747), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1747), + [anon_sym_PIPE] = ACTIONS(1747), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1747), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym__] = ACTIONS(1747), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1747), + [anon_sym_gen] = ACTIONS(1747), + [anon_sym_union] = ACTIONS(1747), + [anon_sym_ref] = ACTIONS(1747), + [sym_mutable_specifier] = ACTIONS(1747), + [anon_sym_raw] = ACTIONS(1747), + [sym_integer_literal] = ACTIONS(1749), + [aux_sym_string_literal_token1] = ACTIONS(1749), + [sym_char_literal] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1747), + [anon_sym_false] = ACTIONS(1747), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1747), + [sym_super] = ACTIONS(1747), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), + [sym__raw_string_literal_start] = ACTIONS(1749), + [sym_float_literal] = ACTIONS(1749), }, [STATE(480)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3123), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(2741), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1560), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PERCENT_EQ] = ACTIONS(1558), - [anon_sym_CARET_EQ] = ACTIONS(1558), - [anon_sym_AMP_EQ] = ACTIONS(1558), - [anon_sym_PIPE_EQ] = ACTIONS(1558), - [anon_sym_LT_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_GT_EQ] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym__] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1558), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_gen] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_ref] = ACTIONS(1560), - [sym_mutable_specifier] = ACTIONS(1560), - [anon_sym_raw] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym__raw_string_literal_start] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1508), - [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(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1508), - [anon_sym_PIPE_PIPE] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PERCENT_EQ] = ACTIONS(1508), - [anon_sym_CARET_EQ] = ACTIONS(1508), - [anon_sym_AMP_EQ] = ACTIONS(1508), - [anon_sym_PIPE_EQ] = ACTIONS(1508), - [anon_sym_LT_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_GT_EQ] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym__] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_gen] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_ref] = ACTIONS(1510), - [sym_mutable_specifier] = ACTIONS(1510), - [anon_sym_raw] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym__raw_string_literal_start] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [sym_identifier] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_QMARK] = ACTIONS(1555), + [anon_sym_u8] = ACTIONS(1557), + [anon_sym_i8] = ACTIONS(1557), + [anon_sym_u16] = ACTIONS(1557), + [anon_sym_i16] = ACTIONS(1557), + [anon_sym_u32] = ACTIONS(1557), + [anon_sym_i32] = ACTIONS(1557), + [anon_sym_u64] = ACTIONS(1557), + [anon_sym_i64] = ACTIONS(1557), + [anon_sym_u128] = ACTIONS(1557), + [anon_sym_i128] = ACTIONS(1557), + [anon_sym_isize] = ACTIONS(1557), + [anon_sym_usize] = ACTIONS(1557), + [anon_sym_f32] = ACTIONS(1557), + [anon_sym_f64] = ACTIONS(1557), + [anon_sym_bool] = ACTIONS(1557), + [anon_sym_str] = ACTIONS(1557), + [anon_sym_char] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1557), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1555), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym__] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1555), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1555), + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_COLON_COLON] = ACTIONS(1555), + [anon_sym_POUND] = ACTIONS(1555), + [anon_sym_as] = ACTIONS(1557), + [anon_sym_const] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1557), + [anon_sym_gen] = ACTIONS(1557), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_ref] = ACTIONS(1557), + [sym_mutable_specifier] = ACTIONS(1557), + [anon_sym_raw] = ACTIONS(1557), + [sym_integer_literal] = ACTIONS(1555), + [aux_sym_string_literal_token1] = ACTIONS(1555), + [sym_char_literal] = ACTIONS(1555), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1557), + [sym_super] = ACTIONS(1557), + [sym_crate] = ACTIONS(1557), + [sym_metavariable] = ACTIONS(1555), + [sym__raw_string_literal_start] = ACTIONS(1555), + [sym_float_literal] = ACTIONS(1555), }, [STATE(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PERCENT_EQ] = ACTIONS(1538), - [anon_sym_CARET_EQ] = ACTIONS(1538), - [anon_sym_AMP_EQ] = ACTIONS(1538), - [anon_sym_PIPE_EQ] = ACTIONS(1538), - [anon_sym_LT_LT_EQ] = ACTIONS(1538), - [anon_sym_GT_GT_EQ] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1540), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_gen] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_ref] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(1540), - [anon_sym_raw] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym__raw_string_literal_start] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), + [sym_identifier] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_QMARK] = ACTIONS(1551), + [anon_sym_u8] = ACTIONS(1553), + [anon_sym_i8] = ACTIONS(1553), + [anon_sym_u16] = ACTIONS(1553), + [anon_sym_i16] = ACTIONS(1553), + [anon_sym_u32] = ACTIONS(1553), + [anon_sym_i32] = ACTIONS(1553), + [anon_sym_u64] = ACTIONS(1553), + [anon_sym_i64] = ACTIONS(1553), + [anon_sym_u128] = ACTIONS(1553), + [anon_sym_i128] = ACTIONS(1553), + [anon_sym_isize] = ACTIONS(1553), + [anon_sym_usize] = ACTIONS(1553), + [anon_sym_f32] = ACTIONS(1553), + [anon_sym_f64] = ACTIONS(1553), + [anon_sym_bool] = ACTIONS(1553), + [anon_sym_str] = ACTIONS(1553), + [anon_sym_char] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_AMP_AMP] = ACTIONS(1551), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym__] = ACTIONS(1553), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT] = ACTIONS(1553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1551), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(1551), + [anon_sym_POUND] = ACTIONS(1551), + [anon_sym_as] = ACTIONS(1553), + [anon_sym_const] = ACTIONS(1553), + [anon_sym_default] = ACTIONS(1553), + [anon_sym_gen] = ACTIONS(1553), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_ref] = ACTIONS(1553), + [sym_mutable_specifier] = ACTIONS(1553), + [anon_sym_raw] = ACTIONS(1553), + [sym_integer_literal] = ACTIONS(1551), + [aux_sym_string_literal_token1] = ACTIONS(1551), + [sym_char_literal] = ACTIONS(1551), + [anon_sym_true] = ACTIONS(1553), + [anon_sym_false] = ACTIONS(1553), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1553), + [sym_super] = ACTIONS(1553), + [sym_crate] = ACTIONS(1553), + [sym_metavariable] = ACTIONS(1551), + [sym__raw_string_literal_start] = ACTIONS(1551), + [sym_float_literal] = ACTIONS(1551), }, [STATE(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_PERCENT_EQ] = ACTIONS(1484), - [anon_sym_CARET_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym__] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_gen] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_ref] = ACTIONS(1486), - [sym_mutable_specifier] = ACTIONS(1486), - [anon_sym_raw] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym__raw_string_literal_start] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_QMARK] = ACTIONS(1491), + [anon_sym_u8] = ACTIONS(1493), + [anon_sym_i8] = ACTIONS(1493), + [anon_sym_u16] = ACTIONS(1493), + [anon_sym_i16] = ACTIONS(1493), + [anon_sym_u32] = ACTIONS(1493), + [anon_sym_i32] = ACTIONS(1493), + [anon_sym_u64] = ACTIONS(1493), + [anon_sym_i64] = ACTIONS(1493), + [anon_sym_u128] = ACTIONS(1493), + [anon_sym_i128] = ACTIONS(1493), + [anon_sym_isize] = ACTIONS(1493), + [anon_sym_usize] = ACTIONS(1493), + [anon_sym_f32] = ACTIONS(1493), + [anon_sym_f64] = ACTIONS(1493), + [anon_sym_bool] = ACTIONS(1493), + [anon_sym_str] = ACTIONS(1493), + [anon_sym_char] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_AMP_AMP] = ACTIONS(1491), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym__] = ACTIONS(1493), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1493), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1491), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_COLON_COLON] = ACTIONS(1491), + [anon_sym_POUND] = ACTIONS(1491), + [anon_sym_as] = ACTIONS(1493), + [anon_sym_const] = ACTIONS(1493), + [anon_sym_default] = ACTIONS(1493), + [anon_sym_gen] = ACTIONS(1493), + [anon_sym_union] = ACTIONS(1493), + [anon_sym_ref] = ACTIONS(1493), + [sym_mutable_specifier] = ACTIONS(1493), + [anon_sym_raw] = ACTIONS(1493), + [sym_integer_literal] = ACTIONS(1491), + [aux_sym_string_literal_token1] = ACTIONS(1491), + [sym_char_literal] = ACTIONS(1491), + [anon_sym_true] = ACTIONS(1493), + [anon_sym_false] = ACTIONS(1493), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1493), + [sym_super] = ACTIONS(1493), + [sym_crate] = ACTIONS(1493), + [sym_metavariable] = ACTIONS(1491), + [sym__raw_string_literal_start] = ACTIONS(1491), + [sym_float_literal] = ACTIONS(1491), }, [STATE(484)] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym__] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_as] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_gen] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_ref] = ACTIONS(1460), - [sym_mutable_specifier] = ACTIONS(1460), - [anon_sym_raw] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym__raw_string_literal_start] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), + [sym_identifier] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_u8] = ACTIONS(1497), + [anon_sym_i8] = ACTIONS(1497), + [anon_sym_u16] = ACTIONS(1497), + [anon_sym_i16] = ACTIONS(1497), + [anon_sym_u32] = ACTIONS(1497), + [anon_sym_i32] = ACTIONS(1497), + [anon_sym_u64] = ACTIONS(1497), + [anon_sym_i64] = ACTIONS(1497), + [anon_sym_u128] = ACTIONS(1497), + [anon_sym_i128] = ACTIONS(1497), + [anon_sym_isize] = ACTIONS(1497), + [anon_sym_usize] = ACTIONS(1497), + [anon_sym_f32] = ACTIONS(1497), + [anon_sym_f64] = ACTIONS(1497), + [anon_sym_bool] = ACTIONS(1497), + [anon_sym_str] = ACTIONS(1497), + [anon_sym_char] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_AMP_AMP] = ACTIONS(1495), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1497), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1495), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_COLON_COLON] = ACTIONS(1495), + [anon_sym_POUND] = ACTIONS(1495), + [anon_sym_as] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [anon_sym_default] = ACTIONS(1497), + [anon_sym_gen] = ACTIONS(1497), + [anon_sym_union] = ACTIONS(1497), + [anon_sym_ref] = ACTIONS(1497), + [sym_mutable_specifier] = ACTIONS(1497), + [anon_sym_raw] = ACTIONS(1497), + [sym_integer_literal] = ACTIONS(1495), + [aux_sym_string_literal_token1] = ACTIONS(1495), + [sym_char_literal] = ACTIONS(1495), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1497), + [sym_super] = ACTIONS(1497), + [sym_crate] = ACTIONS(1497), + [sym_metavariable] = ACTIONS(1495), + [sym__raw_string_literal_start] = ACTIONS(1495), + [sym_float_literal] = ACTIONS(1495), }, [STATE(485)] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(1464), - [anon_sym_LPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1464), - [anon_sym_i8] = ACTIONS(1464), - [anon_sym_u16] = ACTIONS(1464), - [anon_sym_i16] = ACTIONS(1464), - [anon_sym_u32] = ACTIONS(1464), - [anon_sym_i32] = ACTIONS(1464), - [anon_sym_u64] = ACTIONS(1464), - [anon_sym_i64] = ACTIONS(1464), - [anon_sym_u128] = ACTIONS(1464), - [anon_sym_i128] = ACTIONS(1464), - [anon_sym_isize] = ACTIONS(1464), - [anon_sym_usize] = ACTIONS(1464), - [anon_sym_f32] = ACTIONS(1464), - [anon_sym_f64] = ACTIONS(1464), - [anon_sym_bool] = ACTIONS(1464), - [anon_sym_str] = ACTIONS(1464), - [anon_sym_char] = ACTIONS(1464), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1464), - [anon_sym_PIPE] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1462), - [anon_sym_PIPE_PIPE] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1464), - [anon_sym_PLUS_EQ] = ACTIONS(1462), - [anon_sym_DASH_EQ] = ACTIONS(1462), - [anon_sym_STAR_EQ] = ACTIONS(1462), - [anon_sym_SLASH_EQ] = ACTIONS(1462), - [anon_sym_PERCENT_EQ] = ACTIONS(1462), - [anon_sym_CARET_EQ] = ACTIONS(1462), - [anon_sym_AMP_EQ] = ACTIONS(1462), - [anon_sym_PIPE_EQ] = ACTIONS(1462), - [anon_sym_LT_LT_EQ] = ACTIONS(1462), - [anon_sym_GT_GT_EQ] = ACTIONS(1462), - [anon_sym_EQ] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1462), - [anon_sym_BANG_EQ] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1464), - [anon_sym_GT_EQ] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1462), - [anon_sym__] = ACTIONS(1464), - [anon_sym_DOT] = ACTIONS(1464), - [anon_sym_DOT_DOT] = ACTIONS(1464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1462), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_as] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_gen] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_ref] = ACTIONS(1464), - [sym_mutable_specifier] = ACTIONS(1464), - [anon_sym_raw] = ACTIONS(1464), - [sym_integer_literal] = ACTIONS(1462), - [aux_sym_string_literal_token1] = ACTIONS(1462), - [sym_char_literal] = ACTIONS(1462), - [anon_sym_true] = ACTIONS(1464), - [anon_sym_false] = ACTIONS(1464), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1464), - [sym_super] = ACTIONS(1464), - [sym_crate] = ACTIONS(1464), - [sym_metavariable] = ACTIONS(1462), - [sym__raw_string_literal_start] = ACTIONS(1462), - [sym_float_literal] = ACTIONS(1462), + [sym_identifier] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_QMARK] = ACTIONS(1499), + [anon_sym_u8] = ACTIONS(1501), + [anon_sym_i8] = ACTIONS(1501), + [anon_sym_u16] = ACTIONS(1501), + [anon_sym_i16] = ACTIONS(1501), + [anon_sym_u32] = ACTIONS(1501), + [anon_sym_i32] = ACTIONS(1501), + [anon_sym_u64] = ACTIONS(1501), + [anon_sym_i64] = ACTIONS(1501), + [anon_sym_u128] = ACTIONS(1501), + [anon_sym_i128] = ACTIONS(1501), + [anon_sym_isize] = ACTIONS(1501), + [anon_sym_usize] = ACTIONS(1501), + [anon_sym_f32] = ACTIONS(1501), + [anon_sym_f64] = ACTIONS(1501), + [anon_sym_bool] = ACTIONS(1501), + [anon_sym_str] = ACTIONS(1501), + [anon_sym_char] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym__] = ACTIONS(1501), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_COLON_COLON] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(1499), + [anon_sym_as] = ACTIONS(1501), + [anon_sym_const] = ACTIONS(1501), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_gen] = ACTIONS(1501), + [anon_sym_union] = ACTIONS(1501), + [anon_sym_ref] = ACTIONS(1501), + [sym_mutable_specifier] = ACTIONS(1501), + [anon_sym_raw] = ACTIONS(1501), + [sym_integer_literal] = ACTIONS(1499), + [aux_sym_string_literal_token1] = ACTIONS(1499), + [sym_char_literal] = ACTIONS(1499), + [anon_sym_true] = ACTIONS(1501), + [anon_sym_false] = ACTIONS(1501), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1501), + [sym_super] = ACTIONS(1501), + [sym_crate] = ACTIONS(1501), + [sym_metavariable] = ACTIONS(1499), + [sym__raw_string_literal_start] = ACTIONS(1499), + [sym_float_literal] = ACTIONS(1499), }, [STATE(486)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_match_pattern] = STATE(3560), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(746), - [sym_identifier] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1766), - [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(1772), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_gen] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_ref] = ACTIONS(1805), - [sym_mutable_specifier] = ACTIONS(1808), - [anon_sym_raw] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1823), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_QMARK] = ACTIONS(1563), + [anon_sym_u8] = ACTIONS(1565), + [anon_sym_i8] = ACTIONS(1565), + [anon_sym_u16] = ACTIONS(1565), + [anon_sym_i16] = ACTIONS(1565), + [anon_sym_u32] = ACTIONS(1565), + [anon_sym_i32] = ACTIONS(1565), + [anon_sym_u64] = ACTIONS(1565), + [anon_sym_i64] = ACTIONS(1565), + [anon_sym_u128] = ACTIONS(1565), + [anon_sym_i128] = ACTIONS(1565), + [anon_sym_isize] = ACTIONS(1565), + [anon_sym_usize] = ACTIONS(1565), + [anon_sym_f32] = ACTIONS(1565), + [anon_sym_f64] = ACTIONS(1565), + [anon_sym_bool] = ACTIONS(1565), + [anon_sym_str] = ACTIONS(1565), + [anon_sym_char] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ] = ACTIONS(1563), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym__] = ACTIONS(1565), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT] = ACTIONS(1565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1563), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_COLON_COLON] = ACTIONS(1563), + [anon_sym_POUND] = ACTIONS(1563), + [anon_sym_as] = ACTIONS(1565), + [anon_sym_const] = ACTIONS(1565), + [anon_sym_default] = ACTIONS(1565), + [anon_sym_gen] = ACTIONS(1565), + [anon_sym_union] = ACTIONS(1565), + [anon_sym_ref] = ACTIONS(1565), + [sym_mutable_specifier] = ACTIONS(1565), + [anon_sym_raw] = ACTIONS(1565), + [sym_integer_literal] = ACTIONS(1563), + [aux_sym_string_literal_token1] = ACTIONS(1563), + [sym_char_literal] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1565), + [anon_sym_false] = ACTIONS(1565), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1565), + [sym_crate] = ACTIONS(1565), + [sym_metavariable] = ACTIONS(1563), + [sym__raw_string_literal_start] = ACTIONS(1563), + [sym_float_literal] = ACTIONS(1563), }, [STATE(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_PLUS_EQ] = ACTIONS(1546), - [anon_sym_DASH_EQ] = ACTIONS(1546), - [anon_sym_STAR_EQ] = ACTIONS(1546), - [anon_sym_SLASH_EQ] = ACTIONS(1546), - [anon_sym_PERCENT_EQ] = ACTIONS(1546), - [anon_sym_CARET_EQ] = ACTIONS(1546), - [anon_sym_AMP_EQ] = ACTIONS(1546), - [anon_sym_PIPE_EQ] = ACTIONS(1546), - [anon_sym_LT_LT_EQ] = ACTIONS(1546), - [anon_sym_GT_GT_EQ] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ] = ACTIONS(1546), - [anon_sym_GT] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_GT_EQ] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1546), - [anon_sym__] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_gen] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_ref] = ACTIONS(1548), - [sym_mutable_specifier] = ACTIONS(1548), - [anon_sym_raw] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym__raw_string_literal_start] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), + [sym_identifier] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1523), + [anon_sym_RBRACE] = ACTIONS(1523), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_STAR] = ACTIONS(1525), + [anon_sym_QMARK] = ACTIONS(1523), + [anon_sym_u8] = ACTIONS(1525), + [anon_sym_i8] = ACTIONS(1525), + [anon_sym_u16] = ACTIONS(1525), + [anon_sym_i16] = ACTIONS(1525), + [anon_sym_u32] = ACTIONS(1525), + [anon_sym_i32] = ACTIONS(1525), + [anon_sym_u64] = ACTIONS(1525), + [anon_sym_i64] = ACTIONS(1525), + [anon_sym_u128] = ACTIONS(1525), + [anon_sym_i128] = ACTIONS(1525), + [anon_sym_isize] = ACTIONS(1525), + [anon_sym_usize] = ACTIONS(1525), + [anon_sym_f32] = ACTIONS(1525), + [anon_sym_f64] = ACTIONS(1525), + [anon_sym_bool] = ACTIONS(1525), + [anon_sym_str] = ACTIONS(1525), + [anon_sym_char] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(1525), + [anon_sym_PERCENT] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), + [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1523), + [anon_sym_PIPE_PIPE] = ACTIONS(1523), + [anon_sym_LT_LT] = ACTIONS(1525), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_PLUS_EQ] = ACTIONS(1523), + [anon_sym_DASH_EQ] = ACTIONS(1523), + [anon_sym_STAR_EQ] = ACTIONS(1523), + [anon_sym_SLASH_EQ] = ACTIONS(1523), + [anon_sym_PERCENT_EQ] = ACTIONS(1523), + [anon_sym_CARET_EQ] = ACTIONS(1523), + [anon_sym_AMP_EQ] = ACTIONS(1523), + [anon_sym_PIPE_EQ] = ACTIONS(1523), + [anon_sym_LT_LT_EQ] = ACTIONS(1523), + [anon_sym_GT_GT_EQ] = ACTIONS(1523), + [anon_sym_EQ] = ACTIONS(1525), + [anon_sym_EQ_EQ] = ACTIONS(1523), + [anon_sym_BANG_EQ] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1525), + [anon_sym_LT] = ACTIONS(1525), + [anon_sym_GT_EQ] = ACTIONS(1523), + [anon_sym_LT_EQ] = ACTIONS(1523), + [anon_sym__] = ACTIONS(1525), + [anon_sym_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1523), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1523), + [anon_sym_COMMA] = ACTIONS(1523), + [anon_sym_COLON_COLON] = ACTIONS(1523), + [anon_sym_POUND] = ACTIONS(1523), + [anon_sym_as] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_default] = ACTIONS(1525), + [anon_sym_gen] = ACTIONS(1525), + [anon_sym_union] = ACTIONS(1525), + [anon_sym_ref] = ACTIONS(1525), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_raw] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1523), + [aux_sym_string_literal_token1] = ACTIONS(1523), + [sym_char_literal] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1525), + [sym_super] = ACTIONS(1525), + [sym_crate] = ACTIONS(1525), + [sym_metavariable] = ACTIONS(1523), + [sym__raw_string_literal_start] = ACTIONS(1523), + [sym_float_literal] = ACTIONS(1523), }, [STATE(488)] = { [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1488), - [anon_sym_PIPE_PIPE] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PERCENT_EQ] = ACTIONS(1488), - [anon_sym_CARET_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym__] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_gen] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_ref] = ACTIONS(1490), - [sym_mutable_specifier] = ACTIONS(1490), - [anon_sym_raw] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym__raw_string_literal_start] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_QMARK] = ACTIONS(1567), + [anon_sym_u8] = ACTIONS(1569), + [anon_sym_i8] = ACTIONS(1569), + [anon_sym_u16] = ACTIONS(1569), + [anon_sym_i16] = ACTIONS(1569), + [anon_sym_u32] = ACTIONS(1569), + [anon_sym_i32] = ACTIONS(1569), + [anon_sym_u64] = ACTIONS(1569), + [anon_sym_i64] = ACTIONS(1569), + [anon_sym_u128] = ACTIONS(1569), + [anon_sym_i128] = ACTIONS(1569), + [anon_sym_isize] = ACTIONS(1569), + [anon_sym_usize] = ACTIONS(1569), + [anon_sym_f32] = ACTIONS(1569), + [anon_sym_f64] = ACTIONS(1569), + [anon_sym_bool] = ACTIONS(1569), + [anon_sym_str] = ACTIONS(1569), + [anon_sym_char] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_CARET_EQ] = ACTIONS(1567), + [anon_sym_AMP_EQ] = ACTIONS(1567), + [anon_sym_PIPE_EQ] = ACTIONS(1567), + [anon_sym_LT_LT_EQ] = ACTIONS(1567), + [anon_sym_GT_GT_EQ] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1569), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym__] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_COLON_COLON] = ACTIONS(1567), + [anon_sym_POUND] = ACTIONS(1567), + [anon_sym_as] = ACTIONS(1569), + [anon_sym_const] = ACTIONS(1569), + [anon_sym_default] = ACTIONS(1569), + [anon_sym_gen] = ACTIONS(1569), + [anon_sym_union] = ACTIONS(1569), + [anon_sym_ref] = ACTIONS(1569), + [sym_mutable_specifier] = ACTIONS(1569), + [anon_sym_raw] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1567), + [aux_sym_string_literal_token1] = ACTIONS(1567), + [sym_char_literal] = ACTIONS(1567), + [anon_sym_true] = ACTIONS(1569), + [anon_sym_false] = ACTIONS(1569), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1569), + [sym_super] = ACTIONS(1569), + [sym_crate] = ACTIONS(1569), + [sym_metavariable] = ACTIONS(1567), + [sym__raw_string_literal_start] = ACTIONS(1567), + [sym_float_literal] = ACTIONS(1567), }, [STATE(489)] = { [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [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(1829), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_gen] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_ref] = ACTIONS(1829), - [sym_mutable_specifier] = ACTIONS(1829), - [anon_sym_raw] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1831), - [sym__raw_string_literal_start] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_QMARK] = ACTIONS(1559), + [anon_sym_u8] = ACTIONS(1561), + [anon_sym_i8] = ACTIONS(1561), + [anon_sym_u16] = ACTIONS(1561), + [anon_sym_i16] = ACTIONS(1561), + [anon_sym_u32] = ACTIONS(1561), + [anon_sym_i32] = ACTIONS(1561), + [anon_sym_u64] = ACTIONS(1561), + [anon_sym_i64] = ACTIONS(1561), + [anon_sym_u128] = ACTIONS(1561), + [anon_sym_i128] = ACTIONS(1561), + [anon_sym_isize] = ACTIONS(1561), + [anon_sym_usize] = ACTIONS(1561), + [anon_sym_f32] = ACTIONS(1561), + [anon_sym_f64] = ACTIONS(1561), + [anon_sym_bool] = ACTIONS(1561), + [anon_sym_str] = ACTIONS(1561), + [anon_sym_char] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_PLUS_EQ] = ACTIONS(1559), + [anon_sym_DASH_EQ] = ACTIONS(1559), + [anon_sym_STAR_EQ] = ACTIONS(1559), + [anon_sym_SLASH_EQ] = ACTIONS(1559), + [anon_sym_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_CARET_EQ] = ACTIONS(1559), + [anon_sym_AMP_EQ] = ACTIONS(1559), + [anon_sym_PIPE_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_BANG_EQ] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym__] = ACTIONS(1561), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1559), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1559), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_COLON_COLON] = ACTIONS(1559), + [anon_sym_POUND] = ACTIONS(1559), + [anon_sym_as] = ACTIONS(1561), + [anon_sym_const] = ACTIONS(1561), + [anon_sym_default] = ACTIONS(1561), + [anon_sym_gen] = ACTIONS(1561), + [anon_sym_union] = ACTIONS(1561), + [anon_sym_ref] = ACTIONS(1561), + [sym_mutable_specifier] = ACTIONS(1561), + [anon_sym_raw] = ACTIONS(1561), + [sym_integer_literal] = ACTIONS(1559), + [aux_sym_string_literal_token1] = ACTIONS(1559), + [sym_char_literal] = ACTIONS(1559), + [anon_sym_true] = ACTIONS(1561), + [anon_sym_false] = ACTIONS(1561), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1561), + [sym_super] = ACTIONS(1561), + [sym_crate] = ACTIONS(1561), + [sym_metavariable] = ACTIONS(1559), + [sym__raw_string_literal_start] = ACTIONS(1559), + [sym_float_literal] = ACTIONS(1559), }, [STATE(490)] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_gen] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_ref] = ACTIONS(1478), - [sym_mutable_specifier] = ACTIONS(1478), - [anon_sym_raw] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym__raw_string_literal_start] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_QMARK] = ACTIONS(1503), + [anon_sym_u8] = ACTIONS(1505), + [anon_sym_i8] = ACTIONS(1505), + [anon_sym_u16] = ACTIONS(1505), + [anon_sym_i16] = ACTIONS(1505), + [anon_sym_u32] = ACTIONS(1505), + [anon_sym_i32] = ACTIONS(1505), + [anon_sym_u64] = ACTIONS(1505), + [anon_sym_i64] = ACTIONS(1505), + [anon_sym_u128] = ACTIONS(1505), + [anon_sym_i128] = ACTIONS(1505), + [anon_sym_isize] = ACTIONS(1505), + [anon_sym_usize] = ACTIONS(1505), + [anon_sym_f32] = ACTIONS(1505), + [anon_sym_f64] = ACTIONS(1505), + [anon_sym_bool] = ACTIONS(1505), + [anon_sym_str] = ACTIONS(1505), + [anon_sym_char] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_AMP_AMP] = ACTIONS(1503), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym__] = ACTIONS(1505), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT] = ACTIONS(1505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1503), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_COLON_COLON] = ACTIONS(1503), + [anon_sym_POUND] = ACTIONS(1503), + [anon_sym_as] = ACTIONS(1505), + [anon_sym_const] = ACTIONS(1505), + [anon_sym_default] = ACTIONS(1505), + [anon_sym_gen] = ACTIONS(1505), + [anon_sym_union] = ACTIONS(1505), + [anon_sym_ref] = ACTIONS(1505), + [sym_mutable_specifier] = ACTIONS(1505), + [anon_sym_raw] = ACTIONS(1505), + [sym_integer_literal] = ACTIONS(1503), + [aux_sym_string_literal_token1] = ACTIONS(1503), + [sym_char_literal] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(1505), + [anon_sym_false] = ACTIONS(1505), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1505), + [sym_super] = ACTIONS(1505), + [sym_crate] = ACTIONS(1505), + [sym_metavariable] = ACTIONS(1503), + [sym__raw_string_literal_start] = ACTIONS(1503), + [sym_float_literal] = ACTIONS(1503), }, [STATE(491)] = { [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1554), - [anon_sym_BANG_EQ] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_gen] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_ref] = ACTIONS(1556), - [sym_mutable_specifier] = ACTIONS(1556), - [anon_sym_raw] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym__raw_string_literal_start] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), + [sym_identifier] = ACTIONS(1517), + [anon_sym_LPAREN] = ACTIONS(1515), + [anon_sym_LBRACK] = ACTIONS(1515), + [anon_sym_RBRACE] = ACTIONS(1515), + [anon_sym_PLUS] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1517), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_u8] = ACTIONS(1517), + [anon_sym_i8] = ACTIONS(1517), + [anon_sym_u16] = ACTIONS(1517), + [anon_sym_i16] = ACTIONS(1517), + [anon_sym_u32] = ACTIONS(1517), + [anon_sym_i32] = ACTIONS(1517), + [anon_sym_u64] = ACTIONS(1517), + [anon_sym_i64] = ACTIONS(1517), + [anon_sym_u128] = ACTIONS(1517), + [anon_sym_i128] = ACTIONS(1517), + [anon_sym_isize] = ACTIONS(1517), + [anon_sym_usize] = ACTIONS(1517), + [anon_sym_f32] = ACTIONS(1517), + [anon_sym_f64] = ACTIONS(1517), + [anon_sym_bool] = ACTIONS(1517), + [anon_sym_str] = ACTIONS(1517), + [anon_sym_char] = ACTIONS(1517), + [anon_sym_DASH] = ACTIONS(1517), + [anon_sym_SLASH] = ACTIONS(1517), + [anon_sym_PERCENT] = ACTIONS(1517), + [anon_sym_CARET] = ACTIONS(1517), + [anon_sym_AMP] = ACTIONS(1517), + [anon_sym_PIPE] = ACTIONS(1517), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [anon_sym_LT_LT] = ACTIONS(1517), + [anon_sym_GT_GT] = ACTIONS(1517), + [anon_sym_PLUS_EQ] = ACTIONS(1515), + [anon_sym_DASH_EQ] = ACTIONS(1515), + [anon_sym_STAR_EQ] = ACTIONS(1515), + [anon_sym_SLASH_EQ] = ACTIONS(1515), + [anon_sym_PERCENT_EQ] = ACTIONS(1515), + [anon_sym_CARET_EQ] = ACTIONS(1515), + [anon_sym_AMP_EQ] = ACTIONS(1515), + [anon_sym_PIPE_EQ] = ACTIONS(1515), + [anon_sym_LT_LT_EQ] = ACTIONS(1515), + [anon_sym_GT_GT_EQ] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_EQ_EQ] = ACTIONS(1515), + [anon_sym_BANG_EQ] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1517), + [anon_sym_LT] = ACTIONS(1517), + [anon_sym_GT_EQ] = ACTIONS(1515), + [anon_sym_LT_EQ] = ACTIONS(1515), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1515), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1515), + [anon_sym_POUND] = ACTIONS(1515), + [anon_sym_as] = ACTIONS(1517), + [anon_sym_const] = ACTIONS(1517), + [anon_sym_default] = ACTIONS(1517), + [anon_sym_gen] = ACTIONS(1517), + [anon_sym_union] = ACTIONS(1517), + [anon_sym_ref] = ACTIONS(1517), + [sym_mutable_specifier] = ACTIONS(1517), + [anon_sym_raw] = ACTIONS(1517), + [sym_integer_literal] = ACTIONS(1515), + [aux_sym_string_literal_token1] = ACTIONS(1515), + [sym_char_literal] = ACTIONS(1515), + [anon_sym_true] = ACTIONS(1517), + [anon_sym_false] = ACTIONS(1517), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1517), + [sym_super] = ACTIONS(1517), + [sym_crate] = ACTIONS(1517), + [sym_metavariable] = ACTIONS(1515), + [sym__raw_string_literal_start] = ACTIONS(1515), + [sym_float_literal] = ACTIONS(1515), }, [STATE(492)] = { [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PERCENT_EQ] = ACTIONS(1492), - [anon_sym_CARET_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym__] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_gen] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_ref] = ACTIONS(1494), - [sym_mutable_specifier] = ACTIONS(1494), - [anon_sym_raw] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym__raw_string_literal_start] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [sym_identifier] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_QMARK] = ACTIONS(1475), + [anon_sym_u8] = ACTIONS(1477), + [anon_sym_i8] = ACTIONS(1477), + [anon_sym_u16] = ACTIONS(1477), + [anon_sym_i16] = ACTIONS(1477), + [anon_sym_u32] = ACTIONS(1477), + [anon_sym_i32] = ACTIONS(1477), + [anon_sym_u64] = ACTIONS(1477), + [anon_sym_i64] = ACTIONS(1477), + [anon_sym_u128] = ACTIONS(1477), + [anon_sym_i128] = ACTIONS(1477), + [anon_sym_isize] = ACTIONS(1477), + [anon_sym_usize] = ACTIONS(1477), + [anon_sym_f32] = ACTIONS(1477), + [anon_sym_f64] = ACTIONS(1477), + [anon_sym_bool] = ACTIONS(1477), + [anon_sym_str] = ACTIONS(1477), + [anon_sym_char] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1475), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym__] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1475), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1477), + [anon_sym_const] = ACTIONS(1477), + [anon_sym_default] = ACTIONS(1477), + [anon_sym_gen] = ACTIONS(1477), + [anon_sym_union] = ACTIONS(1477), + [anon_sym_ref] = ACTIONS(1477), + [sym_mutable_specifier] = ACTIONS(1477), + [anon_sym_raw] = ACTIONS(1477), + [sym_integer_literal] = ACTIONS(1475), + [aux_sym_string_literal_token1] = ACTIONS(1475), + [sym_char_literal] = ACTIONS(1475), + [anon_sym_true] = ACTIONS(1477), + [anon_sym_false] = ACTIONS(1477), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1477), + [sym_super] = ACTIONS(1477), + [sym_crate] = ACTIONS(1477), + [sym_metavariable] = ACTIONS(1475), + [sym__raw_string_literal_start] = ACTIONS(1475), + [sym_float_literal] = ACTIONS(1475), }, [STATE(493)] = { [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym__] = ACTIONS(1522), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_as] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_gen] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(1522), - [sym_mutable_specifier] = ACTIONS(1522), - [anon_sym_raw] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym__raw_string_literal_start] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [sym_identifier] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_QMARK] = ACTIONS(1547), + [anon_sym_u8] = ACTIONS(1549), + [anon_sym_i8] = ACTIONS(1549), + [anon_sym_u16] = ACTIONS(1549), + [anon_sym_i16] = ACTIONS(1549), + [anon_sym_u32] = ACTIONS(1549), + [anon_sym_i32] = ACTIONS(1549), + [anon_sym_u64] = ACTIONS(1549), + [anon_sym_i64] = ACTIONS(1549), + [anon_sym_u128] = ACTIONS(1549), + [anon_sym_i128] = ACTIONS(1549), + [anon_sym_isize] = ACTIONS(1549), + [anon_sym_usize] = ACTIONS(1549), + [anon_sym_f32] = ACTIONS(1549), + [anon_sym_f64] = ACTIONS(1549), + [anon_sym_bool] = ACTIONS(1549), + [anon_sym_str] = ACTIONS(1549), + [anon_sym_char] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_AMP_AMP] = ACTIONS(1547), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym__] = ACTIONS(1549), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT] = ACTIONS(1549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1549), + [anon_sym_const] = ACTIONS(1549), + [anon_sym_default] = ACTIONS(1549), + [anon_sym_gen] = ACTIONS(1549), + [anon_sym_union] = ACTIONS(1549), + [anon_sym_ref] = ACTIONS(1549), + [sym_mutable_specifier] = ACTIONS(1549), + [anon_sym_raw] = ACTIONS(1549), + [sym_integer_literal] = ACTIONS(1547), + [aux_sym_string_literal_token1] = ACTIONS(1547), + [sym_char_literal] = ACTIONS(1547), + [anon_sym_true] = ACTIONS(1549), + [anon_sym_false] = ACTIONS(1549), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1549), + [sym_super] = ACTIONS(1549), + [sym_crate] = ACTIONS(1549), + [sym_metavariable] = ACTIONS(1547), + [sym__raw_string_literal_start] = ACTIONS(1547), + [sym_float_literal] = ACTIONS(1547), }, [STATE(494)] = { [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym__] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_gen] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_ref] = ACTIONS(1518), - [sym_mutable_specifier] = ACTIONS(1518), - [anon_sym_raw] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym__raw_string_literal_start] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), + [sym_identifier] = ACTIONS(1513), + [anon_sym_LPAREN] = ACTIONS(1511), + [anon_sym_LBRACK] = ACTIONS(1511), + [anon_sym_RBRACE] = ACTIONS(1511), + [anon_sym_PLUS] = ACTIONS(1513), + [anon_sym_STAR] = ACTIONS(1513), + [anon_sym_QMARK] = ACTIONS(1511), + [anon_sym_u8] = ACTIONS(1513), + [anon_sym_i8] = ACTIONS(1513), + [anon_sym_u16] = ACTIONS(1513), + [anon_sym_i16] = ACTIONS(1513), + [anon_sym_u32] = ACTIONS(1513), + [anon_sym_i32] = ACTIONS(1513), + [anon_sym_u64] = ACTIONS(1513), + [anon_sym_i64] = ACTIONS(1513), + [anon_sym_u128] = ACTIONS(1513), + [anon_sym_i128] = ACTIONS(1513), + [anon_sym_isize] = ACTIONS(1513), + [anon_sym_usize] = ACTIONS(1513), + [anon_sym_f32] = ACTIONS(1513), + [anon_sym_f64] = ACTIONS(1513), + [anon_sym_bool] = ACTIONS(1513), + [anon_sym_str] = ACTIONS(1513), + [anon_sym_char] = ACTIONS(1513), + [anon_sym_DASH] = ACTIONS(1513), + [anon_sym_SLASH] = ACTIONS(1513), + [anon_sym_PERCENT] = ACTIONS(1513), + [anon_sym_CARET] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1511), + [anon_sym_PIPE_PIPE] = ACTIONS(1511), + [anon_sym_LT_LT] = ACTIONS(1513), + [anon_sym_GT_GT] = ACTIONS(1513), + [anon_sym_PLUS_EQ] = ACTIONS(1511), + [anon_sym_DASH_EQ] = ACTIONS(1511), + [anon_sym_STAR_EQ] = ACTIONS(1511), + [anon_sym_SLASH_EQ] = ACTIONS(1511), + [anon_sym_PERCENT_EQ] = ACTIONS(1511), + [anon_sym_CARET_EQ] = ACTIONS(1511), + [anon_sym_AMP_EQ] = ACTIONS(1511), + [anon_sym_PIPE_EQ] = ACTIONS(1511), + [anon_sym_LT_LT_EQ] = ACTIONS(1511), + [anon_sym_GT_GT_EQ] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_EQ_EQ] = ACTIONS(1511), + [anon_sym_BANG_EQ] = ACTIONS(1511), + [anon_sym_GT] = ACTIONS(1513), + [anon_sym_LT] = ACTIONS(1513), + [anon_sym_GT_EQ] = ACTIONS(1511), + [anon_sym_LT_EQ] = ACTIONS(1511), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1511), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1511), + [anon_sym_COMMA] = ACTIONS(1511), + [anon_sym_COLON_COLON] = ACTIONS(1511), + [anon_sym_POUND] = ACTIONS(1511), + [anon_sym_as] = ACTIONS(1513), + [anon_sym_const] = ACTIONS(1513), + [anon_sym_default] = ACTIONS(1513), + [anon_sym_gen] = ACTIONS(1513), + [anon_sym_union] = ACTIONS(1513), + [anon_sym_ref] = ACTIONS(1513), + [sym_mutable_specifier] = ACTIONS(1513), + [anon_sym_raw] = ACTIONS(1513), + [sym_integer_literal] = ACTIONS(1511), + [aux_sym_string_literal_token1] = ACTIONS(1511), + [sym_char_literal] = ACTIONS(1511), + [anon_sym_true] = ACTIONS(1513), + [anon_sym_false] = ACTIONS(1513), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1513), + [sym_super] = ACTIONS(1513), + [sym_crate] = ACTIONS(1513), + [sym_metavariable] = ACTIONS(1511), + [sym__raw_string_literal_start] = ACTIONS(1511), + [sym_float_literal] = ACTIONS(1511), }, [STATE(495)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1487), + [anon_sym_u8] = ACTIONS(1489), + [anon_sym_i8] = ACTIONS(1489), + [anon_sym_u16] = ACTIONS(1489), + [anon_sym_i16] = ACTIONS(1489), + [anon_sym_u32] = ACTIONS(1489), + [anon_sym_i32] = ACTIONS(1489), + [anon_sym_u64] = ACTIONS(1489), + [anon_sym_i64] = ACTIONS(1489), + [anon_sym_u128] = ACTIONS(1489), + [anon_sym_i128] = ACTIONS(1489), + [anon_sym_isize] = ACTIONS(1489), + [anon_sym_usize] = ACTIONS(1489), + [anon_sym_f32] = ACTIONS(1489), + [anon_sym_f64] = ACTIONS(1489), + [anon_sym_bool] = ACTIONS(1489), + [anon_sym_str] = ACTIONS(1489), + [anon_sym_char] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1487), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_COLON_COLON] = ACTIONS(1487), + [anon_sym_POUND] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1489), + [anon_sym_const] = ACTIONS(1489), + [anon_sym_default] = ACTIONS(1489), + [anon_sym_gen] = ACTIONS(1489), + [anon_sym_union] = ACTIONS(1489), + [anon_sym_ref] = ACTIONS(1489), + [sym_mutable_specifier] = ACTIONS(1489), + [anon_sym_raw] = ACTIONS(1489), + [sym_integer_literal] = ACTIONS(1487), + [aux_sym_string_literal_token1] = ACTIONS(1487), + [sym_char_literal] = ACTIONS(1487), + [anon_sym_true] = ACTIONS(1489), + [anon_sym_false] = ACTIONS(1489), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1489), + [sym_super] = ACTIONS(1489), + [sym_crate] = ACTIONS(1489), + [sym_metavariable] = ACTIONS(1487), + [sym__raw_string_literal_start] = ACTIONS(1487), + [sym_float_literal] = ACTIONS(1487), }, [STATE(496)] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [sym_identifier] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PERCENT_EQ] = ACTIONS(1480), - [anon_sym_CARET_EQ] = ACTIONS(1480), - [anon_sym_AMP_EQ] = ACTIONS(1480), - [anon_sym_PIPE_EQ] = ACTIONS(1480), - [anon_sym_LT_LT_EQ] = ACTIONS(1480), - [anon_sym_GT_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym__] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_gen] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_ref] = ACTIONS(1482), - [sym_mutable_specifier] = ACTIONS(1482), - [anon_sym_raw] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym__raw_string_literal_start] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym__] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_ref] = ACTIONS(1509), + [sym_mutable_specifier] = ACTIONS(1509), + [anon_sym_raw] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), }, [STATE(497)] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [sym_identifier] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1524), - [anon_sym_PIPE_PIPE] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PERCENT_EQ] = ACTIONS(1524), - [anon_sym_CARET_EQ] = ACTIONS(1524), - [anon_sym_AMP_EQ] = ACTIONS(1524), - [anon_sym_PIPE_EQ] = ACTIONS(1524), - [anon_sym_LT_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_GT_EQ] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym__] = ACTIONS(1526), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_as] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_gen] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_ref] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(1526), - [anon_sym_raw] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), + [sym_identifier] = ACTIONS(1545), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1545), + [anon_sym_STAR] = ACTIONS(1545), + [anon_sym_QMARK] = ACTIONS(1543), + [anon_sym_u8] = ACTIONS(1545), + [anon_sym_i8] = ACTIONS(1545), + [anon_sym_u16] = ACTIONS(1545), + [anon_sym_i16] = ACTIONS(1545), + [anon_sym_u32] = ACTIONS(1545), + [anon_sym_i32] = ACTIONS(1545), + [anon_sym_u64] = ACTIONS(1545), + [anon_sym_i64] = ACTIONS(1545), + [anon_sym_u128] = ACTIONS(1545), + [anon_sym_i128] = ACTIONS(1545), + [anon_sym_isize] = ACTIONS(1545), + [anon_sym_usize] = ACTIONS(1545), + [anon_sym_f32] = ACTIONS(1545), + [anon_sym_f64] = ACTIONS(1545), + [anon_sym_bool] = ACTIONS(1545), + [anon_sym_str] = ACTIONS(1545), + [anon_sym_char] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_SLASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_CARET] = ACTIONS(1545), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_AMP_AMP] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1543), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(1545), + [anon_sym_PLUS_EQ] = ACTIONS(1543), + [anon_sym_DASH_EQ] = ACTIONS(1543), + [anon_sym_STAR_EQ] = ACTIONS(1543), + [anon_sym_SLASH_EQ] = ACTIONS(1543), + [anon_sym_PERCENT_EQ] = ACTIONS(1543), + [anon_sym_CARET_EQ] = ACTIONS(1543), + [anon_sym_AMP_EQ] = ACTIONS(1543), + [anon_sym_PIPE_EQ] = ACTIONS(1543), + [anon_sym_LT_LT_EQ] = ACTIONS(1543), + [anon_sym_GT_GT_EQ] = ACTIONS(1543), + [anon_sym_EQ] = ACTIONS(1545), + [anon_sym_EQ_EQ] = ACTIONS(1543), + [anon_sym_BANG_EQ] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT_EQ] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1543), + [anon_sym__] = ACTIONS(1545), + [anon_sym_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT] = ACTIONS(1545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_COLON_COLON] = ACTIONS(1543), + [anon_sym_POUND] = ACTIONS(1543), + [anon_sym_as] = ACTIONS(1545), + [anon_sym_const] = ACTIONS(1545), + [anon_sym_default] = ACTIONS(1545), + [anon_sym_gen] = ACTIONS(1545), + [anon_sym_union] = ACTIONS(1545), + [anon_sym_ref] = ACTIONS(1545), + [sym_mutable_specifier] = ACTIONS(1545), + [anon_sym_raw] = ACTIONS(1545), + [sym_integer_literal] = ACTIONS(1543), + [aux_sym_string_literal_token1] = ACTIONS(1543), + [sym_char_literal] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1545), + [anon_sym_false] = ACTIONS(1545), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1545), + [sym_super] = ACTIONS(1545), + [sym_crate] = ACTIONS(1545), + [sym_metavariable] = ACTIONS(1543), + [sym__raw_string_literal_start] = ACTIONS(1543), + [sym_float_literal] = ACTIONS(1543), }, [STATE(498)] = { [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [sym_identifier] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PERCENT_EQ] = ACTIONS(1466), - [anon_sym_CARET_EQ] = ACTIONS(1466), - [anon_sym_AMP_EQ] = ACTIONS(1466), - [anon_sym_PIPE_EQ] = ACTIONS(1466), - [anon_sym_LT_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_GT_EQ] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_gen] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_ref] = ACTIONS(1468), - [sym_mutable_specifier] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym__raw_string_literal_start] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), + [sym_identifier] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_QMARK] = ACTIONS(1479), + [anon_sym_u8] = ACTIONS(1481), + [anon_sym_i8] = ACTIONS(1481), + [anon_sym_u16] = ACTIONS(1481), + [anon_sym_i16] = ACTIONS(1481), + [anon_sym_u32] = ACTIONS(1481), + [anon_sym_i32] = ACTIONS(1481), + [anon_sym_u64] = ACTIONS(1481), + [anon_sym_i64] = ACTIONS(1481), + [anon_sym_u128] = ACTIONS(1481), + [anon_sym_i128] = ACTIONS(1481), + [anon_sym_isize] = ACTIONS(1481), + [anon_sym_usize] = ACTIONS(1481), + [anon_sym_f32] = ACTIONS(1481), + [anon_sym_f64] = ACTIONS(1481), + [anon_sym_bool] = ACTIONS(1481), + [anon_sym_str] = ACTIONS(1481), + [anon_sym_char] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_AMP_AMP] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_PLUS_EQ] = ACTIONS(1479), + [anon_sym_DASH_EQ] = ACTIONS(1479), + [anon_sym_STAR_EQ] = ACTIONS(1479), + [anon_sym_SLASH_EQ] = ACTIONS(1479), + [anon_sym_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_CARET_EQ] = ACTIONS(1479), + [anon_sym_AMP_EQ] = ACTIONS(1479), + [anon_sym_PIPE_EQ] = ACTIONS(1479), + [anon_sym_LT_LT_EQ] = ACTIONS(1479), + [anon_sym_GT_GT_EQ] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_EQ_EQ] = ACTIONS(1479), + [anon_sym_BANG_EQ] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT_EQ] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1481), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT] = ACTIONS(1481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_COLON_COLON] = ACTIONS(1479), + [anon_sym_POUND] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1481), + [anon_sym_const] = ACTIONS(1481), + [anon_sym_default] = ACTIONS(1481), + [anon_sym_gen] = ACTIONS(1481), + [anon_sym_union] = ACTIONS(1481), + [anon_sym_ref] = ACTIONS(1481), + [sym_mutable_specifier] = ACTIONS(1481), + [anon_sym_raw] = ACTIONS(1481), + [sym_integer_literal] = ACTIONS(1479), + [aux_sym_string_literal_token1] = ACTIONS(1479), + [sym_char_literal] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(1481), + [anon_sym_false] = ACTIONS(1481), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1481), + [sym_super] = ACTIONS(1481), + [sym_crate] = ACTIONS(1481), + [sym_metavariable] = ACTIONS(1479), + [sym__raw_string_literal_start] = ACTIONS(1479), + [sym_float_literal] = ACTIONS(1479), }, [STATE(499)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1539), + [anon_sym_RBRACE] = ACTIONS(1539), + [anon_sym_PLUS] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1541), + [anon_sym_QMARK] = ACTIONS(1539), + [anon_sym_u8] = ACTIONS(1541), + [anon_sym_i8] = ACTIONS(1541), + [anon_sym_u16] = ACTIONS(1541), + [anon_sym_i16] = ACTIONS(1541), + [anon_sym_u32] = ACTIONS(1541), + [anon_sym_i32] = ACTIONS(1541), + [anon_sym_u64] = ACTIONS(1541), + [anon_sym_i64] = ACTIONS(1541), + [anon_sym_u128] = ACTIONS(1541), + [anon_sym_i128] = ACTIONS(1541), + [anon_sym_isize] = ACTIONS(1541), + [anon_sym_usize] = ACTIONS(1541), + [anon_sym_f32] = ACTIONS(1541), + [anon_sym_f64] = ACTIONS(1541), + [anon_sym_bool] = ACTIONS(1541), + [anon_sym_str] = ACTIONS(1541), + [anon_sym_char] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_CARET] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_AMP_AMP] = ACTIONS(1539), + [anon_sym_PIPE_PIPE] = ACTIONS(1539), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1539), + [anon_sym_DASH_EQ] = ACTIONS(1539), + [anon_sym_STAR_EQ] = ACTIONS(1539), + [anon_sym_SLASH_EQ] = ACTIONS(1539), + [anon_sym_PERCENT_EQ] = ACTIONS(1539), + [anon_sym_CARET_EQ] = ACTIONS(1539), + [anon_sym_AMP_EQ] = ACTIONS(1539), + [anon_sym_PIPE_EQ] = ACTIONS(1539), + [anon_sym_LT_LT_EQ] = ACTIONS(1539), + [anon_sym_GT_GT_EQ] = ACTIONS(1539), + [anon_sym_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1539), + [anon_sym_BANG_EQ] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1539), + [anon_sym_LT_EQ] = ACTIONS(1539), + [anon_sym__] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1539), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1539), + [anon_sym_COMMA] = ACTIONS(1539), + [anon_sym_COLON_COLON] = ACTIONS(1539), + [anon_sym_POUND] = ACTIONS(1539), + [anon_sym_as] = ACTIONS(1541), + [anon_sym_const] = ACTIONS(1541), + [anon_sym_default] = ACTIONS(1541), + [anon_sym_gen] = ACTIONS(1541), + [anon_sym_union] = ACTIONS(1541), + [anon_sym_ref] = ACTIONS(1541), + [sym_mutable_specifier] = ACTIONS(1541), + [anon_sym_raw] = ACTIONS(1541), + [sym_integer_literal] = ACTIONS(1539), + [aux_sym_string_literal_token1] = ACTIONS(1539), + [sym_char_literal] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(1541), + [anon_sym_false] = ACTIONS(1541), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1541), + [sym_super] = ACTIONS(1541), + [sym_crate] = ACTIONS(1541), + [sym_metavariable] = ACTIONS(1539), + [sym__raw_string_literal_start] = ACTIONS(1539), + [sym_float_literal] = ACTIONS(1539), }, [STATE(500)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3085), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(2829), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(501)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_arm] = STATE(1391), + [sym_match_pattern] = STATE(3653), + [sym_const_block] = STATE(3080), [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_match_block_repeat1] = STATE(501), + [aux_sym_match_arm_repeat1] = STATE(788), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1785), + [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(1791), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1800), + [anon_sym__] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1812), + [anon_sym_POUND] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1818), + [anon_sym_default] = ACTIONS(1821), + [anon_sym_gen] = ACTIONS(1821), + [anon_sym_union] = ACTIONS(1821), + [anon_sym_ref] = ACTIONS(1824), + [sym_mutable_specifier] = ACTIONS(1827), + [anon_sym_raw] = ACTIONS(1821), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1833), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1839), + [sym_super] = ACTIONS(1839), + [sym_crate] = ACTIONS(1839), + [sym_metavariable] = ACTIONS(1842), + [sym__raw_string_literal_start] = ACTIONS(1845), + [sym_float_literal] = ACTIONS(1830), }, [STATE(502)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1531), + [anon_sym_PLUS] = ACTIONS(1533), + [anon_sym_STAR] = ACTIONS(1533), + [anon_sym_QMARK] = ACTIONS(1531), + [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(1848), + [anon_sym_SLASH] = ACTIONS(1533), + [anon_sym_PERCENT] = ACTIONS(1533), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_PIPE] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_PLUS_EQ] = ACTIONS(1531), + [anon_sym_DASH_EQ] = ACTIONS(1531), + [anon_sym_STAR_EQ] = ACTIONS(1531), + [anon_sym_SLASH_EQ] = ACTIONS(1531), + [anon_sym_PERCENT_EQ] = ACTIONS(1531), + [anon_sym_CARET_EQ] = ACTIONS(1531), + [anon_sym_AMP_EQ] = ACTIONS(1531), + [anon_sym_PIPE_EQ] = ACTIONS(1531), + [anon_sym_LT_LT_EQ] = ACTIONS(1531), + [anon_sym_GT_GT_EQ] = ACTIONS(1531), + [anon_sym_EQ] = ACTIONS(1533), + [anon_sym_EQ_EQ] = ACTIONS(1531), + [anon_sym_BANG_EQ] = ACTIONS(1531), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1848), + [anon_sym_GT_EQ] = ACTIONS(1531), + [anon_sym_LT_EQ] = ACTIONS(1531), + [anon_sym__] = ACTIONS(1848), + [anon_sym_DOT] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1531), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), + [anon_sym_COMMA] = ACTIONS(1531), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_as] = ACTIONS(1533), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_gen] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_ref] = ACTIONS(1848), + [sym_mutable_specifier] = ACTIONS(1848), + [anon_sym_raw] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1850), + [sym__raw_string_literal_start] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), }, [STATE(503)] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1852), + [sym_identifier] = ACTIONS(1854), + [anon_sym_SEMI] = ACTIONS(1852), + [anon_sym_macro_rules_BANG] = ACTIONS(1852), + [anon_sym_LPAREN] = ACTIONS(1852), + [anon_sym_LBRACK] = ACTIONS(1852), + [anon_sym_LBRACE] = ACTIONS(1852), + [anon_sym_RBRACE] = ACTIONS(1852), + [anon_sym_STAR] = ACTIONS(1852), + [anon_sym_u8] = ACTIONS(1854), + [anon_sym_i8] = ACTIONS(1854), + [anon_sym_u16] = ACTIONS(1854), + [anon_sym_i16] = ACTIONS(1854), + [anon_sym_u32] = ACTIONS(1854), + [anon_sym_i32] = ACTIONS(1854), + [anon_sym_u64] = ACTIONS(1854), + [anon_sym_i64] = ACTIONS(1854), + [anon_sym_u128] = ACTIONS(1854), + [anon_sym_i128] = ACTIONS(1854), + [anon_sym_isize] = ACTIONS(1854), + [anon_sym_usize] = ACTIONS(1854), + [anon_sym_f32] = ACTIONS(1854), + [anon_sym_f64] = ACTIONS(1854), + [anon_sym_bool] = ACTIONS(1854), + [anon_sym_str] = ACTIONS(1854), + [anon_sym_char] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1852), + [anon_sym_BANG] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_PIPE] = ACTIONS(1852), + [anon_sym_LT] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1852), + [anon_sym_COLON_COLON] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(1852), + [anon_sym_SQUOTE] = ACTIONS(1854), + [anon_sym_async] = ACTIONS(1854), + [anon_sym_become] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_default] = ACTIONS(1854), + [anon_sym_enum] = ACTIONS(1854), + [anon_sym_fn] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_gen] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_impl] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_mod] = ACTIONS(1854), + [anon_sym_pub] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_static] = ACTIONS(1854), + [anon_sym_struct] = ACTIONS(1854), + [anon_sym_trait] = ACTIONS(1854), + [anon_sym_type] = ACTIONS(1854), + [anon_sym_union] = ACTIONS(1854), + [anon_sym_unsafe] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_raw] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1854), + [anon_sym_move] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [sym_integer_literal] = ACTIONS(1852), + [aux_sym_string_literal_token1] = ACTIONS(1852), + [sym_char_literal] = ACTIONS(1852), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1854), + [sym_super] = ACTIONS(1854), + [sym_crate] = ACTIONS(1854), + [sym_metavariable] = ACTIONS(1852), + [sym__raw_string_literal_start] = ACTIONS(1852), + [sym_float_literal] = ACTIONS(1852), }, [STATE(504)] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1856), + [sym_identifier] = ACTIONS(1858), + [anon_sym_SEMI] = ACTIONS(1856), + [anon_sym_macro_rules_BANG] = ACTIONS(1856), + [anon_sym_LPAREN] = ACTIONS(1856), + [anon_sym_LBRACK] = ACTIONS(1856), + [anon_sym_LBRACE] = ACTIONS(1856), + [anon_sym_RBRACE] = ACTIONS(1856), + [anon_sym_STAR] = ACTIONS(1856), + [anon_sym_u8] = ACTIONS(1858), + [anon_sym_i8] = ACTIONS(1858), + [anon_sym_u16] = ACTIONS(1858), + [anon_sym_i16] = ACTIONS(1858), + [anon_sym_u32] = ACTIONS(1858), + [anon_sym_i32] = ACTIONS(1858), + [anon_sym_u64] = ACTIONS(1858), + [anon_sym_i64] = ACTIONS(1858), + [anon_sym_u128] = ACTIONS(1858), + [anon_sym_i128] = ACTIONS(1858), + [anon_sym_isize] = ACTIONS(1858), + [anon_sym_usize] = ACTIONS(1858), + [anon_sym_f32] = ACTIONS(1858), + [anon_sym_f64] = ACTIONS(1858), + [anon_sym_bool] = ACTIONS(1858), + [anon_sym_str] = ACTIONS(1858), + [anon_sym_char] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(1856), + [anon_sym_AMP] = ACTIONS(1856), + [anon_sym_PIPE] = ACTIONS(1856), + [anon_sym_LT] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1856), + [anon_sym_COLON_COLON] = ACTIONS(1856), + [anon_sym_POUND] = ACTIONS(1856), + [anon_sym_SQUOTE] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1858), + [anon_sym_become] = ACTIONS(1858), + [anon_sym_break] = ACTIONS(1858), + [anon_sym_const] = ACTIONS(1858), + [anon_sym_continue] = ACTIONS(1858), + [anon_sym_default] = ACTIONS(1858), + [anon_sym_enum] = ACTIONS(1858), + [anon_sym_fn] = ACTIONS(1858), + [anon_sym_for] = ACTIONS(1858), + [anon_sym_gen] = ACTIONS(1858), + [anon_sym_if] = ACTIONS(1858), + [anon_sym_impl] = ACTIONS(1858), + [anon_sym_let] = ACTIONS(1858), + [anon_sym_loop] = ACTIONS(1858), + [anon_sym_match] = ACTIONS(1858), + [anon_sym_mod] = ACTIONS(1858), + [anon_sym_pub] = ACTIONS(1858), + [anon_sym_return] = ACTIONS(1858), + [anon_sym_static] = ACTIONS(1858), + [anon_sym_struct] = ACTIONS(1858), + [anon_sym_trait] = ACTIONS(1858), + [anon_sym_type] = ACTIONS(1858), + [anon_sym_union] = ACTIONS(1858), + [anon_sym_unsafe] = ACTIONS(1858), + [anon_sym_use] = ACTIONS(1858), + [anon_sym_while] = ACTIONS(1858), + [anon_sym_extern] = ACTIONS(1858), + [anon_sym_raw] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1858), + [anon_sym_move] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1858), + [sym_integer_literal] = ACTIONS(1856), + [aux_sym_string_literal_token1] = ACTIONS(1856), + [sym_char_literal] = ACTIONS(1856), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1858), + [sym_super] = ACTIONS(1858), + [sym_crate] = ACTIONS(1858), + [sym_metavariable] = ACTIONS(1856), + [sym__raw_string_literal_start] = ACTIONS(1856), + [sym_float_literal] = ACTIONS(1856), }, [STATE(505)] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1860), + [sym_identifier] = ACTIONS(1862), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_macro_rules_BANG] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_LBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_STAR] = ACTIONS(1860), + [anon_sym_u8] = ACTIONS(1862), + [anon_sym_i8] = ACTIONS(1862), + [anon_sym_u16] = ACTIONS(1862), + [anon_sym_i16] = ACTIONS(1862), + [anon_sym_u32] = ACTIONS(1862), + [anon_sym_i32] = ACTIONS(1862), + [anon_sym_u64] = ACTIONS(1862), + [anon_sym_i64] = ACTIONS(1862), + [anon_sym_u128] = ACTIONS(1862), + [anon_sym_i128] = ACTIONS(1862), + [anon_sym_isize] = ACTIONS(1862), + [anon_sym_usize] = ACTIONS(1862), + [anon_sym_f32] = ACTIONS(1862), + [anon_sym_f64] = ACTIONS(1862), + [anon_sym_bool] = ACTIONS(1862), + [anon_sym_str] = ACTIONS(1862), + [anon_sym_char] = ACTIONS(1862), + [anon_sym_DASH] = ACTIONS(1860), + [anon_sym_BANG] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1860), + [anon_sym_COLON_COLON] = ACTIONS(1860), + [anon_sym_POUND] = ACTIONS(1860), + [anon_sym_SQUOTE] = ACTIONS(1862), + [anon_sym_async] = ACTIONS(1862), + [anon_sym_become] = ACTIONS(1862), + [anon_sym_break] = ACTIONS(1862), + [anon_sym_const] = ACTIONS(1862), + [anon_sym_continue] = ACTIONS(1862), + [anon_sym_default] = ACTIONS(1862), + [anon_sym_enum] = ACTIONS(1862), + [anon_sym_fn] = ACTIONS(1862), + [anon_sym_for] = ACTIONS(1862), + [anon_sym_gen] = ACTIONS(1862), + [anon_sym_if] = ACTIONS(1862), + [anon_sym_impl] = ACTIONS(1862), + [anon_sym_let] = ACTIONS(1862), + [anon_sym_loop] = ACTIONS(1862), + [anon_sym_match] = ACTIONS(1862), + [anon_sym_mod] = ACTIONS(1862), + [anon_sym_pub] = ACTIONS(1862), + [anon_sym_return] = ACTIONS(1862), + [anon_sym_static] = ACTIONS(1862), + [anon_sym_struct] = ACTIONS(1862), + [anon_sym_trait] = ACTIONS(1862), + [anon_sym_type] = ACTIONS(1862), + [anon_sym_union] = ACTIONS(1862), + [anon_sym_unsafe] = ACTIONS(1862), + [anon_sym_use] = ACTIONS(1862), + [anon_sym_while] = ACTIONS(1862), + [anon_sym_extern] = ACTIONS(1862), + [anon_sym_raw] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1862), + [anon_sym_move] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(1862), + [sym_integer_literal] = ACTIONS(1860), + [aux_sym_string_literal_token1] = ACTIONS(1860), + [sym_char_literal] = ACTIONS(1860), + [anon_sym_true] = ACTIONS(1862), + [anon_sym_false] = ACTIONS(1862), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1862), + [sym_super] = ACTIONS(1862), + [sym_crate] = ACTIONS(1862), + [sym_metavariable] = ACTIONS(1860), + [sym__raw_string_literal_start] = ACTIONS(1860), + [sym_float_literal] = ACTIONS(1860), }, [STATE(506)] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1864), + [sym_identifier] = ACTIONS(1866), + [anon_sym_SEMI] = ACTIONS(1864), + [anon_sym_macro_rules_BANG] = ACTIONS(1864), + [anon_sym_LPAREN] = ACTIONS(1864), + [anon_sym_LBRACK] = ACTIONS(1864), + [anon_sym_LBRACE] = ACTIONS(1864), + [anon_sym_RBRACE] = ACTIONS(1864), + [anon_sym_STAR] = ACTIONS(1864), + [anon_sym_u8] = ACTIONS(1866), + [anon_sym_i8] = ACTIONS(1866), + [anon_sym_u16] = ACTIONS(1866), + [anon_sym_i16] = ACTIONS(1866), + [anon_sym_u32] = ACTIONS(1866), + [anon_sym_i32] = ACTIONS(1866), + [anon_sym_u64] = ACTIONS(1866), + [anon_sym_i64] = ACTIONS(1866), + [anon_sym_u128] = ACTIONS(1866), + [anon_sym_i128] = ACTIONS(1866), + [anon_sym_isize] = ACTIONS(1866), + [anon_sym_usize] = ACTIONS(1866), + [anon_sym_f32] = ACTIONS(1866), + [anon_sym_f64] = ACTIONS(1866), + [anon_sym_bool] = ACTIONS(1866), + [anon_sym_str] = ACTIONS(1866), + [anon_sym_char] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1864), + [anon_sym_BANG] = ACTIONS(1864), + [anon_sym_AMP] = ACTIONS(1864), + [anon_sym_PIPE] = ACTIONS(1864), + [anon_sym_LT] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1864), + [anon_sym_COLON_COLON] = ACTIONS(1864), + [anon_sym_POUND] = ACTIONS(1864), + [anon_sym_SQUOTE] = ACTIONS(1866), + [anon_sym_async] = ACTIONS(1866), + [anon_sym_become] = ACTIONS(1866), + [anon_sym_break] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(1866), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_default] = ACTIONS(1866), + [anon_sym_enum] = ACTIONS(1866), + [anon_sym_fn] = ACTIONS(1866), + [anon_sym_for] = ACTIONS(1866), + [anon_sym_gen] = ACTIONS(1866), + [anon_sym_if] = ACTIONS(1866), + [anon_sym_impl] = ACTIONS(1866), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_loop] = ACTIONS(1866), + [anon_sym_match] = ACTIONS(1866), + [anon_sym_mod] = ACTIONS(1866), + [anon_sym_pub] = ACTIONS(1866), + [anon_sym_return] = ACTIONS(1866), + [anon_sym_static] = ACTIONS(1866), + [anon_sym_struct] = ACTIONS(1866), + [anon_sym_trait] = ACTIONS(1866), + [anon_sym_type] = ACTIONS(1866), + [anon_sym_union] = ACTIONS(1866), + [anon_sym_unsafe] = ACTIONS(1866), + [anon_sym_use] = ACTIONS(1866), + [anon_sym_while] = ACTIONS(1866), + [anon_sym_extern] = ACTIONS(1866), + [anon_sym_raw] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1866), + [anon_sym_move] = ACTIONS(1866), + [anon_sym_try] = ACTIONS(1866), + [sym_integer_literal] = ACTIONS(1864), + [aux_sym_string_literal_token1] = ACTIONS(1864), + [sym_char_literal] = ACTIONS(1864), + [anon_sym_true] = ACTIONS(1866), + [anon_sym_false] = ACTIONS(1866), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1866), + [sym_super] = ACTIONS(1866), + [sym_crate] = ACTIONS(1866), + [sym_metavariable] = ACTIONS(1864), + [sym__raw_string_literal_start] = ACTIONS(1864), + [sym_float_literal] = ACTIONS(1864), }, [STATE(507)] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1868), + [sym_identifier] = ACTIONS(1870), + [anon_sym_SEMI] = ACTIONS(1868), + [anon_sym_macro_rules_BANG] = ACTIONS(1868), + [anon_sym_LPAREN] = ACTIONS(1868), + [anon_sym_LBRACK] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(1868), + [anon_sym_RBRACE] = ACTIONS(1868), + [anon_sym_STAR] = ACTIONS(1868), + [anon_sym_u8] = ACTIONS(1870), + [anon_sym_i8] = ACTIONS(1870), + [anon_sym_u16] = ACTIONS(1870), + [anon_sym_i16] = ACTIONS(1870), + [anon_sym_u32] = ACTIONS(1870), + [anon_sym_i32] = ACTIONS(1870), + [anon_sym_u64] = ACTIONS(1870), + [anon_sym_i64] = ACTIONS(1870), + [anon_sym_u128] = ACTIONS(1870), + [anon_sym_i128] = ACTIONS(1870), + [anon_sym_isize] = ACTIONS(1870), + [anon_sym_usize] = ACTIONS(1870), + [anon_sym_f32] = ACTIONS(1870), + [anon_sym_f64] = ACTIONS(1870), + [anon_sym_bool] = ACTIONS(1870), + [anon_sym_str] = ACTIONS(1870), + [anon_sym_char] = ACTIONS(1870), + [anon_sym_DASH] = ACTIONS(1868), + [anon_sym_BANG] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(1868), + [anon_sym_LT] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(1868), + [anon_sym_POUND] = ACTIONS(1868), + [anon_sym_SQUOTE] = ACTIONS(1870), + [anon_sym_async] = ACTIONS(1870), + [anon_sym_become] = ACTIONS(1870), + [anon_sym_break] = ACTIONS(1870), + [anon_sym_const] = ACTIONS(1870), + [anon_sym_continue] = ACTIONS(1870), + [anon_sym_default] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1870), + [anon_sym_fn] = ACTIONS(1870), + [anon_sym_for] = ACTIONS(1870), + [anon_sym_gen] = ACTIONS(1870), + [anon_sym_if] = ACTIONS(1870), + [anon_sym_impl] = ACTIONS(1870), + [anon_sym_let] = ACTIONS(1870), + [anon_sym_loop] = ACTIONS(1870), + [anon_sym_match] = ACTIONS(1870), + [anon_sym_mod] = ACTIONS(1870), + [anon_sym_pub] = ACTIONS(1870), + [anon_sym_return] = ACTIONS(1870), + [anon_sym_static] = ACTIONS(1870), + [anon_sym_struct] = ACTIONS(1870), + [anon_sym_trait] = ACTIONS(1870), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_union] = ACTIONS(1870), + [anon_sym_unsafe] = ACTIONS(1870), + [anon_sym_use] = ACTIONS(1870), + [anon_sym_while] = ACTIONS(1870), + [anon_sym_extern] = ACTIONS(1870), + [anon_sym_raw] = ACTIONS(1870), + [anon_sym_yield] = ACTIONS(1870), + [anon_sym_move] = ACTIONS(1870), + [anon_sym_try] = ACTIONS(1870), + [sym_integer_literal] = ACTIONS(1868), + [aux_sym_string_literal_token1] = ACTIONS(1868), + [sym_char_literal] = ACTIONS(1868), + [anon_sym_true] = ACTIONS(1870), + [anon_sym_false] = ACTIONS(1870), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1870), + [sym_super] = ACTIONS(1870), + [sym_crate] = ACTIONS(1870), + [sym_metavariable] = ACTIONS(1868), + [sym__raw_string_literal_start] = ACTIONS(1868), + [sym_float_literal] = ACTIONS(1868), }, [STATE(508)] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_become] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_gen] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_raw] = ACTIONS(1874), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym__raw_string_literal_start] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), }, [STATE(509)] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_become] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_gen] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_raw] = ACTIONS(1878), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym__raw_string_literal_start] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), }, [STATE(510)] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_become] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_gen] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_raw] = ACTIONS(1882), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym__raw_string_literal_start] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), }, [STATE(511)] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_become] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_gen] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_raw] = ACTIONS(1886), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym__raw_string_literal_start] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), }, [STATE(512)] = { [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_become] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_gen] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_raw] = ACTIONS(1890), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym__raw_string_literal_start] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), }, [STATE(513)] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_become] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_gen] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_raw] = ACTIONS(1894), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym__raw_string_literal_start] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), }, [STATE(514)] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_become] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_gen] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_raw] = ACTIONS(1898), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym__raw_string_literal_start] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), }, [STATE(515)] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_become] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_gen] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_raw] = ACTIONS(1902), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym__raw_string_literal_start] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), }, [STATE(516)] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_become] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_gen] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_raw] = ACTIONS(1906), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym__raw_string_literal_start] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), }, [STATE(517)] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_become] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_gen] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_raw] = ACTIONS(1910), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym__raw_string_literal_start] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), }, [STATE(518)] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_become] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_gen] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_raw] = ACTIONS(1914), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym__raw_string_literal_start] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), }, [STATE(519)] = { [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_become] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_gen] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_raw] = ACTIONS(1918), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym__raw_string_literal_start] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), }, [STATE(520)] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_become] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_gen] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_raw] = ACTIONS(1922), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [anon_sym_try] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym__raw_string_literal_start] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), }, [STATE(521)] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_become] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_gen] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_raw] = ACTIONS(1926), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [anon_sym_try] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym__raw_string_literal_start] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), }, [STATE(522)] = { [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_become] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_gen] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_raw] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym__raw_string_literal_start] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), }, [STATE(523)] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_become] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_gen] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_raw] = ACTIONS(1934), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym__raw_string_literal_start] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), }, [STATE(524)] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_become] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_gen] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_raw] = ACTIONS(1938), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym__raw_string_literal_start] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), }, [STATE(525)] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_become] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_gen] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_raw] = ACTIONS(1942), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym__raw_string_literal_start] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), }, [STATE(526)] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_become] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_gen] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_raw] = ACTIONS(1946), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym__raw_string_literal_start] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), }, [STATE(527)] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_become] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_gen] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_raw] = ACTIONS(1950), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym__raw_string_literal_start] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), }, [STATE(528)] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_become] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_gen] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_raw] = ACTIONS(1954), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym__raw_string_literal_start] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), }, [STATE(529)] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1958), + [anon_sym_i8] = ACTIONS(1958), + [anon_sym_u16] = ACTIONS(1958), + [anon_sym_i16] = ACTIONS(1958), + [anon_sym_u32] = ACTIONS(1958), + [anon_sym_i32] = ACTIONS(1958), + [anon_sym_u64] = ACTIONS(1958), + [anon_sym_i64] = ACTIONS(1958), + [anon_sym_u128] = ACTIONS(1958), + [anon_sym_i128] = ACTIONS(1958), + [anon_sym_isize] = ACTIONS(1958), + [anon_sym_usize] = ACTIONS(1958), + [anon_sym_f32] = ACTIONS(1958), + [anon_sym_f64] = ACTIONS(1958), + [anon_sym_bool] = ACTIONS(1958), + [anon_sym_str] = ACTIONS(1958), + [anon_sym_char] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_DOT_DOT] = ACTIONS(1956), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_become] = ACTIONS(1958), + [anon_sym_break] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_continue] = ACTIONS(1958), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_fn] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1958), + [anon_sym_gen] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_impl] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1958), + [anon_sym_loop] = ACTIONS(1958), + [anon_sym_match] = ACTIONS(1958), + [anon_sym_mod] = ACTIONS(1958), + [anon_sym_pub] = ACTIONS(1958), + [anon_sym_return] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_trait] = ACTIONS(1958), + [anon_sym_type] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym_raw] = ACTIONS(1958), + [anon_sym_yield] = ACTIONS(1958), + [anon_sym_move] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1958), + [sym_integer_literal] = ACTIONS(1956), + [aux_sym_string_literal_token1] = ACTIONS(1956), + [sym_char_literal] = ACTIONS(1956), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1958), + [sym_super] = ACTIONS(1958), + [sym_crate] = ACTIONS(1958), + [sym_metavariable] = ACTIONS(1956), + [sym__raw_string_literal_start] = ACTIONS(1956), + [sym_float_literal] = ACTIONS(1956), }, [STATE(530)] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_macro_rules_BANG] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_become] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_gen] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_raw] = ACTIONS(1962), + [anon_sym_yield] = ACTIONS(1962), + [anon_sym_move] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1960), + [aux_sym_string_literal_token1] = ACTIONS(1960), + [sym_char_literal] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1960), + [sym__raw_string_literal_start] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1960), }, [STATE(531)] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_become] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_gen] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_raw] = ACTIONS(1966), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym__raw_string_literal_start] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), }, [STATE(532)] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_become] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_gen] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_raw] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym__raw_string_literal_start] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), }, [STATE(533)] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_become] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_gen] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_raw] = ACTIONS(1974), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym__raw_string_literal_start] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), }, [STATE(534)] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_become] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_gen] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_raw] = ACTIONS(1978), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym__raw_string_literal_start] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), }, [STATE(535)] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_become] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_gen] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_raw] = ACTIONS(1982), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym__raw_string_literal_start] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), }, [STATE(536)] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_become] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_gen] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_raw] = ACTIONS(1986), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym__raw_string_literal_start] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), }, [STATE(537)] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_become] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_gen] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_raw] = ACTIONS(1990), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym__raw_string_literal_start] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), }, [STATE(538)] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_become] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_gen] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_raw] = ACTIONS(1994), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym__raw_string_literal_start] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), }, [STATE(539)] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_become] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_gen] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_raw] = ACTIONS(1998), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym__raw_string_literal_start] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), }, [STATE(540)] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_become] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_gen] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_raw] = ACTIONS(2002), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [anon_sym_try] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2000), + [sym__raw_string_literal_start] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), }, [STATE(541)] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_macro_rules_BANG] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_u8] = ACTIONS(2006), + [anon_sym_i8] = ACTIONS(2006), + [anon_sym_u16] = ACTIONS(2006), + [anon_sym_i16] = ACTIONS(2006), + [anon_sym_u32] = ACTIONS(2006), + [anon_sym_i32] = ACTIONS(2006), + [anon_sym_u64] = ACTIONS(2006), + [anon_sym_i64] = ACTIONS(2006), + [anon_sym_u128] = ACTIONS(2006), + [anon_sym_i128] = ACTIONS(2006), + [anon_sym_isize] = ACTIONS(2006), + [anon_sym_usize] = ACTIONS(2006), + [anon_sym_f32] = ACTIONS(2006), + [anon_sym_f64] = ACTIONS(2006), + [anon_sym_bool] = ACTIONS(2006), + [anon_sym_str] = ACTIONS(2006), + [anon_sym_char] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_become] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_fn] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_gen] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_impl] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_mod] = ACTIONS(2006), + [anon_sym_pub] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2006), + [anon_sym_type] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2006), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_raw] = ACTIONS(2006), + [anon_sym_yield] = ACTIONS(2006), + [anon_sym_move] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2004), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2006), + [sym_super] = ACTIONS(2006), + [sym_crate] = ACTIONS(2006), + [sym_metavariable] = ACTIONS(2004), + [sym__raw_string_literal_start] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), }, [STATE(542)] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_become] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_gen] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_raw] = ACTIONS(2010), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym__raw_string_literal_start] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), }, [STATE(543)] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_become] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_gen] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_raw] = ACTIONS(2014), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym__raw_string_literal_start] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), }, [STATE(544)] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_become] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_gen] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_raw] = ACTIONS(2018), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym__raw_string_literal_start] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), }, [STATE(545)] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_become] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_gen] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_raw] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym__raw_string_literal_start] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), }, [STATE(546)] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_become] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_gen] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_raw] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym__raw_string_literal_start] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), }, [STATE(547)] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_become] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_gen] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_raw] = ACTIONS(2030), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym__raw_string_literal_start] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_macro_rules_BANG] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_become] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_gen] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_raw] = ACTIONS(2034), + [anon_sym_yield] = ACTIONS(2034), + [anon_sym_move] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2032), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2032), + [sym__raw_string_literal_start] = ACTIONS(2032), + [sym_float_literal] = ACTIONS(2032), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_become] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_gen] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_raw] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym__raw_string_literal_start] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), }, [STATE(550)] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_become] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_raw] = ACTIONS(2042), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym__raw_string_literal_start] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_become] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_gen] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_raw] = ACTIONS(2046), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym__raw_string_literal_start] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_become] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_gen] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_raw] = ACTIONS(2050), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym__raw_string_literal_start] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_become] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_gen] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_raw] = ACTIONS(2054), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym__raw_string_literal_start] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_become] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_gen] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_raw] = ACTIONS(2058), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym__raw_string_literal_start] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_become] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_gen] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_raw] = ACTIONS(2062), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym__raw_string_literal_start] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_become] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_gen] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_raw] = ACTIONS(2066), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym__raw_string_literal_start] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_become] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_gen] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_raw] = ACTIONS(2070), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym__raw_string_literal_start] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2072), + [sym_identifier] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2072), + [anon_sym_macro_rules_BANG] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_LBRACK] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(2074), + [anon_sym_i8] = ACTIONS(2074), + [anon_sym_u16] = ACTIONS(2074), + [anon_sym_i16] = ACTIONS(2074), + [anon_sym_u32] = ACTIONS(2074), + [anon_sym_i32] = ACTIONS(2074), + [anon_sym_u64] = ACTIONS(2074), + [anon_sym_i64] = ACTIONS(2074), + [anon_sym_u128] = ACTIONS(2074), + [anon_sym_i128] = ACTIONS(2074), + [anon_sym_isize] = ACTIONS(2074), + [anon_sym_usize] = ACTIONS(2074), + [anon_sym_f32] = ACTIONS(2074), + [anon_sym_f64] = ACTIONS(2074), + [anon_sym_bool] = ACTIONS(2074), + [anon_sym_str] = ACTIONS(2074), + [anon_sym_char] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [anon_sym_BANG] = ACTIONS(2072), + [anon_sym_AMP] = ACTIONS(2072), + [anon_sym_PIPE] = ACTIONS(2072), + [anon_sym_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_COLON_COLON] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2072), + [anon_sym_SQUOTE] = ACTIONS(2074), + [anon_sym_async] = ACTIONS(2074), + [anon_sym_become] = ACTIONS(2074), + [anon_sym_break] = ACTIONS(2074), + [anon_sym_const] = ACTIONS(2074), + [anon_sym_continue] = ACTIONS(2074), + [anon_sym_default] = ACTIONS(2074), + [anon_sym_enum] = ACTIONS(2074), + [anon_sym_fn] = ACTIONS(2074), + [anon_sym_for] = ACTIONS(2074), + [anon_sym_gen] = ACTIONS(2074), + [anon_sym_if] = ACTIONS(2074), + [anon_sym_impl] = ACTIONS(2074), + [anon_sym_let] = ACTIONS(2074), + [anon_sym_loop] = ACTIONS(2074), + [anon_sym_match] = ACTIONS(2074), + [anon_sym_mod] = ACTIONS(2074), + [anon_sym_pub] = ACTIONS(2074), + [anon_sym_return] = ACTIONS(2074), + [anon_sym_static] = ACTIONS(2074), + [anon_sym_struct] = ACTIONS(2074), + [anon_sym_trait] = ACTIONS(2074), + [anon_sym_type] = ACTIONS(2074), + [anon_sym_union] = ACTIONS(2074), + [anon_sym_unsafe] = ACTIONS(2074), + [anon_sym_use] = ACTIONS(2074), + [anon_sym_while] = ACTIONS(2074), + [anon_sym_extern] = ACTIONS(2074), + [anon_sym_raw] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2074), + [anon_sym_move] = ACTIONS(2074), + [anon_sym_try] = ACTIONS(2074), + [sym_integer_literal] = ACTIONS(2072), + [aux_sym_string_literal_token1] = ACTIONS(2072), + [sym_char_literal] = ACTIONS(2072), + [anon_sym_true] = ACTIONS(2074), + [anon_sym_false] = ACTIONS(2074), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2074), + [sym_super] = ACTIONS(2074), + [sym_crate] = ACTIONS(2074), + [sym_metavariable] = ACTIONS(2072), + [sym__raw_string_literal_start] = ACTIONS(2072), + [sym_float_literal] = ACTIONS(2072), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2076), + [sym_identifier] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2076), + [anon_sym_macro_rules_BANG] = ACTIONS(2076), + [anon_sym_LPAREN] = ACTIONS(2076), + [anon_sym_LBRACK] = ACTIONS(2076), + [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_RBRACE] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2076), + [anon_sym_u8] = ACTIONS(2078), + [anon_sym_i8] = ACTIONS(2078), + [anon_sym_u16] = ACTIONS(2078), + [anon_sym_i16] = ACTIONS(2078), + [anon_sym_u32] = ACTIONS(2078), + [anon_sym_i32] = ACTIONS(2078), + [anon_sym_u64] = ACTIONS(2078), + [anon_sym_i64] = ACTIONS(2078), + [anon_sym_u128] = ACTIONS(2078), + [anon_sym_i128] = ACTIONS(2078), + [anon_sym_isize] = ACTIONS(2078), + [anon_sym_usize] = ACTIONS(2078), + [anon_sym_f32] = ACTIONS(2078), + [anon_sym_f64] = ACTIONS(2078), + [anon_sym_bool] = ACTIONS(2078), + [anon_sym_str] = ACTIONS(2078), + [anon_sym_char] = ACTIONS(2078), + [anon_sym_DASH] = ACTIONS(2076), + [anon_sym_BANG] = ACTIONS(2076), + [anon_sym_AMP] = ACTIONS(2076), + [anon_sym_PIPE] = ACTIONS(2076), + [anon_sym_LT] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_POUND] = ACTIONS(2076), + [anon_sym_SQUOTE] = ACTIONS(2078), + [anon_sym_async] = ACTIONS(2078), + [anon_sym_become] = ACTIONS(2078), + [anon_sym_break] = ACTIONS(2078), + [anon_sym_const] = ACTIONS(2078), + [anon_sym_continue] = ACTIONS(2078), + [anon_sym_default] = ACTIONS(2078), + [anon_sym_enum] = ACTIONS(2078), + [anon_sym_fn] = ACTIONS(2078), + [anon_sym_for] = ACTIONS(2078), + [anon_sym_gen] = ACTIONS(2078), + [anon_sym_if] = ACTIONS(2078), + [anon_sym_impl] = ACTIONS(2078), + [anon_sym_let] = ACTIONS(2078), + [anon_sym_loop] = ACTIONS(2078), + [anon_sym_match] = ACTIONS(2078), + [anon_sym_mod] = ACTIONS(2078), + [anon_sym_pub] = ACTIONS(2078), + [anon_sym_return] = ACTIONS(2078), + [anon_sym_static] = ACTIONS(2078), + [anon_sym_struct] = ACTIONS(2078), + [anon_sym_trait] = ACTIONS(2078), + [anon_sym_type] = ACTIONS(2078), + [anon_sym_union] = ACTIONS(2078), + [anon_sym_unsafe] = ACTIONS(2078), + [anon_sym_use] = ACTIONS(2078), + [anon_sym_while] = ACTIONS(2078), + [anon_sym_extern] = ACTIONS(2078), + [anon_sym_raw] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2078), + [anon_sym_move] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2078), + [sym_integer_literal] = ACTIONS(2076), + [aux_sym_string_literal_token1] = ACTIONS(2076), + [sym_char_literal] = ACTIONS(2076), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2078), + [sym_super] = ACTIONS(2078), + [sym_crate] = ACTIONS(2078), + [sym_metavariable] = ACTIONS(2076), + [sym__raw_string_literal_start] = ACTIONS(2076), + [sym_float_literal] = ACTIONS(2076), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2080), + [sym_identifier] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2080), + [anon_sym_macro_rules_BANG] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACK] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_STAR] = ACTIONS(2080), + [anon_sym_u8] = ACTIONS(2082), + [anon_sym_i8] = ACTIONS(2082), + [anon_sym_u16] = ACTIONS(2082), + [anon_sym_i16] = ACTIONS(2082), + [anon_sym_u32] = ACTIONS(2082), + [anon_sym_i32] = ACTIONS(2082), + [anon_sym_u64] = ACTIONS(2082), + [anon_sym_i64] = ACTIONS(2082), + [anon_sym_u128] = ACTIONS(2082), + [anon_sym_i128] = ACTIONS(2082), + [anon_sym_isize] = ACTIONS(2082), + [anon_sym_usize] = ACTIONS(2082), + [anon_sym_f32] = ACTIONS(2082), + [anon_sym_f64] = ACTIONS(2082), + [anon_sym_bool] = ACTIONS(2082), + [anon_sym_str] = ACTIONS(2082), + [anon_sym_char] = ACTIONS(2082), + [anon_sym_DASH] = ACTIONS(2080), + [anon_sym_BANG] = ACTIONS(2080), + [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_COLON_COLON] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(2080), + [anon_sym_SQUOTE] = ACTIONS(2082), + [anon_sym_async] = ACTIONS(2082), + [anon_sym_become] = ACTIONS(2082), + [anon_sym_break] = ACTIONS(2082), + [anon_sym_const] = ACTIONS(2082), + [anon_sym_continue] = ACTIONS(2082), + [anon_sym_default] = ACTIONS(2082), + [anon_sym_enum] = ACTIONS(2082), + [anon_sym_fn] = ACTIONS(2082), + [anon_sym_for] = ACTIONS(2082), + [anon_sym_gen] = ACTIONS(2082), + [anon_sym_if] = ACTIONS(2082), + [anon_sym_impl] = ACTIONS(2082), + [anon_sym_let] = ACTIONS(2082), + [anon_sym_loop] = ACTIONS(2082), + [anon_sym_match] = ACTIONS(2082), + [anon_sym_mod] = ACTIONS(2082), + [anon_sym_pub] = ACTIONS(2082), + [anon_sym_return] = ACTIONS(2082), + [anon_sym_static] = ACTIONS(2082), + [anon_sym_struct] = ACTIONS(2082), + [anon_sym_trait] = ACTIONS(2082), + [anon_sym_type] = ACTIONS(2082), + [anon_sym_union] = ACTIONS(2082), + [anon_sym_unsafe] = ACTIONS(2082), + [anon_sym_use] = ACTIONS(2082), + [anon_sym_while] = ACTIONS(2082), + [anon_sym_extern] = ACTIONS(2082), + [anon_sym_raw] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2082), + [anon_sym_move] = ACTIONS(2082), + [anon_sym_try] = ACTIONS(2082), + [sym_integer_literal] = ACTIONS(2080), + [aux_sym_string_literal_token1] = ACTIONS(2080), + [sym_char_literal] = ACTIONS(2080), + [anon_sym_true] = ACTIONS(2082), + [anon_sym_false] = ACTIONS(2082), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2082), + [sym_super] = ACTIONS(2082), + [sym_crate] = ACTIONS(2082), + [sym_metavariable] = ACTIONS(2080), + [sym__raw_string_literal_start] = ACTIONS(2080), + [sym_float_literal] = ACTIONS(2080), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2084), + [sym_identifier] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2084), + [anon_sym_macro_rules_BANG] = ACTIONS(2084), + [anon_sym_LPAREN] = ACTIONS(2084), + [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_LBRACE] = ACTIONS(2084), + [anon_sym_RBRACE] = ACTIONS(2084), + [anon_sym_STAR] = ACTIONS(2084), + [anon_sym_u8] = ACTIONS(2086), + [anon_sym_i8] = ACTIONS(2086), + [anon_sym_u16] = ACTIONS(2086), + [anon_sym_i16] = ACTIONS(2086), + [anon_sym_u32] = ACTIONS(2086), + [anon_sym_i32] = ACTIONS(2086), + [anon_sym_u64] = ACTIONS(2086), + [anon_sym_i64] = ACTIONS(2086), + [anon_sym_u128] = ACTIONS(2086), + [anon_sym_i128] = ACTIONS(2086), + [anon_sym_isize] = ACTIONS(2086), + [anon_sym_usize] = ACTIONS(2086), + [anon_sym_f32] = ACTIONS(2086), + [anon_sym_f64] = ACTIONS(2086), + [anon_sym_bool] = ACTIONS(2086), + [anon_sym_str] = ACTIONS(2086), + [anon_sym_char] = ACTIONS(2086), + [anon_sym_DASH] = ACTIONS(2084), + [anon_sym_BANG] = ACTIONS(2084), + [anon_sym_AMP] = ACTIONS(2084), + [anon_sym_PIPE] = ACTIONS(2084), + [anon_sym_LT] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2084), + [anon_sym_COLON_COLON] = ACTIONS(2084), + [anon_sym_POUND] = ACTIONS(2084), + [anon_sym_SQUOTE] = ACTIONS(2086), + [anon_sym_async] = ACTIONS(2086), + [anon_sym_become] = ACTIONS(2086), + [anon_sym_break] = ACTIONS(2086), + [anon_sym_const] = ACTIONS(2086), + [anon_sym_continue] = ACTIONS(2086), + [anon_sym_default] = ACTIONS(2086), + [anon_sym_enum] = ACTIONS(2086), + [anon_sym_fn] = ACTIONS(2086), + [anon_sym_for] = ACTIONS(2086), + [anon_sym_gen] = ACTIONS(2086), + [anon_sym_if] = ACTIONS(2086), + [anon_sym_impl] = ACTIONS(2086), + [anon_sym_let] = ACTIONS(2086), + [anon_sym_loop] = ACTIONS(2086), + [anon_sym_match] = ACTIONS(2086), + [anon_sym_mod] = ACTIONS(2086), + [anon_sym_pub] = ACTIONS(2086), + [anon_sym_return] = ACTIONS(2086), + [anon_sym_static] = ACTIONS(2086), + [anon_sym_struct] = ACTIONS(2086), + [anon_sym_trait] = ACTIONS(2086), + [anon_sym_type] = ACTIONS(2086), + [anon_sym_union] = ACTIONS(2086), + [anon_sym_unsafe] = ACTIONS(2086), + [anon_sym_use] = ACTIONS(2086), + [anon_sym_while] = ACTIONS(2086), + [anon_sym_extern] = ACTIONS(2086), + [anon_sym_raw] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2086), + [anon_sym_move] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2086), + [sym_integer_literal] = ACTIONS(2084), + [aux_sym_string_literal_token1] = ACTIONS(2084), + [sym_char_literal] = ACTIONS(2084), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2086), + [sym_super] = ACTIONS(2086), + [sym_crate] = ACTIONS(2086), + [sym_metavariable] = ACTIONS(2084), + [sym__raw_string_literal_start] = ACTIONS(2084), + [sym_float_literal] = ACTIONS(2084), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2088), + [sym_identifier] = ACTIONS(2090), + [anon_sym_SEMI] = ACTIONS(2088), + [anon_sym_macro_rules_BANG] = ACTIONS(2088), + [anon_sym_LPAREN] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LBRACE] = ACTIONS(2088), + [anon_sym_RBRACE] = ACTIONS(2088), + [anon_sym_STAR] = ACTIONS(2088), + [anon_sym_u8] = ACTIONS(2090), + [anon_sym_i8] = ACTIONS(2090), + [anon_sym_u16] = ACTIONS(2090), + [anon_sym_i16] = ACTIONS(2090), + [anon_sym_u32] = ACTIONS(2090), + [anon_sym_i32] = ACTIONS(2090), + [anon_sym_u64] = ACTIONS(2090), + [anon_sym_i64] = ACTIONS(2090), + [anon_sym_u128] = ACTIONS(2090), + [anon_sym_i128] = ACTIONS(2090), + [anon_sym_isize] = ACTIONS(2090), + [anon_sym_usize] = ACTIONS(2090), + [anon_sym_f32] = ACTIONS(2090), + [anon_sym_f64] = ACTIONS(2090), + [anon_sym_bool] = ACTIONS(2090), + [anon_sym_str] = ACTIONS(2090), + [anon_sym_char] = ACTIONS(2090), + [anon_sym_DASH] = ACTIONS(2088), + [anon_sym_BANG] = ACTIONS(2088), + [anon_sym_AMP] = ACTIONS(2088), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_LT] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2088), + [anon_sym_COLON_COLON] = ACTIONS(2088), + [anon_sym_POUND] = ACTIONS(2088), + [anon_sym_SQUOTE] = ACTIONS(2090), + [anon_sym_async] = ACTIONS(2090), + [anon_sym_become] = ACTIONS(2090), + [anon_sym_break] = ACTIONS(2090), + [anon_sym_const] = ACTIONS(2090), + [anon_sym_continue] = ACTIONS(2090), + [anon_sym_default] = ACTIONS(2090), + [anon_sym_enum] = ACTIONS(2090), + [anon_sym_fn] = ACTIONS(2090), + [anon_sym_for] = ACTIONS(2090), + [anon_sym_gen] = ACTIONS(2090), + [anon_sym_if] = ACTIONS(2090), + [anon_sym_impl] = ACTIONS(2090), + [anon_sym_let] = ACTIONS(2090), + [anon_sym_loop] = ACTIONS(2090), + [anon_sym_match] = ACTIONS(2090), + [anon_sym_mod] = ACTIONS(2090), + [anon_sym_pub] = ACTIONS(2090), + [anon_sym_return] = ACTIONS(2090), + [anon_sym_static] = ACTIONS(2090), + [anon_sym_struct] = ACTIONS(2090), + [anon_sym_trait] = ACTIONS(2090), + [anon_sym_type] = ACTIONS(2090), + [anon_sym_union] = ACTIONS(2090), + [anon_sym_unsafe] = ACTIONS(2090), + [anon_sym_use] = ACTIONS(2090), + [anon_sym_while] = ACTIONS(2090), + [anon_sym_extern] = ACTIONS(2090), + [anon_sym_raw] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2090), + [anon_sym_move] = ACTIONS(2090), + [anon_sym_try] = ACTIONS(2090), + [sym_integer_literal] = ACTIONS(2088), + [aux_sym_string_literal_token1] = ACTIONS(2088), + [sym_char_literal] = ACTIONS(2088), + [anon_sym_true] = ACTIONS(2090), + [anon_sym_false] = ACTIONS(2090), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2090), + [sym_super] = ACTIONS(2090), + [sym_crate] = ACTIONS(2090), + [sym_metavariable] = ACTIONS(2088), + [sym__raw_string_literal_start] = ACTIONS(2088), + [sym_float_literal] = ACTIONS(2088), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2092), + [sym_identifier] = ACTIONS(2094), + [anon_sym_SEMI] = ACTIONS(2092), + [anon_sym_macro_rules_BANG] = ACTIONS(2092), + [anon_sym_LPAREN] = ACTIONS(2092), + [anon_sym_LBRACK] = ACTIONS(2092), + [anon_sym_LBRACE] = ACTIONS(2092), + [anon_sym_RBRACE] = ACTIONS(2092), + [anon_sym_STAR] = ACTIONS(2092), + [anon_sym_u8] = ACTIONS(2094), + [anon_sym_i8] = ACTIONS(2094), + [anon_sym_u16] = ACTIONS(2094), + [anon_sym_i16] = ACTIONS(2094), + [anon_sym_u32] = ACTIONS(2094), + [anon_sym_i32] = ACTIONS(2094), + [anon_sym_u64] = ACTIONS(2094), + [anon_sym_i64] = ACTIONS(2094), + [anon_sym_u128] = ACTIONS(2094), + [anon_sym_i128] = ACTIONS(2094), + [anon_sym_isize] = ACTIONS(2094), + [anon_sym_usize] = ACTIONS(2094), + [anon_sym_f32] = ACTIONS(2094), + [anon_sym_f64] = ACTIONS(2094), + [anon_sym_bool] = ACTIONS(2094), + [anon_sym_str] = ACTIONS(2094), + [anon_sym_char] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2092), + [anon_sym_BANG] = ACTIONS(2092), + [anon_sym_AMP] = ACTIONS(2092), + [anon_sym_PIPE] = ACTIONS(2092), + [anon_sym_LT] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2092), + [anon_sym_COLON_COLON] = ACTIONS(2092), + [anon_sym_POUND] = ACTIONS(2092), + [anon_sym_SQUOTE] = ACTIONS(2094), + [anon_sym_async] = ACTIONS(2094), + [anon_sym_become] = ACTIONS(2094), + [anon_sym_break] = ACTIONS(2094), + [anon_sym_const] = ACTIONS(2094), + [anon_sym_continue] = ACTIONS(2094), + [anon_sym_default] = ACTIONS(2094), + [anon_sym_enum] = ACTIONS(2094), + [anon_sym_fn] = ACTIONS(2094), + [anon_sym_for] = ACTIONS(2094), + [anon_sym_gen] = ACTIONS(2094), + [anon_sym_if] = ACTIONS(2094), + [anon_sym_impl] = ACTIONS(2094), + [anon_sym_let] = ACTIONS(2094), + [anon_sym_loop] = ACTIONS(2094), + [anon_sym_match] = ACTIONS(2094), + [anon_sym_mod] = ACTIONS(2094), + [anon_sym_pub] = ACTIONS(2094), + [anon_sym_return] = ACTIONS(2094), + [anon_sym_static] = ACTIONS(2094), + [anon_sym_struct] = ACTIONS(2094), + [anon_sym_trait] = ACTIONS(2094), + [anon_sym_type] = ACTIONS(2094), + [anon_sym_union] = ACTIONS(2094), + [anon_sym_unsafe] = ACTIONS(2094), + [anon_sym_use] = ACTIONS(2094), + [anon_sym_while] = ACTIONS(2094), + [anon_sym_extern] = ACTIONS(2094), + [anon_sym_raw] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2094), + [anon_sym_move] = ACTIONS(2094), + [anon_sym_try] = ACTIONS(2094), + [sym_integer_literal] = ACTIONS(2092), + [aux_sym_string_literal_token1] = ACTIONS(2092), + [sym_char_literal] = ACTIONS(2092), + [anon_sym_true] = ACTIONS(2094), + [anon_sym_false] = ACTIONS(2094), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2094), + [sym_super] = ACTIONS(2094), + [sym_crate] = ACTIONS(2094), + [sym_metavariable] = ACTIONS(2092), + [sym__raw_string_literal_start] = ACTIONS(2092), + [sym_float_literal] = ACTIONS(2092), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2096), + [sym_identifier] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_macro_rules_BANG] = ACTIONS(2096), + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_RBRACE] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2096), + [anon_sym_u8] = ACTIONS(2098), + [anon_sym_i8] = ACTIONS(2098), + [anon_sym_u16] = ACTIONS(2098), + [anon_sym_i16] = ACTIONS(2098), + [anon_sym_u32] = ACTIONS(2098), + [anon_sym_i32] = ACTIONS(2098), + [anon_sym_u64] = ACTIONS(2098), + [anon_sym_i64] = ACTIONS(2098), + [anon_sym_u128] = ACTIONS(2098), + [anon_sym_i128] = ACTIONS(2098), + [anon_sym_isize] = ACTIONS(2098), + [anon_sym_usize] = ACTIONS(2098), + [anon_sym_f32] = ACTIONS(2098), + [anon_sym_f64] = ACTIONS(2098), + [anon_sym_bool] = ACTIONS(2098), + [anon_sym_str] = ACTIONS(2098), + [anon_sym_char] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2096), + [anon_sym_BANG] = ACTIONS(2096), + [anon_sym_AMP] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_LT] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_POUND] = ACTIONS(2096), + [anon_sym_SQUOTE] = ACTIONS(2098), + [anon_sym_async] = ACTIONS(2098), + [anon_sym_become] = ACTIONS(2098), + [anon_sym_break] = ACTIONS(2098), + [anon_sym_const] = ACTIONS(2098), + [anon_sym_continue] = ACTIONS(2098), + [anon_sym_default] = ACTIONS(2098), + [anon_sym_enum] = ACTIONS(2098), + [anon_sym_fn] = ACTIONS(2098), + [anon_sym_for] = ACTIONS(2098), + [anon_sym_gen] = ACTIONS(2098), + [anon_sym_if] = ACTIONS(2098), + [anon_sym_impl] = ACTIONS(2098), + [anon_sym_let] = ACTIONS(2098), + [anon_sym_loop] = ACTIONS(2098), + [anon_sym_match] = ACTIONS(2098), + [anon_sym_mod] = ACTIONS(2098), + [anon_sym_pub] = ACTIONS(2098), + [anon_sym_return] = ACTIONS(2098), + [anon_sym_static] = ACTIONS(2098), + [anon_sym_struct] = ACTIONS(2098), + [anon_sym_trait] = ACTIONS(2098), + [anon_sym_type] = ACTIONS(2098), + [anon_sym_union] = ACTIONS(2098), + [anon_sym_unsafe] = ACTIONS(2098), + [anon_sym_use] = ACTIONS(2098), + [anon_sym_while] = ACTIONS(2098), + [anon_sym_extern] = ACTIONS(2098), + [anon_sym_raw] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2098), + [anon_sym_move] = ACTIONS(2098), + [anon_sym_try] = ACTIONS(2098), + [sym_integer_literal] = ACTIONS(2096), + [aux_sym_string_literal_token1] = ACTIONS(2096), + [sym_char_literal] = ACTIONS(2096), + [anon_sym_true] = ACTIONS(2098), + [anon_sym_false] = ACTIONS(2098), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2098), + [sym_super] = ACTIONS(2098), + [sym_crate] = ACTIONS(2098), + [sym_metavariable] = ACTIONS(2096), + [sym__raw_string_literal_start] = ACTIONS(2096), + [sym_float_literal] = ACTIONS(2096), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2100), + [sym_identifier] = ACTIONS(2102), + [anon_sym_SEMI] = ACTIONS(2100), + [anon_sym_macro_rules_BANG] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2100), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LBRACE] = ACTIONS(2100), + [anon_sym_RBRACE] = ACTIONS(2100), + [anon_sym_STAR] = ACTIONS(2100), + [anon_sym_u8] = ACTIONS(2102), + [anon_sym_i8] = ACTIONS(2102), + [anon_sym_u16] = ACTIONS(2102), + [anon_sym_i16] = ACTIONS(2102), + [anon_sym_u32] = ACTIONS(2102), + [anon_sym_i32] = ACTIONS(2102), + [anon_sym_u64] = ACTIONS(2102), + [anon_sym_i64] = ACTIONS(2102), + [anon_sym_u128] = ACTIONS(2102), + [anon_sym_i128] = ACTIONS(2102), + [anon_sym_isize] = ACTIONS(2102), + [anon_sym_usize] = ACTIONS(2102), + [anon_sym_f32] = ACTIONS(2102), + [anon_sym_f64] = ACTIONS(2102), + [anon_sym_bool] = ACTIONS(2102), + [anon_sym_str] = ACTIONS(2102), + [anon_sym_char] = ACTIONS(2102), + [anon_sym_DASH] = ACTIONS(2100), + [anon_sym_BANG] = ACTIONS(2100), + [anon_sym_AMP] = ACTIONS(2100), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_LT] = ACTIONS(2100), + [anon_sym_DOT_DOT] = ACTIONS(2100), + [anon_sym_COLON_COLON] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2100), + [anon_sym_SQUOTE] = ACTIONS(2102), + [anon_sym_async] = ACTIONS(2102), + [anon_sym_become] = ACTIONS(2102), + [anon_sym_break] = ACTIONS(2102), + [anon_sym_const] = ACTIONS(2102), + [anon_sym_continue] = ACTIONS(2102), + [anon_sym_default] = ACTIONS(2102), + [anon_sym_enum] = ACTIONS(2102), + [anon_sym_fn] = ACTIONS(2102), + [anon_sym_for] = ACTIONS(2102), + [anon_sym_gen] = ACTIONS(2102), + [anon_sym_if] = ACTIONS(2102), + [anon_sym_impl] = ACTIONS(2102), + [anon_sym_let] = ACTIONS(2102), + [anon_sym_loop] = ACTIONS(2102), + [anon_sym_match] = ACTIONS(2102), + [anon_sym_mod] = ACTIONS(2102), + [anon_sym_pub] = ACTIONS(2102), + [anon_sym_return] = ACTIONS(2102), + [anon_sym_static] = ACTIONS(2102), + [anon_sym_struct] = ACTIONS(2102), + [anon_sym_trait] = ACTIONS(2102), + [anon_sym_type] = ACTIONS(2102), + [anon_sym_union] = ACTIONS(2102), + [anon_sym_unsafe] = ACTIONS(2102), + [anon_sym_use] = ACTIONS(2102), + [anon_sym_while] = ACTIONS(2102), + [anon_sym_extern] = ACTIONS(2102), + [anon_sym_raw] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2102), + [anon_sym_move] = ACTIONS(2102), + [anon_sym_try] = ACTIONS(2102), + [sym_integer_literal] = ACTIONS(2100), + [aux_sym_string_literal_token1] = ACTIONS(2100), + [sym_char_literal] = ACTIONS(2100), + [anon_sym_true] = ACTIONS(2102), + [anon_sym_false] = ACTIONS(2102), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2102), + [sym_super] = ACTIONS(2102), + [sym_crate] = ACTIONS(2102), + [sym_metavariable] = ACTIONS(2100), + [sym__raw_string_literal_start] = ACTIONS(2100), + [sym_float_literal] = ACTIONS(2100), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2104), + [sym_identifier] = ACTIONS(2106), + [anon_sym_SEMI] = ACTIONS(2104), + [anon_sym_macro_rules_BANG] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2104), + [anon_sym_LBRACK] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(2104), + [anon_sym_RBRACE] = ACTIONS(2104), + [anon_sym_STAR] = ACTIONS(2104), + [anon_sym_u8] = ACTIONS(2106), + [anon_sym_i8] = ACTIONS(2106), + [anon_sym_u16] = ACTIONS(2106), + [anon_sym_i16] = ACTIONS(2106), + [anon_sym_u32] = ACTIONS(2106), + [anon_sym_i32] = ACTIONS(2106), + [anon_sym_u64] = ACTIONS(2106), + [anon_sym_i64] = ACTIONS(2106), + [anon_sym_u128] = ACTIONS(2106), + [anon_sym_i128] = ACTIONS(2106), + [anon_sym_isize] = ACTIONS(2106), + [anon_sym_usize] = ACTIONS(2106), + [anon_sym_f32] = ACTIONS(2106), + [anon_sym_f64] = ACTIONS(2106), + [anon_sym_bool] = ACTIONS(2106), + [anon_sym_str] = ACTIONS(2106), + [anon_sym_char] = ACTIONS(2106), + [anon_sym_DASH] = ACTIONS(2104), + [anon_sym_BANG] = ACTIONS(2104), + [anon_sym_AMP] = ACTIONS(2104), + [anon_sym_PIPE] = ACTIONS(2104), + [anon_sym_LT] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2104), + [anon_sym_COLON_COLON] = ACTIONS(2104), + [anon_sym_POUND] = ACTIONS(2104), + [anon_sym_SQUOTE] = ACTIONS(2106), + [anon_sym_async] = ACTIONS(2106), + [anon_sym_become] = ACTIONS(2106), + [anon_sym_break] = ACTIONS(2106), + [anon_sym_const] = ACTIONS(2106), + [anon_sym_continue] = ACTIONS(2106), + [anon_sym_default] = ACTIONS(2106), + [anon_sym_enum] = ACTIONS(2106), + [anon_sym_fn] = ACTIONS(2106), + [anon_sym_for] = ACTIONS(2106), + [anon_sym_gen] = ACTIONS(2106), + [anon_sym_if] = ACTIONS(2106), + [anon_sym_impl] = ACTIONS(2106), + [anon_sym_let] = ACTIONS(2106), + [anon_sym_loop] = ACTIONS(2106), + [anon_sym_match] = ACTIONS(2106), + [anon_sym_mod] = ACTIONS(2106), + [anon_sym_pub] = ACTIONS(2106), + [anon_sym_return] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2106), + [anon_sym_struct] = ACTIONS(2106), + [anon_sym_trait] = ACTIONS(2106), + [anon_sym_type] = ACTIONS(2106), + [anon_sym_union] = ACTIONS(2106), + [anon_sym_unsafe] = ACTIONS(2106), + [anon_sym_use] = ACTIONS(2106), + [anon_sym_while] = ACTIONS(2106), + [anon_sym_extern] = ACTIONS(2106), + [anon_sym_raw] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2106), + [anon_sym_move] = ACTIONS(2106), + [anon_sym_try] = ACTIONS(2106), + [sym_integer_literal] = ACTIONS(2104), + [aux_sym_string_literal_token1] = ACTIONS(2104), + [sym_char_literal] = ACTIONS(2104), + [anon_sym_true] = ACTIONS(2106), + [anon_sym_false] = ACTIONS(2106), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2106), + [sym_super] = ACTIONS(2106), + [sym_crate] = ACTIONS(2106), + [sym_metavariable] = ACTIONS(2104), + [sym__raw_string_literal_start] = ACTIONS(2104), + [sym_float_literal] = ACTIONS(2104), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2108), + [sym_identifier] = ACTIONS(2110), + [anon_sym_SEMI] = ACTIONS(2108), + [anon_sym_macro_rules_BANG] = ACTIONS(2108), + [anon_sym_LPAREN] = ACTIONS(2108), + [anon_sym_LBRACK] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_STAR] = ACTIONS(2108), + [anon_sym_u8] = ACTIONS(2110), + [anon_sym_i8] = ACTIONS(2110), + [anon_sym_u16] = ACTIONS(2110), + [anon_sym_i16] = ACTIONS(2110), + [anon_sym_u32] = ACTIONS(2110), + [anon_sym_i32] = ACTIONS(2110), + [anon_sym_u64] = ACTIONS(2110), + [anon_sym_i64] = ACTIONS(2110), + [anon_sym_u128] = ACTIONS(2110), + [anon_sym_i128] = ACTIONS(2110), + [anon_sym_isize] = ACTIONS(2110), + [anon_sym_usize] = ACTIONS(2110), + [anon_sym_f32] = ACTIONS(2110), + [anon_sym_f64] = ACTIONS(2110), + [anon_sym_bool] = ACTIONS(2110), + [anon_sym_str] = ACTIONS(2110), + [anon_sym_char] = ACTIONS(2110), + [anon_sym_DASH] = ACTIONS(2108), + [anon_sym_BANG] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_PIPE] = ACTIONS(2108), + [anon_sym_LT] = ACTIONS(2108), + [anon_sym_DOT_DOT] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2108), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_SQUOTE] = ACTIONS(2110), + [anon_sym_async] = ACTIONS(2110), + [anon_sym_become] = ACTIONS(2110), + [anon_sym_break] = ACTIONS(2110), + [anon_sym_const] = ACTIONS(2110), + [anon_sym_continue] = ACTIONS(2110), + [anon_sym_default] = ACTIONS(2110), + [anon_sym_enum] = ACTIONS(2110), + [anon_sym_fn] = ACTIONS(2110), + [anon_sym_for] = ACTIONS(2110), + [anon_sym_gen] = ACTIONS(2110), + [anon_sym_if] = ACTIONS(2110), + [anon_sym_impl] = ACTIONS(2110), + [anon_sym_let] = ACTIONS(2110), + [anon_sym_loop] = ACTIONS(2110), + [anon_sym_match] = ACTIONS(2110), + [anon_sym_mod] = ACTIONS(2110), + [anon_sym_pub] = ACTIONS(2110), + [anon_sym_return] = ACTIONS(2110), + [anon_sym_static] = ACTIONS(2110), + [anon_sym_struct] = ACTIONS(2110), + [anon_sym_trait] = ACTIONS(2110), + [anon_sym_type] = ACTIONS(2110), + [anon_sym_union] = ACTIONS(2110), + [anon_sym_unsafe] = ACTIONS(2110), + [anon_sym_use] = ACTIONS(2110), + [anon_sym_while] = ACTIONS(2110), + [anon_sym_extern] = ACTIONS(2110), + [anon_sym_raw] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2110), + [anon_sym_move] = ACTIONS(2110), + [anon_sym_try] = ACTIONS(2110), + [sym_integer_literal] = ACTIONS(2108), + [aux_sym_string_literal_token1] = ACTIONS(2108), + [sym_char_literal] = ACTIONS(2108), + [anon_sym_true] = ACTIONS(2110), + [anon_sym_false] = ACTIONS(2110), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2110), + [sym_super] = ACTIONS(2110), + [sym_crate] = ACTIONS(2110), + [sym_metavariable] = ACTIONS(2108), + [sym__raw_string_literal_start] = ACTIONS(2108), + [sym_float_literal] = ACTIONS(2108), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2112), + [sym_identifier] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2112), + [anon_sym_macro_rules_BANG] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2112), + [anon_sym_LBRACK] = ACTIONS(2112), + [anon_sym_LBRACE] = ACTIONS(2112), + [anon_sym_RBRACE] = ACTIONS(2112), + [anon_sym_STAR] = ACTIONS(2112), + [anon_sym_u8] = ACTIONS(2114), + [anon_sym_i8] = ACTIONS(2114), + [anon_sym_u16] = ACTIONS(2114), + [anon_sym_i16] = ACTIONS(2114), + [anon_sym_u32] = ACTIONS(2114), + [anon_sym_i32] = ACTIONS(2114), + [anon_sym_u64] = ACTIONS(2114), + [anon_sym_i64] = ACTIONS(2114), + [anon_sym_u128] = ACTIONS(2114), + [anon_sym_i128] = ACTIONS(2114), + [anon_sym_isize] = ACTIONS(2114), + [anon_sym_usize] = ACTIONS(2114), + [anon_sym_f32] = ACTIONS(2114), + [anon_sym_f64] = ACTIONS(2114), + [anon_sym_bool] = ACTIONS(2114), + [anon_sym_str] = ACTIONS(2114), + [anon_sym_char] = ACTIONS(2114), + [anon_sym_DASH] = ACTIONS(2112), + [anon_sym_BANG] = ACTIONS(2112), + [anon_sym_AMP] = ACTIONS(2112), + [anon_sym_PIPE] = ACTIONS(2112), + [anon_sym_LT] = ACTIONS(2112), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_COLON_COLON] = ACTIONS(2112), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_SQUOTE] = ACTIONS(2114), + [anon_sym_async] = ACTIONS(2114), + [anon_sym_become] = ACTIONS(2114), + [anon_sym_break] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2114), + [anon_sym_continue] = ACTIONS(2114), + [anon_sym_default] = ACTIONS(2114), + [anon_sym_enum] = ACTIONS(2114), + [anon_sym_fn] = ACTIONS(2114), + [anon_sym_for] = ACTIONS(2114), + [anon_sym_gen] = ACTIONS(2114), + [anon_sym_if] = ACTIONS(2114), + [anon_sym_impl] = ACTIONS(2114), + [anon_sym_let] = ACTIONS(2114), + [anon_sym_loop] = ACTIONS(2114), + [anon_sym_match] = ACTIONS(2114), + [anon_sym_mod] = ACTIONS(2114), + [anon_sym_pub] = ACTIONS(2114), + [anon_sym_return] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2114), + [anon_sym_struct] = ACTIONS(2114), + [anon_sym_trait] = ACTIONS(2114), + [anon_sym_type] = ACTIONS(2114), + [anon_sym_union] = ACTIONS(2114), + [anon_sym_unsafe] = ACTIONS(2114), + [anon_sym_use] = ACTIONS(2114), + [anon_sym_while] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2114), + [anon_sym_raw] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2114), + [anon_sym_move] = ACTIONS(2114), + [anon_sym_try] = ACTIONS(2114), + [sym_integer_literal] = ACTIONS(2112), + [aux_sym_string_literal_token1] = ACTIONS(2112), + [sym_char_literal] = ACTIONS(2112), + [anon_sym_true] = ACTIONS(2114), + [anon_sym_false] = ACTIONS(2114), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2114), + [sym_super] = ACTIONS(2114), + [sym_crate] = ACTIONS(2114), + [sym_metavariable] = ACTIONS(2112), + [sym__raw_string_literal_start] = ACTIONS(2112), + [sym_float_literal] = ACTIONS(2112), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2118), + [anon_sym_SEMI] = ACTIONS(2116), + [anon_sym_macro_rules_BANG] = ACTIONS(2116), + [anon_sym_LPAREN] = ACTIONS(2116), + [anon_sym_LBRACK] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2116), + [anon_sym_RBRACE] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2116), + [anon_sym_u8] = ACTIONS(2118), + [anon_sym_i8] = ACTIONS(2118), + [anon_sym_u16] = ACTIONS(2118), + [anon_sym_i16] = ACTIONS(2118), + [anon_sym_u32] = ACTIONS(2118), + [anon_sym_i32] = ACTIONS(2118), + [anon_sym_u64] = ACTIONS(2118), + [anon_sym_i64] = ACTIONS(2118), + [anon_sym_u128] = ACTIONS(2118), + [anon_sym_i128] = ACTIONS(2118), + [anon_sym_isize] = ACTIONS(2118), + [anon_sym_usize] = ACTIONS(2118), + [anon_sym_f32] = ACTIONS(2118), + [anon_sym_f64] = ACTIONS(2118), + [anon_sym_bool] = ACTIONS(2118), + [anon_sym_str] = ACTIONS(2118), + [anon_sym_char] = ACTIONS(2118), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_BANG] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_PIPE] = ACTIONS(2116), + [anon_sym_LT] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2116), + [anon_sym_POUND] = ACTIONS(2116), + [anon_sym_SQUOTE] = ACTIONS(2118), + [anon_sym_async] = ACTIONS(2118), + [anon_sym_become] = ACTIONS(2118), + [anon_sym_break] = ACTIONS(2118), + [anon_sym_const] = ACTIONS(2118), + [anon_sym_continue] = ACTIONS(2118), + [anon_sym_default] = ACTIONS(2118), + [anon_sym_enum] = ACTIONS(2118), + [anon_sym_fn] = ACTIONS(2118), + [anon_sym_for] = ACTIONS(2118), + [anon_sym_gen] = ACTIONS(2118), + [anon_sym_if] = ACTIONS(2118), + [anon_sym_impl] = ACTIONS(2118), + [anon_sym_let] = ACTIONS(2118), + [anon_sym_loop] = ACTIONS(2118), + [anon_sym_match] = ACTIONS(2118), + [anon_sym_mod] = ACTIONS(2118), + [anon_sym_pub] = ACTIONS(2118), + [anon_sym_return] = ACTIONS(2118), + [anon_sym_static] = ACTIONS(2118), + [anon_sym_struct] = ACTIONS(2118), + [anon_sym_trait] = ACTIONS(2118), + [anon_sym_type] = ACTIONS(2118), + [anon_sym_union] = ACTIONS(2118), + [anon_sym_unsafe] = ACTIONS(2118), + [anon_sym_use] = ACTIONS(2118), + [anon_sym_while] = ACTIONS(2118), + [anon_sym_extern] = ACTIONS(2118), + [anon_sym_raw] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2118), + [anon_sym_move] = ACTIONS(2118), + [anon_sym_try] = ACTIONS(2118), + [sym_integer_literal] = ACTIONS(2116), + [aux_sym_string_literal_token1] = ACTIONS(2116), + [sym_char_literal] = ACTIONS(2116), + [anon_sym_true] = ACTIONS(2118), + [anon_sym_false] = ACTIONS(2118), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2118), + [sym_super] = ACTIONS(2118), + [sym_crate] = ACTIONS(2118), + [sym_metavariable] = ACTIONS(2116), + [sym__raw_string_literal_start] = ACTIONS(2116), + [sym_float_literal] = ACTIONS(2116), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2120), + [sym_identifier] = ACTIONS(2122), + [anon_sym_SEMI] = ACTIONS(2120), + [anon_sym_macro_rules_BANG] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_RBRACE] = ACTIONS(2120), + [anon_sym_STAR] = ACTIONS(2120), + [anon_sym_u8] = ACTIONS(2122), + [anon_sym_i8] = ACTIONS(2122), + [anon_sym_u16] = ACTIONS(2122), + [anon_sym_i16] = ACTIONS(2122), + [anon_sym_u32] = ACTIONS(2122), + [anon_sym_i32] = ACTIONS(2122), + [anon_sym_u64] = ACTIONS(2122), + [anon_sym_i64] = ACTIONS(2122), + [anon_sym_u128] = ACTIONS(2122), + [anon_sym_i128] = ACTIONS(2122), + [anon_sym_isize] = ACTIONS(2122), + [anon_sym_usize] = ACTIONS(2122), + [anon_sym_f32] = ACTIONS(2122), + [anon_sym_f64] = ACTIONS(2122), + [anon_sym_bool] = ACTIONS(2122), + [anon_sym_str] = ACTIONS(2122), + [anon_sym_char] = ACTIONS(2122), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_BANG] = ACTIONS(2120), + [anon_sym_AMP] = ACTIONS(2120), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_LT] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_COLON_COLON] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(2120), + [anon_sym_SQUOTE] = ACTIONS(2122), + [anon_sym_async] = ACTIONS(2122), + [anon_sym_become] = ACTIONS(2122), + [anon_sym_break] = ACTIONS(2122), + [anon_sym_const] = ACTIONS(2122), + [anon_sym_continue] = ACTIONS(2122), + [anon_sym_default] = ACTIONS(2122), + [anon_sym_enum] = ACTIONS(2122), + [anon_sym_fn] = ACTIONS(2122), + [anon_sym_for] = ACTIONS(2122), + [anon_sym_gen] = ACTIONS(2122), + [anon_sym_if] = ACTIONS(2122), + [anon_sym_impl] = ACTIONS(2122), + [anon_sym_let] = ACTIONS(2122), + [anon_sym_loop] = ACTIONS(2122), + [anon_sym_match] = ACTIONS(2122), + [anon_sym_mod] = ACTIONS(2122), + [anon_sym_pub] = ACTIONS(2122), + [anon_sym_return] = ACTIONS(2122), + [anon_sym_static] = ACTIONS(2122), + [anon_sym_struct] = ACTIONS(2122), + [anon_sym_trait] = ACTIONS(2122), + [anon_sym_type] = ACTIONS(2122), + [anon_sym_union] = ACTIONS(2122), + [anon_sym_unsafe] = ACTIONS(2122), + [anon_sym_use] = ACTIONS(2122), + [anon_sym_while] = ACTIONS(2122), + [anon_sym_extern] = ACTIONS(2122), + [anon_sym_raw] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2122), + [anon_sym_move] = ACTIONS(2122), + [anon_sym_try] = ACTIONS(2122), + [sym_integer_literal] = ACTIONS(2120), + [aux_sym_string_literal_token1] = ACTIONS(2120), + [sym_char_literal] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2122), + [anon_sym_false] = ACTIONS(2122), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2122), + [sym_super] = ACTIONS(2122), + [sym_crate] = ACTIONS(2122), + [sym_metavariable] = ACTIONS(2120), + [sym__raw_string_literal_start] = ACTIONS(2120), + [sym_float_literal] = ACTIONS(2120), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2124), + [sym_identifier] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2124), + [anon_sym_macro_rules_BANG] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_RBRACE] = ACTIONS(2124), + [anon_sym_STAR] = ACTIONS(2124), + [anon_sym_u8] = ACTIONS(2126), + [anon_sym_i8] = ACTIONS(2126), + [anon_sym_u16] = ACTIONS(2126), + [anon_sym_i16] = ACTIONS(2126), + [anon_sym_u32] = ACTIONS(2126), + [anon_sym_i32] = ACTIONS(2126), + [anon_sym_u64] = ACTIONS(2126), + [anon_sym_i64] = ACTIONS(2126), + [anon_sym_u128] = ACTIONS(2126), + [anon_sym_i128] = ACTIONS(2126), + [anon_sym_isize] = ACTIONS(2126), + [anon_sym_usize] = ACTIONS(2126), + [anon_sym_f32] = ACTIONS(2126), + [anon_sym_f64] = ACTIONS(2126), + [anon_sym_bool] = ACTIONS(2126), + [anon_sym_str] = ACTIONS(2126), + [anon_sym_char] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_BANG] = ACTIONS(2124), + [anon_sym_AMP] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2124), + [anon_sym_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_COLON_COLON] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(2124), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_become] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [anon_sym_fn] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_gen] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_impl] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_loop] = ACTIONS(2126), + [anon_sym_match] = ACTIONS(2126), + [anon_sym_mod] = ACTIONS(2126), + [anon_sym_pub] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_struct] = ACTIONS(2126), + [anon_sym_trait] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_union] = ACTIONS(2126), + [anon_sym_unsafe] = ACTIONS(2126), + [anon_sym_use] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_extern] = ACTIONS(2126), + [anon_sym_raw] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_move] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [sym_integer_literal] = ACTIONS(2124), + [aux_sym_string_literal_token1] = ACTIONS(2124), + [sym_char_literal] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2126), + [anon_sym_false] = ACTIONS(2126), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_crate] = ACTIONS(2126), + [sym_metavariable] = ACTIONS(2124), + [sym__raw_string_literal_start] = ACTIONS(2124), + [sym_float_literal] = ACTIONS(2124), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2128), + [sym_identifier] = ACTIONS(2130), + [anon_sym_SEMI] = ACTIONS(2128), + [anon_sym_macro_rules_BANG] = ACTIONS(2128), + [anon_sym_LPAREN] = ACTIONS(2128), + [anon_sym_LBRACK] = ACTIONS(2128), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_RBRACE] = ACTIONS(2128), + [anon_sym_STAR] = ACTIONS(2128), + [anon_sym_u8] = ACTIONS(2130), + [anon_sym_i8] = ACTIONS(2130), + [anon_sym_u16] = ACTIONS(2130), + [anon_sym_i16] = ACTIONS(2130), + [anon_sym_u32] = ACTIONS(2130), + [anon_sym_i32] = ACTIONS(2130), + [anon_sym_u64] = ACTIONS(2130), + [anon_sym_i64] = ACTIONS(2130), + [anon_sym_u128] = ACTIONS(2130), + [anon_sym_i128] = ACTIONS(2130), + [anon_sym_isize] = ACTIONS(2130), + [anon_sym_usize] = ACTIONS(2130), + [anon_sym_f32] = ACTIONS(2130), + [anon_sym_f64] = ACTIONS(2130), + [anon_sym_bool] = ACTIONS(2130), + [anon_sym_str] = ACTIONS(2130), + [anon_sym_char] = ACTIONS(2130), + [anon_sym_DASH] = ACTIONS(2128), + [anon_sym_BANG] = ACTIONS(2128), + [anon_sym_AMP] = ACTIONS(2128), + [anon_sym_PIPE] = ACTIONS(2128), + [anon_sym_LT] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_COLON_COLON] = ACTIONS(2128), + [anon_sym_POUND] = ACTIONS(2128), + [anon_sym_SQUOTE] = ACTIONS(2130), + [anon_sym_async] = ACTIONS(2130), + [anon_sym_become] = ACTIONS(2130), + [anon_sym_break] = ACTIONS(2130), + [anon_sym_const] = ACTIONS(2130), + [anon_sym_continue] = ACTIONS(2130), + [anon_sym_default] = ACTIONS(2130), + [anon_sym_enum] = ACTIONS(2130), + [anon_sym_fn] = ACTIONS(2130), + [anon_sym_for] = ACTIONS(2130), + [anon_sym_gen] = ACTIONS(2130), + [anon_sym_if] = ACTIONS(2130), + [anon_sym_impl] = ACTIONS(2130), + [anon_sym_let] = ACTIONS(2130), + [anon_sym_loop] = ACTIONS(2130), + [anon_sym_match] = ACTIONS(2130), + [anon_sym_mod] = ACTIONS(2130), + [anon_sym_pub] = ACTIONS(2130), + [anon_sym_return] = ACTIONS(2130), + [anon_sym_static] = ACTIONS(2130), + [anon_sym_struct] = ACTIONS(2130), + [anon_sym_trait] = ACTIONS(2130), + [anon_sym_type] = ACTIONS(2130), + [anon_sym_union] = ACTIONS(2130), + [anon_sym_unsafe] = ACTIONS(2130), + [anon_sym_use] = ACTIONS(2130), + [anon_sym_while] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2130), + [anon_sym_raw] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2130), + [anon_sym_move] = ACTIONS(2130), + [anon_sym_try] = ACTIONS(2130), + [sym_integer_literal] = ACTIONS(2128), + [aux_sym_string_literal_token1] = ACTIONS(2128), + [sym_char_literal] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2130), + [anon_sym_false] = ACTIONS(2130), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2130), + [sym_super] = ACTIONS(2130), + [sym_crate] = ACTIONS(2130), + [sym_metavariable] = ACTIONS(2128), + [sym__raw_string_literal_start] = ACTIONS(2128), + [sym_float_literal] = ACTIONS(2128), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2132), + [sym_identifier] = ACTIONS(2134), + [anon_sym_SEMI] = ACTIONS(2132), + [anon_sym_macro_rules_BANG] = ACTIONS(2132), + [anon_sym_LPAREN] = ACTIONS(2132), + [anon_sym_LBRACK] = ACTIONS(2132), + [anon_sym_LBRACE] = ACTIONS(2132), + [anon_sym_RBRACE] = ACTIONS(2132), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_u8] = ACTIONS(2134), + [anon_sym_i8] = ACTIONS(2134), + [anon_sym_u16] = ACTIONS(2134), + [anon_sym_i16] = ACTIONS(2134), + [anon_sym_u32] = ACTIONS(2134), + [anon_sym_i32] = ACTIONS(2134), + [anon_sym_u64] = ACTIONS(2134), + [anon_sym_i64] = ACTIONS(2134), + [anon_sym_u128] = ACTIONS(2134), + [anon_sym_i128] = ACTIONS(2134), + [anon_sym_isize] = ACTIONS(2134), + [anon_sym_usize] = ACTIONS(2134), + [anon_sym_f32] = ACTIONS(2134), + [anon_sym_f64] = ACTIONS(2134), + [anon_sym_bool] = ACTIONS(2134), + [anon_sym_str] = ACTIONS(2134), + [anon_sym_char] = ACTIONS(2134), + [anon_sym_DASH] = ACTIONS(2132), + [anon_sym_BANG] = ACTIONS(2132), + [anon_sym_AMP] = ACTIONS(2132), + [anon_sym_PIPE] = ACTIONS(2132), + [anon_sym_LT] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_COLON_COLON] = ACTIONS(2132), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_SQUOTE] = ACTIONS(2134), + [anon_sym_async] = ACTIONS(2134), + [anon_sym_become] = ACTIONS(2134), + [anon_sym_break] = ACTIONS(2134), + [anon_sym_const] = ACTIONS(2134), + [anon_sym_continue] = ACTIONS(2134), + [anon_sym_default] = ACTIONS(2134), + [anon_sym_enum] = ACTIONS(2134), + [anon_sym_fn] = ACTIONS(2134), + [anon_sym_for] = ACTIONS(2134), + [anon_sym_gen] = ACTIONS(2134), + [anon_sym_if] = ACTIONS(2134), + [anon_sym_impl] = ACTIONS(2134), + [anon_sym_let] = ACTIONS(2134), + [anon_sym_loop] = ACTIONS(2134), + [anon_sym_match] = ACTIONS(2134), + [anon_sym_mod] = ACTIONS(2134), + [anon_sym_pub] = ACTIONS(2134), + [anon_sym_return] = ACTIONS(2134), + [anon_sym_static] = ACTIONS(2134), + [anon_sym_struct] = ACTIONS(2134), + [anon_sym_trait] = ACTIONS(2134), + [anon_sym_type] = ACTIONS(2134), + [anon_sym_union] = ACTIONS(2134), + [anon_sym_unsafe] = ACTIONS(2134), + [anon_sym_use] = ACTIONS(2134), + [anon_sym_while] = ACTIONS(2134), + [anon_sym_extern] = ACTIONS(2134), + [anon_sym_raw] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2134), + [anon_sym_move] = ACTIONS(2134), + [anon_sym_try] = ACTIONS(2134), + [sym_integer_literal] = ACTIONS(2132), + [aux_sym_string_literal_token1] = ACTIONS(2132), + [sym_char_literal] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2134), + [anon_sym_false] = ACTIONS(2134), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2134), + [sym_super] = ACTIONS(2134), + [sym_crate] = ACTIONS(2134), + [sym_metavariable] = ACTIONS(2132), + [sym__raw_string_literal_start] = ACTIONS(2132), + [sym_float_literal] = ACTIONS(2132), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2136), + [sym_identifier] = ACTIONS(2138), + [anon_sym_SEMI] = ACTIONS(2136), + [anon_sym_macro_rules_BANG] = ACTIONS(2136), + [anon_sym_LPAREN] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(2136), + [anon_sym_LBRACE] = ACTIONS(2136), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2136), + [anon_sym_u8] = ACTIONS(2138), + [anon_sym_i8] = ACTIONS(2138), + [anon_sym_u16] = ACTIONS(2138), + [anon_sym_i16] = ACTIONS(2138), + [anon_sym_u32] = ACTIONS(2138), + [anon_sym_i32] = ACTIONS(2138), + [anon_sym_u64] = ACTIONS(2138), + [anon_sym_i64] = ACTIONS(2138), + [anon_sym_u128] = ACTIONS(2138), + [anon_sym_i128] = ACTIONS(2138), + [anon_sym_isize] = ACTIONS(2138), + [anon_sym_usize] = ACTIONS(2138), + [anon_sym_f32] = ACTIONS(2138), + [anon_sym_f64] = ACTIONS(2138), + [anon_sym_bool] = ACTIONS(2138), + [anon_sym_str] = ACTIONS(2138), + [anon_sym_char] = ACTIONS(2138), + [anon_sym_DASH] = ACTIONS(2136), + [anon_sym_BANG] = ACTIONS(2136), + [anon_sym_AMP] = ACTIONS(2136), + [anon_sym_PIPE] = ACTIONS(2136), + [anon_sym_LT] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_COLON_COLON] = ACTIONS(2136), + [anon_sym_POUND] = ACTIONS(2136), + [anon_sym_SQUOTE] = ACTIONS(2138), + [anon_sym_async] = ACTIONS(2138), + [anon_sym_become] = ACTIONS(2138), + [anon_sym_break] = ACTIONS(2138), + [anon_sym_const] = ACTIONS(2138), + [anon_sym_continue] = ACTIONS(2138), + [anon_sym_default] = ACTIONS(2138), + [anon_sym_enum] = ACTIONS(2138), + [anon_sym_fn] = ACTIONS(2138), + [anon_sym_for] = ACTIONS(2138), + [anon_sym_gen] = ACTIONS(2138), + [anon_sym_if] = ACTIONS(2138), + [anon_sym_impl] = ACTIONS(2138), + [anon_sym_let] = ACTIONS(2138), + [anon_sym_loop] = ACTIONS(2138), + [anon_sym_match] = ACTIONS(2138), + [anon_sym_mod] = ACTIONS(2138), + [anon_sym_pub] = ACTIONS(2138), + [anon_sym_return] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2138), + [anon_sym_struct] = ACTIONS(2138), + [anon_sym_trait] = ACTIONS(2138), + [anon_sym_type] = ACTIONS(2138), + [anon_sym_union] = ACTIONS(2138), + [anon_sym_unsafe] = ACTIONS(2138), + [anon_sym_use] = ACTIONS(2138), + [anon_sym_while] = ACTIONS(2138), + [anon_sym_extern] = ACTIONS(2138), + [anon_sym_raw] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2138), + [anon_sym_move] = ACTIONS(2138), + [anon_sym_try] = ACTIONS(2138), + [sym_integer_literal] = ACTIONS(2136), + [aux_sym_string_literal_token1] = ACTIONS(2136), + [sym_char_literal] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2138), + [anon_sym_false] = ACTIONS(2138), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2138), + [sym_super] = ACTIONS(2138), + [sym_crate] = ACTIONS(2138), + [sym_metavariable] = ACTIONS(2136), + [sym__raw_string_literal_start] = ACTIONS(2136), + [sym_float_literal] = ACTIONS(2136), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2140), + [anon_sym_macro_rules_BANG] = ACTIONS(2140), + [anon_sym_LPAREN] = ACTIONS(2140), + [anon_sym_LBRACK] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2140), + [anon_sym_STAR] = ACTIONS(2140), + [anon_sym_u8] = ACTIONS(2142), + [anon_sym_i8] = ACTIONS(2142), + [anon_sym_u16] = ACTIONS(2142), + [anon_sym_i16] = ACTIONS(2142), + [anon_sym_u32] = ACTIONS(2142), + [anon_sym_i32] = ACTIONS(2142), + [anon_sym_u64] = ACTIONS(2142), + [anon_sym_i64] = ACTIONS(2142), + [anon_sym_u128] = ACTIONS(2142), + [anon_sym_i128] = ACTIONS(2142), + [anon_sym_isize] = ACTIONS(2142), + [anon_sym_usize] = ACTIONS(2142), + [anon_sym_f32] = ACTIONS(2142), + [anon_sym_f64] = ACTIONS(2142), + [anon_sym_bool] = ACTIONS(2142), + [anon_sym_str] = ACTIONS(2142), + [anon_sym_char] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2140), + [anon_sym_BANG] = ACTIONS(2140), + [anon_sym_AMP] = ACTIONS(2140), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2140), + [anon_sym_COLON_COLON] = ACTIONS(2140), + [anon_sym_POUND] = ACTIONS(2140), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_become] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [anon_sym_fn] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_gen] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_impl] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_loop] = ACTIONS(2142), + [anon_sym_match] = ACTIONS(2142), + [anon_sym_mod] = ACTIONS(2142), + [anon_sym_pub] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_struct] = ACTIONS(2142), + [anon_sym_trait] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_union] = ACTIONS(2142), + [anon_sym_unsafe] = ACTIONS(2142), + [anon_sym_use] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_extern] = ACTIONS(2142), + [anon_sym_raw] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_move] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [sym_integer_literal] = ACTIONS(2140), + [aux_sym_string_literal_token1] = ACTIONS(2140), + [sym_char_literal] = ACTIONS(2140), + [anon_sym_true] = ACTIONS(2142), + [anon_sym_false] = ACTIONS(2142), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_crate] = ACTIONS(2142), + [sym_metavariable] = ACTIONS(2140), + [sym__raw_string_literal_start] = ACTIONS(2140), + [sym_float_literal] = ACTIONS(2140), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2144), + [sym_identifier] = ACTIONS(2146), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym_macro_rules_BANG] = ACTIONS(2144), + [anon_sym_LPAREN] = ACTIONS(2144), + [anon_sym_LBRACK] = ACTIONS(2144), + [anon_sym_LBRACE] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2144), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_u8] = ACTIONS(2146), + [anon_sym_i8] = ACTIONS(2146), + [anon_sym_u16] = ACTIONS(2146), + [anon_sym_i16] = ACTIONS(2146), + [anon_sym_u32] = ACTIONS(2146), + [anon_sym_i32] = ACTIONS(2146), + [anon_sym_u64] = ACTIONS(2146), + [anon_sym_i64] = ACTIONS(2146), + [anon_sym_u128] = ACTIONS(2146), + [anon_sym_i128] = ACTIONS(2146), + [anon_sym_isize] = ACTIONS(2146), + [anon_sym_usize] = ACTIONS(2146), + [anon_sym_f32] = ACTIONS(2146), + [anon_sym_f64] = ACTIONS(2146), + [anon_sym_bool] = ACTIONS(2146), + [anon_sym_str] = ACTIONS(2146), + [anon_sym_char] = ACTIONS(2146), + [anon_sym_DASH] = ACTIONS(2144), + [anon_sym_BANG] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_COLON_COLON] = ACTIONS(2144), + [anon_sym_POUND] = ACTIONS(2144), + [anon_sym_SQUOTE] = ACTIONS(2146), + [anon_sym_async] = ACTIONS(2146), + [anon_sym_become] = ACTIONS(2146), + [anon_sym_break] = ACTIONS(2146), + [anon_sym_const] = ACTIONS(2146), + [anon_sym_continue] = ACTIONS(2146), + [anon_sym_default] = ACTIONS(2146), + [anon_sym_enum] = ACTIONS(2146), + [anon_sym_fn] = ACTIONS(2146), + [anon_sym_for] = ACTIONS(2146), + [anon_sym_gen] = ACTIONS(2146), + [anon_sym_if] = ACTIONS(2146), + [anon_sym_impl] = ACTIONS(2146), + [anon_sym_let] = ACTIONS(2146), + [anon_sym_loop] = ACTIONS(2146), + [anon_sym_match] = ACTIONS(2146), + [anon_sym_mod] = ACTIONS(2146), + [anon_sym_pub] = ACTIONS(2146), + [anon_sym_return] = ACTIONS(2146), + [anon_sym_static] = ACTIONS(2146), + [anon_sym_struct] = ACTIONS(2146), + [anon_sym_trait] = ACTIONS(2146), + [anon_sym_type] = ACTIONS(2146), + [anon_sym_union] = ACTIONS(2146), + [anon_sym_unsafe] = ACTIONS(2146), + [anon_sym_use] = ACTIONS(2146), + [anon_sym_while] = ACTIONS(2146), + [anon_sym_extern] = ACTIONS(2146), + [anon_sym_raw] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2146), + [anon_sym_move] = ACTIONS(2146), + [anon_sym_try] = ACTIONS(2146), + [sym_integer_literal] = ACTIONS(2144), + [aux_sym_string_literal_token1] = ACTIONS(2144), + [sym_char_literal] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2146), + [anon_sym_false] = ACTIONS(2146), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2146), + [sym_super] = ACTIONS(2146), + [sym_crate] = ACTIONS(2146), + [sym_metavariable] = ACTIONS(2144), + [sym__raw_string_literal_start] = ACTIONS(2144), + [sym_float_literal] = ACTIONS(2144), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2150), + [anon_sym_SEMI] = ACTIONS(2148), + [anon_sym_macro_rules_BANG] = ACTIONS(2148), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_LBRACK] = ACTIONS(2148), + [anon_sym_LBRACE] = ACTIONS(2148), + [anon_sym_RBRACE] = ACTIONS(2148), + [anon_sym_STAR] = ACTIONS(2148), + [anon_sym_u8] = ACTIONS(2150), + [anon_sym_i8] = ACTIONS(2150), + [anon_sym_u16] = ACTIONS(2150), + [anon_sym_i16] = ACTIONS(2150), + [anon_sym_u32] = ACTIONS(2150), + [anon_sym_i32] = ACTIONS(2150), + [anon_sym_u64] = ACTIONS(2150), + [anon_sym_i64] = ACTIONS(2150), + [anon_sym_u128] = ACTIONS(2150), + [anon_sym_i128] = ACTIONS(2150), + [anon_sym_isize] = ACTIONS(2150), + [anon_sym_usize] = ACTIONS(2150), + [anon_sym_f32] = ACTIONS(2150), + [anon_sym_f64] = ACTIONS(2150), + [anon_sym_bool] = ACTIONS(2150), + [anon_sym_str] = ACTIONS(2150), + [anon_sym_char] = ACTIONS(2150), + [anon_sym_DASH] = ACTIONS(2148), + [anon_sym_BANG] = ACTIONS(2148), + [anon_sym_AMP] = ACTIONS(2148), + [anon_sym_PIPE] = ACTIONS(2148), + [anon_sym_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_COLON_COLON] = ACTIONS(2148), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_SQUOTE] = ACTIONS(2150), + [anon_sym_async] = ACTIONS(2150), + [anon_sym_become] = ACTIONS(2150), + [anon_sym_break] = ACTIONS(2150), + [anon_sym_const] = ACTIONS(2150), + [anon_sym_continue] = ACTIONS(2150), + [anon_sym_default] = ACTIONS(2150), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_fn] = ACTIONS(2150), + [anon_sym_for] = ACTIONS(2150), + [anon_sym_gen] = ACTIONS(2150), + [anon_sym_if] = ACTIONS(2150), + [anon_sym_impl] = ACTIONS(2150), + [anon_sym_let] = ACTIONS(2150), + [anon_sym_loop] = ACTIONS(2150), + [anon_sym_match] = ACTIONS(2150), + [anon_sym_mod] = ACTIONS(2150), + [anon_sym_pub] = ACTIONS(2150), + [anon_sym_return] = ACTIONS(2150), + [anon_sym_static] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2150), + [anon_sym_trait] = ACTIONS(2150), + [anon_sym_type] = ACTIONS(2150), + [anon_sym_union] = ACTIONS(2150), + [anon_sym_unsafe] = ACTIONS(2150), + [anon_sym_use] = ACTIONS(2150), + [anon_sym_while] = ACTIONS(2150), + [anon_sym_extern] = ACTIONS(2150), + [anon_sym_raw] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2150), + [anon_sym_move] = ACTIONS(2150), + [anon_sym_try] = ACTIONS(2150), + [sym_integer_literal] = ACTIONS(2148), + [aux_sym_string_literal_token1] = ACTIONS(2148), + [sym_char_literal] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2150), + [anon_sym_false] = ACTIONS(2150), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2150), + [sym_super] = ACTIONS(2150), + [sym_crate] = ACTIONS(2150), + [sym_metavariable] = ACTIONS(2148), + [sym__raw_string_literal_start] = ACTIONS(2148), + [sym_float_literal] = ACTIONS(2148), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2152), + [sym_identifier] = ACTIONS(2154), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_macro_rules_BANG] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2152), + [anon_sym_u8] = ACTIONS(2154), + [anon_sym_i8] = ACTIONS(2154), + [anon_sym_u16] = ACTIONS(2154), + [anon_sym_i16] = ACTIONS(2154), + [anon_sym_u32] = ACTIONS(2154), + [anon_sym_i32] = ACTIONS(2154), + [anon_sym_u64] = ACTIONS(2154), + [anon_sym_i64] = ACTIONS(2154), + [anon_sym_u128] = ACTIONS(2154), + [anon_sym_i128] = ACTIONS(2154), + [anon_sym_isize] = ACTIONS(2154), + [anon_sym_usize] = ACTIONS(2154), + [anon_sym_f32] = ACTIONS(2154), + [anon_sym_f64] = ACTIONS(2154), + [anon_sym_bool] = ACTIONS(2154), + [anon_sym_str] = ACTIONS(2154), + [anon_sym_char] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_AMP] = ACTIONS(2152), + [anon_sym_PIPE] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2152), + [anon_sym_COLON_COLON] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2154), + [anon_sym_async] = ACTIONS(2154), + [anon_sym_become] = ACTIONS(2154), + [anon_sym_break] = ACTIONS(2154), + [anon_sym_const] = ACTIONS(2154), + [anon_sym_continue] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2154), + [anon_sym_enum] = ACTIONS(2154), + [anon_sym_fn] = ACTIONS(2154), + [anon_sym_for] = ACTIONS(2154), + [anon_sym_gen] = ACTIONS(2154), + [anon_sym_if] = ACTIONS(2154), + [anon_sym_impl] = ACTIONS(2154), + [anon_sym_let] = ACTIONS(2154), + [anon_sym_loop] = ACTIONS(2154), + [anon_sym_match] = ACTIONS(2154), + [anon_sym_mod] = ACTIONS(2154), + [anon_sym_pub] = ACTIONS(2154), + [anon_sym_return] = ACTIONS(2154), + [anon_sym_static] = ACTIONS(2154), + [anon_sym_struct] = ACTIONS(2154), + [anon_sym_trait] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2154), + [anon_sym_union] = ACTIONS(2154), + [anon_sym_unsafe] = ACTIONS(2154), + [anon_sym_use] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2154), + [anon_sym_extern] = ACTIONS(2154), + [anon_sym_raw] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2154), + [anon_sym_move] = ACTIONS(2154), + [anon_sym_try] = ACTIONS(2154), + [sym_integer_literal] = ACTIONS(2152), + [aux_sym_string_literal_token1] = ACTIONS(2152), + [sym_char_literal] = ACTIONS(2152), + [anon_sym_true] = ACTIONS(2154), + [anon_sym_false] = ACTIONS(2154), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2154), + [sym_super] = ACTIONS(2154), + [sym_crate] = ACTIONS(2154), + [sym_metavariable] = ACTIONS(2152), + [sym__raw_string_literal_start] = ACTIONS(2152), + [sym_float_literal] = ACTIONS(2152), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2156), + [sym_identifier] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2156), + [anon_sym_macro_rules_BANG] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_LBRACK] = ACTIONS(2156), + [anon_sym_LBRACE] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_STAR] = ACTIONS(2156), + [anon_sym_u8] = ACTIONS(2158), + [anon_sym_i8] = ACTIONS(2158), + [anon_sym_u16] = ACTIONS(2158), + [anon_sym_i16] = ACTIONS(2158), + [anon_sym_u32] = ACTIONS(2158), + [anon_sym_i32] = ACTIONS(2158), + [anon_sym_u64] = ACTIONS(2158), + [anon_sym_i64] = ACTIONS(2158), + [anon_sym_u128] = ACTIONS(2158), + [anon_sym_i128] = ACTIONS(2158), + [anon_sym_isize] = ACTIONS(2158), + [anon_sym_usize] = ACTIONS(2158), + [anon_sym_f32] = ACTIONS(2158), + [anon_sym_f64] = ACTIONS(2158), + [anon_sym_bool] = ACTIONS(2158), + [anon_sym_str] = ACTIONS(2158), + [anon_sym_char] = ACTIONS(2158), + [anon_sym_DASH] = ACTIONS(2156), + [anon_sym_BANG] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2156), + [anon_sym_COLON_COLON] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_SQUOTE] = ACTIONS(2158), + [anon_sym_async] = ACTIONS(2158), + [anon_sym_become] = ACTIONS(2158), + [anon_sym_break] = ACTIONS(2158), + [anon_sym_const] = ACTIONS(2158), + [anon_sym_continue] = ACTIONS(2158), + [anon_sym_default] = ACTIONS(2158), + [anon_sym_enum] = ACTIONS(2158), + [anon_sym_fn] = ACTIONS(2158), + [anon_sym_for] = ACTIONS(2158), + [anon_sym_gen] = ACTIONS(2158), + [anon_sym_if] = ACTIONS(2158), + [anon_sym_impl] = ACTIONS(2158), + [anon_sym_let] = ACTIONS(2158), + [anon_sym_loop] = ACTIONS(2158), + [anon_sym_match] = ACTIONS(2158), + [anon_sym_mod] = ACTIONS(2158), + [anon_sym_pub] = ACTIONS(2158), + [anon_sym_return] = ACTIONS(2158), + [anon_sym_static] = ACTIONS(2158), + [anon_sym_struct] = ACTIONS(2158), + [anon_sym_trait] = ACTIONS(2158), + [anon_sym_type] = ACTIONS(2158), + [anon_sym_union] = ACTIONS(2158), + [anon_sym_unsafe] = ACTIONS(2158), + [anon_sym_use] = ACTIONS(2158), + [anon_sym_while] = ACTIONS(2158), + [anon_sym_extern] = ACTIONS(2158), + [anon_sym_raw] = ACTIONS(2158), + [anon_sym_yield] = ACTIONS(2158), + [anon_sym_move] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2158), + [sym_integer_literal] = ACTIONS(2156), + [aux_sym_string_literal_token1] = ACTIONS(2156), + [sym_char_literal] = ACTIONS(2156), + [anon_sym_true] = ACTIONS(2158), + [anon_sym_false] = ACTIONS(2158), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2158), + [sym_super] = ACTIONS(2158), + [sym_crate] = ACTIONS(2158), + [sym_metavariable] = ACTIONS(2156), + [sym__raw_string_literal_start] = ACTIONS(2156), + [sym_float_literal] = ACTIONS(2156), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2160), + [sym_identifier] = ACTIONS(2162), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_macro_rules_BANG] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_become] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2162), + [anon_sym_fn] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_gen] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_impl] = ACTIONS(2162), + [anon_sym_let] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_mod] = ACTIONS(2162), + [anon_sym_pub] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_struct] = ACTIONS(2162), + [anon_sym_trait] = ACTIONS(2162), + [anon_sym_type] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_use] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_extern] = ACTIONS(2162), + [anon_sym_raw] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym__raw_string_literal_start] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2164), + [anon_sym_macro_rules_BANG] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_LBRACK] = ACTIONS(2164), + [anon_sym_LBRACE] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_STAR] = ACTIONS(2164), + [anon_sym_u8] = ACTIONS(2166), + [anon_sym_i8] = ACTIONS(2166), + [anon_sym_u16] = ACTIONS(2166), + [anon_sym_i16] = ACTIONS(2166), + [anon_sym_u32] = ACTIONS(2166), + [anon_sym_i32] = ACTIONS(2166), + [anon_sym_u64] = ACTIONS(2166), + [anon_sym_i64] = ACTIONS(2166), + [anon_sym_u128] = ACTIONS(2166), + [anon_sym_i128] = ACTIONS(2166), + [anon_sym_isize] = ACTIONS(2166), + [anon_sym_usize] = ACTIONS(2166), + [anon_sym_f32] = ACTIONS(2166), + [anon_sym_f64] = ACTIONS(2166), + [anon_sym_bool] = ACTIONS(2166), + [anon_sym_str] = ACTIONS(2166), + [anon_sym_char] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2164), + [anon_sym_BANG] = ACTIONS(2164), + [anon_sym_AMP] = ACTIONS(2164), + [anon_sym_PIPE] = ACTIONS(2164), + [anon_sym_LT] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2164), + [anon_sym_COLON_COLON] = ACTIONS(2164), + [anon_sym_POUND] = ACTIONS(2164), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_become] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [anon_sym_fn] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_gen] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_impl] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_loop] = ACTIONS(2166), + [anon_sym_match] = ACTIONS(2166), + [anon_sym_mod] = ACTIONS(2166), + [anon_sym_pub] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_struct] = ACTIONS(2166), + [anon_sym_trait] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_union] = ACTIONS(2166), + [anon_sym_unsafe] = ACTIONS(2166), + [anon_sym_use] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_extern] = ACTIONS(2166), + [anon_sym_raw] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_move] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [sym_integer_literal] = ACTIONS(2164), + [aux_sym_string_literal_token1] = ACTIONS(2164), + [sym_char_literal] = ACTIONS(2164), + [anon_sym_true] = ACTIONS(2166), + [anon_sym_false] = ACTIONS(2166), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_crate] = ACTIONS(2166), + [sym_metavariable] = ACTIONS(2164), + [sym__raw_string_literal_start] = ACTIONS(2164), + [sym_float_literal] = ACTIONS(2164), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2170), + [anon_sym_SEMI] = ACTIONS(2168), + [anon_sym_macro_rules_BANG] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_RBRACE] = ACTIONS(2168), + [anon_sym_STAR] = ACTIONS(2168), + [anon_sym_u8] = ACTIONS(2170), + [anon_sym_i8] = ACTIONS(2170), + [anon_sym_u16] = ACTIONS(2170), + [anon_sym_i16] = ACTIONS(2170), + [anon_sym_u32] = ACTIONS(2170), + [anon_sym_i32] = ACTIONS(2170), + [anon_sym_u64] = ACTIONS(2170), + [anon_sym_i64] = ACTIONS(2170), + [anon_sym_u128] = ACTIONS(2170), + [anon_sym_i128] = ACTIONS(2170), + [anon_sym_isize] = ACTIONS(2170), + [anon_sym_usize] = ACTIONS(2170), + [anon_sym_f32] = ACTIONS(2170), + [anon_sym_f64] = ACTIONS(2170), + [anon_sym_bool] = ACTIONS(2170), + [anon_sym_str] = ACTIONS(2170), + [anon_sym_char] = ACTIONS(2170), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_BANG] = ACTIONS(2168), + [anon_sym_AMP] = ACTIONS(2168), + [anon_sym_PIPE] = ACTIONS(2168), + [anon_sym_LT] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_COLON_COLON] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(2168), + [anon_sym_SQUOTE] = ACTIONS(2170), + [anon_sym_async] = ACTIONS(2170), + [anon_sym_become] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_default] = ACTIONS(2170), + [anon_sym_enum] = ACTIONS(2170), + [anon_sym_fn] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_gen] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_impl] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_mod] = ACTIONS(2170), + [anon_sym_pub] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_static] = ACTIONS(2170), + [anon_sym_struct] = ACTIONS(2170), + [anon_sym_trait] = ACTIONS(2170), + [anon_sym_type] = ACTIONS(2170), + [anon_sym_union] = ACTIONS(2170), + [anon_sym_unsafe] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_raw] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2170), + [anon_sym_move] = ACTIONS(2170), + [anon_sym_try] = ACTIONS(2170), + [sym_integer_literal] = ACTIONS(2168), + [aux_sym_string_literal_token1] = ACTIONS(2168), + [sym_char_literal] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2170), + [anon_sym_false] = ACTIONS(2170), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2170), + [sym_super] = ACTIONS(2170), + [sym_crate] = ACTIONS(2170), + [sym_metavariable] = ACTIONS(2168), + [sym__raw_string_literal_start] = ACTIONS(2168), + [sym_float_literal] = ACTIONS(2168), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2174), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_macro_rules_BANG] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_u8] = ACTIONS(2174), + [anon_sym_i8] = ACTIONS(2174), + [anon_sym_u16] = ACTIONS(2174), + [anon_sym_i16] = ACTIONS(2174), + [anon_sym_u32] = ACTIONS(2174), + [anon_sym_i32] = ACTIONS(2174), + [anon_sym_u64] = ACTIONS(2174), + [anon_sym_i64] = ACTIONS(2174), + [anon_sym_u128] = ACTIONS(2174), + [anon_sym_i128] = ACTIONS(2174), + [anon_sym_isize] = ACTIONS(2174), + [anon_sym_usize] = ACTIONS(2174), + [anon_sym_f32] = ACTIONS(2174), + [anon_sym_f64] = ACTIONS(2174), + [anon_sym_bool] = ACTIONS(2174), + [anon_sym_str] = ACTIONS(2174), + [anon_sym_char] = ACTIONS(2174), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_COLON_COLON] = ACTIONS(2172), + [anon_sym_POUND] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2174), + [anon_sym_async] = ACTIONS(2174), + [anon_sym_become] = ACTIONS(2174), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_const] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2174), + [anon_sym_default] = ACTIONS(2174), + [anon_sym_enum] = ACTIONS(2174), + [anon_sym_fn] = ACTIONS(2174), + [anon_sym_for] = ACTIONS(2174), + [anon_sym_gen] = ACTIONS(2174), + [anon_sym_if] = ACTIONS(2174), + [anon_sym_impl] = ACTIONS(2174), + [anon_sym_let] = ACTIONS(2174), + [anon_sym_loop] = ACTIONS(2174), + [anon_sym_match] = ACTIONS(2174), + [anon_sym_mod] = ACTIONS(2174), + [anon_sym_pub] = ACTIONS(2174), + [anon_sym_return] = ACTIONS(2174), + [anon_sym_static] = ACTIONS(2174), + [anon_sym_struct] = ACTIONS(2174), + [anon_sym_trait] = ACTIONS(2174), + [anon_sym_type] = ACTIONS(2174), + [anon_sym_union] = ACTIONS(2174), + [anon_sym_unsafe] = ACTIONS(2174), + [anon_sym_use] = ACTIONS(2174), + [anon_sym_while] = ACTIONS(2174), + [anon_sym_extern] = ACTIONS(2174), + [anon_sym_raw] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2174), + [anon_sym_move] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2174), + [sym_integer_literal] = ACTIONS(2172), + [aux_sym_string_literal_token1] = ACTIONS(2172), + [sym_char_literal] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2174), + [sym_super] = ACTIONS(2174), + [sym_crate] = ACTIONS(2174), + [sym_metavariable] = ACTIONS(2172), + [sym__raw_string_literal_start] = ACTIONS(2172), + [sym_float_literal] = ACTIONS(2172), }, [STATE(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2176), + [anon_sym_macro_rules_BANG] = ACTIONS(2176), + [anon_sym_LPAREN] = ACTIONS(2176), + [anon_sym_LBRACK] = ACTIONS(2176), + [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2176), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_u8] = ACTIONS(2178), + [anon_sym_i8] = ACTIONS(2178), + [anon_sym_u16] = ACTIONS(2178), + [anon_sym_i16] = ACTIONS(2178), + [anon_sym_u32] = ACTIONS(2178), + [anon_sym_i32] = ACTIONS(2178), + [anon_sym_u64] = ACTIONS(2178), + [anon_sym_i64] = ACTIONS(2178), + [anon_sym_u128] = ACTIONS(2178), + [anon_sym_i128] = ACTIONS(2178), + [anon_sym_isize] = ACTIONS(2178), + [anon_sym_usize] = ACTIONS(2178), + [anon_sym_f32] = ACTIONS(2178), + [anon_sym_f64] = ACTIONS(2178), + [anon_sym_bool] = ACTIONS(2178), + [anon_sym_str] = ACTIONS(2178), + [anon_sym_char] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2176), + [anon_sym_BANG] = ACTIONS(2176), + [anon_sym_AMP] = ACTIONS(2176), + [anon_sym_PIPE] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2176), + [anon_sym_COLON_COLON] = ACTIONS(2176), + [anon_sym_POUND] = ACTIONS(2176), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_become] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [anon_sym_fn] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_gen] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_impl] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_loop] = ACTIONS(2178), + [anon_sym_match] = ACTIONS(2178), + [anon_sym_mod] = ACTIONS(2178), + [anon_sym_pub] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_struct] = ACTIONS(2178), + [anon_sym_trait] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_union] = ACTIONS(2178), + [anon_sym_unsafe] = ACTIONS(2178), + [anon_sym_use] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_extern] = ACTIONS(2178), + [anon_sym_raw] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_move] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [sym_integer_literal] = ACTIONS(2176), + [aux_sym_string_literal_token1] = ACTIONS(2176), + [sym_char_literal] = ACTIONS(2176), + [anon_sym_true] = ACTIONS(2178), + [anon_sym_false] = ACTIONS(2178), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_crate] = ACTIONS(2178), + [sym_metavariable] = ACTIONS(2176), + [sym__raw_string_literal_start] = ACTIONS(2176), + [sym_float_literal] = ACTIONS(2176), }, [STATE(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2180), + [anon_sym_macro_rules_BANG] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_LBRACK] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_STAR] = ACTIONS(2180), + [anon_sym_u8] = ACTIONS(2182), + [anon_sym_i8] = ACTIONS(2182), + [anon_sym_u16] = ACTIONS(2182), + [anon_sym_i16] = ACTIONS(2182), + [anon_sym_u32] = ACTIONS(2182), + [anon_sym_i32] = ACTIONS(2182), + [anon_sym_u64] = ACTIONS(2182), + [anon_sym_i64] = ACTIONS(2182), + [anon_sym_u128] = ACTIONS(2182), + [anon_sym_i128] = ACTIONS(2182), + [anon_sym_isize] = ACTIONS(2182), + [anon_sym_usize] = ACTIONS(2182), + [anon_sym_f32] = ACTIONS(2182), + [anon_sym_f64] = ACTIONS(2182), + [anon_sym_bool] = ACTIONS(2182), + [anon_sym_str] = ACTIONS(2182), + [anon_sym_char] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2180), + [anon_sym_BANG] = ACTIONS(2180), + [anon_sym_AMP] = ACTIONS(2180), + [anon_sym_PIPE] = ACTIONS(2180), + [anon_sym_LT] = ACTIONS(2180), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_COLON_COLON] = ACTIONS(2180), + [anon_sym_POUND] = ACTIONS(2180), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_become] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [anon_sym_fn] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_gen] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_impl] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_loop] = ACTIONS(2182), + [anon_sym_match] = ACTIONS(2182), + [anon_sym_mod] = ACTIONS(2182), + [anon_sym_pub] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_struct] = ACTIONS(2182), + [anon_sym_trait] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_union] = ACTIONS(2182), + [anon_sym_unsafe] = ACTIONS(2182), + [anon_sym_use] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_extern] = ACTIONS(2182), + [anon_sym_raw] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_move] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [sym_integer_literal] = ACTIONS(2180), + [aux_sym_string_literal_token1] = ACTIONS(2180), + [sym_char_literal] = ACTIONS(2180), + [anon_sym_true] = ACTIONS(2182), + [anon_sym_false] = ACTIONS(2182), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_crate] = ACTIONS(2182), + [sym_metavariable] = ACTIONS(2180), + [sym__raw_string_literal_start] = ACTIONS(2180), + [sym_float_literal] = ACTIONS(2180), }, [STATE(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2184), + [sym_identifier] = ACTIONS(2186), + [anon_sym_SEMI] = ACTIONS(2184), + [anon_sym_macro_rules_BANG] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2184), + [anon_sym_LBRACK] = ACTIONS(2184), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_u8] = ACTIONS(2186), + [anon_sym_i8] = ACTIONS(2186), + [anon_sym_u16] = ACTIONS(2186), + [anon_sym_i16] = ACTIONS(2186), + [anon_sym_u32] = ACTIONS(2186), + [anon_sym_i32] = ACTIONS(2186), + [anon_sym_u64] = ACTIONS(2186), + [anon_sym_i64] = ACTIONS(2186), + [anon_sym_u128] = ACTIONS(2186), + [anon_sym_i128] = ACTIONS(2186), + [anon_sym_isize] = ACTIONS(2186), + [anon_sym_usize] = ACTIONS(2186), + [anon_sym_f32] = ACTIONS(2186), + [anon_sym_f64] = ACTIONS(2186), + [anon_sym_bool] = ACTIONS(2186), + [anon_sym_str] = ACTIONS(2186), + [anon_sym_char] = ACTIONS(2186), + [anon_sym_DASH] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2184), + [anon_sym_COLON_COLON] = ACTIONS(2184), + [anon_sym_POUND] = ACTIONS(2184), + [anon_sym_SQUOTE] = ACTIONS(2186), + [anon_sym_async] = ACTIONS(2186), + [anon_sym_become] = ACTIONS(2186), + [anon_sym_break] = ACTIONS(2186), + [anon_sym_const] = ACTIONS(2186), + [anon_sym_continue] = ACTIONS(2186), + [anon_sym_default] = ACTIONS(2186), + [anon_sym_enum] = ACTIONS(2186), + [anon_sym_fn] = ACTIONS(2186), + [anon_sym_for] = ACTIONS(2186), + [anon_sym_gen] = ACTIONS(2186), + [anon_sym_if] = ACTIONS(2186), + [anon_sym_impl] = ACTIONS(2186), + [anon_sym_let] = ACTIONS(2186), + [anon_sym_loop] = ACTIONS(2186), + [anon_sym_match] = ACTIONS(2186), + [anon_sym_mod] = ACTIONS(2186), + [anon_sym_pub] = ACTIONS(2186), + [anon_sym_return] = ACTIONS(2186), + [anon_sym_static] = ACTIONS(2186), + [anon_sym_struct] = ACTIONS(2186), + [anon_sym_trait] = ACTIONS(2186), + [anon_sym_type] = ACTIONS(2186), + [anon_sym_union] = ACTIONS(2186), + [anon_sym_unsafe] = ACTIONS(2186), + [anon_sym_use] = ACTIONS(2186), + [anon_sym_while] = ACTIONS(2186), + [anon_sym_extern] = ACTIONS(2186), + [anon_sym_raw] = ACTIONS(2186), + [anon_sym_yield] = ACTIONS(2186), + [anon_sym_move] = ACTIONS(2186), + [anon_sym_try] = ACTIONS(2186), + [sym_integer_literal] = ACTIONS(2184), + [aux_sym_string_literal_token1] = ACTIONS(2184), + [sym_char_literal] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2186), + [anon_sym_false] = ACTIONS(2186), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2186), + [sym_super] = ACTIONS(2186), + [sym_crate] = ACTIONS(2186), + [sym_metavariable] = ACTIONS(2184), + [sym__raw_string_literal_start] = ACTIONS(2184), + [sym_float_literal] = ACTIONS(2184), }, [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2188), + [sym_identifier] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_macro_rules_BANG] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2188), + [anon_sym_u8] = ACTIONS(2190), + [anon_sym_i8] = ACTIONS(2190), + [anon_sym_u16] = ACTIONS(2190), + [anon_sym_i16] = ACTIONS(2190), + [anon_sym_u32] = ACTIONS(2190), + [anon_sym_i32] = ACTIONS(2190), + [anon_sym_u64] = ACTIONS(2190), + [anon_sym_i64] = ACTIONS(2190), + [anon_sym_u128] = ACTIONS(2190), + [anon_sym_i128] = ACTIONS(2190), + [anon_sym_isize] = ACTIONS(2190), + [anon_sym_usize] = ACTIONS(2190), + [anon_sym_f32] = ACTIONS(2190), + [anon_sym_f64] = ACTIONS(2190), + [anon_sym_bool] = ACTIONS(2190), + [anon_sym_str] = ACTIONS(2190), + [anon_sym_char] = ACTIONS(2190), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_AMP] = ACTIONS(2188), + [anon_sym_PIPE] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_COLON_COLON] = ACTIONS(2188), + [anon_sym_POUND] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2190), + [anon_sym_async] = ACTIONS(2190), + [anon_sym_become] = ACTIONS(2190), + [anon_sym_break] = ACTIONS(2190), + [anon_sym_const] = ACTIONS(2190), + [anon_sym_continue] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2190), + [anon_sym_enum] = ACTIONS(2190), + [anon_sym_fn] = ACTIONS(2190), + [anon_sym_for] = ACTIONS(2190), + [anon_sym_gen] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2190), + [anon_sym_impl] = ACTIONS(2190), + [anon_sym_let] = ACTIONS(2190), + [anon_sym_loop] = ACTIONS(2190), + [anon_sym_match] = ACTIONS(2190), + [anon_sym_mod] = ACTIONS(2190), + [anon_sym_pub] = ACTIONS(2190), + [anon_sym_return] = ACTIONS(2190), + [anon_sym_static] = ACTIONS(2190), + [anon_sym_struct] = ACTIONS(2190), + [anon_sym_trait] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2190), + [anon_sym_union] = ACTIONS(2190), + [anon_sym_unsafe] = ACTIONS(2190), + [anon_sym_use] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2190), + [anon_sym_extern] = ACTIONS(2190), + [anon_sym_raw] = ACTIONS(2190), + [anon_sym_yield] = ACTIONS(2190), + [anon_sym_move] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2190), + [sym_integer_literal] = ACTIONS(2188), + [aux_sym_string_literal_token1] = ACTIONS(2188), + [sym_char_literal] = ACTIONS(2188), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2190), + [sym_super] = ACTIONS(2190), + [sym_crate] = ACTIONS(2190), + [sym_metavariable] = ACTIONS(2188), + [sym__raw_string_literal_start] = ACTIONS(2188), + [sym_float_literal] = ACTIONS(2188), }, [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2194), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_macro_rules_BANG] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR] = ACTIONS(2192), + [anon_sym_u8] = ACTIONS(2194), + [anon_sym_i8] = ACTIONS(2194), + [anon_sym_u16] = ACTIONS(2194), + [anon_sym_i16] = ACTIONS(2194), + [anon_sym_u32] = ACTIONS(2194), + [anon_sym_i32] = ACTIONS(2194), + [anon_sym_u64] = ACTIONS(2194), + [anon_sym_i64] = ACTIONS(2194), + [anon_sym_u128] = ACTIONS(2194), + [anon_sym_i128] = ACTIONS(2194), + [anon_sym_isize] = ACTIONS(2194), + [anon_sym_usize] = ACTIONS(2194), + [anon_sym_f32] = ACTIONS(2194), + [anon_sym_f64] = ACTIONS(2194), + [anon_sym_bool] = ACTIONS(2194), + [anon_sym_str] = ACTIONS(2194), + [anon_sym_char] = ACTIONS(2194), + [anon_sym_DASH] = ACTIONS(2192), + [anon_sym_BANG] = ACTIONS(2192), + [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_LT] = ACTIONS(2192), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_COLON_COLON] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(2192), + [anon_sym_SQUOTE] = ACTIONS(2194), + [anon_sym_async] = ACTIONS(2194), + [anon_sym_become] = ACTIONS(2194), + [anon_sym_break] = ACTIONS(2194), + [anon_sym_const] = ACTIONS(2194), + [anon_sym_continue] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2194), + [anon_sym_enum] = ACTIONS(2194), + [anon_sym_fn] = ACTIONS(2194), + [anon_sym_for] = ACTIONS(2194), + [anon_sym_gen] = ACTIONS(2194), + [anon_sym_if] = ACTIONS(2194), + [anon_sym_impl] = ACTIONS(2194), + [anon_sym_let] = ACTIONS(2194), + [anon_sym_loop] = ACTIONS(2194), + [anon_sym_match] = ACTIONS(2194), + [anon_sym_mod] = ACTIONS(2194), + [anon_sym_pub] = ACTIONS(2194), + [anon_sym_return] = ACTIONS(2194), + [anon_sym_static] = ACTIONS(2194), + [anon_sym_struct] = ACTIONS(2194), + [anon_sym_trait] = ACTIONS(2194), + [anon_sym_type] = ACTIONS(2194), + [anon_sym_union] = ACTIONS(2194), + [anon_sym_unsafe] = ACTIONS(2194), + [anon_sym_use] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_extern] = ACTIONS(2194), + [anon_sym_raw] = ACTIONS(2194), + [anon_sym_yield] = ACTIONS(2194), + [anon_sym_move] = ACTIONS(2194), + [anon_sym_try] = ACTIONS(2194), + [sym_integer_literal] = ACTIONS(2192), + [aux_sym_string_literal_token1] = ACTIONS(2192), + [sym_char_literal] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2194), + [anon_sym_false] = ACTIONS(2194), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2194), + [sym_super] = ACTIONS(2194), + [sym_crate] = ACTIONS(2194), + [sym_metavariable] = ACTIONS(2192), + [sym__raw_string_literal_start] = ACTIONS(2192), + [sym_float_literal] = ACTIONS(2192), }, [STATE(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2196), + [sym_identifier] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_macro_rules_BANG] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_u8] = ACTIONS(2198), + [anon_sym_i8] = ACTIONS(2198), + [anon_sym_u16] = ACTIONS(2198), + [anon_sym_i16] = ACTIONS(2198), + [anon_sym_u32] = ACTIONS(2198), + [anon_sym_i32] = ACTIONS(2198), + [anon_sym_u64] = ACTIONS(2198), + [anon_sym_i64] = ACTIONS(2198), + [anon_sym_u128] = ACTIONS(2198), + [anon_sym_i128] = ACTIONS(2198), + [anon_sym_isize] = ACTIONS(2198), + [anon_sym_usize] = ACTIONS(2198), + [anon_sym_f32] = ACTIONS(2198), + [anon_sym_f64] = ACTIONS(2198), + [anon_sym_bool] = ACTIONS(2198), + [anon_sym_str] = ACTIONS(2198), + [anon_sym_char] = ACTIONS(2198), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2196), + [anon_sym_COLON_COLON] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2198), + [anon_sym_async] = ACTIONS(2198), + [anon_sym_become] = ACTIONS(2198), + [anon_sym_break] = ACTIONS(2198), + [anon_sym_const] = ACTIONS(2198), + [anon_sym_continue] = ACTIONS(2198), + [anon_sym_default] = ACTIONS(2198), + [anon_sym_enum] = ACTIONS(2198), + [anon_sym_fn] = ACTIONS(2198), + [anon_sym_for] = ACTIONS(2198), + [anon_sym_gen] = ACTIONS(2198), + [anon_sym_if] = ACTIONS(2198), + [anon_sym_impl] = ACTIONS(2198), + [anon_sym_let] = ACTIONS(2198), + [anon_sym_loop] = ACTIONS(2198), + [anon_sym_match] = ACTIONS(2198), + [anon_sym_mod] = ACTIONS(2198), + [anon_sym_pub] = ACTIONS(2198), + [anon_sym_return] = ACTIONS(2198), + [anon_sym_static] = ACTIONS(2198), + [anon_sym_struct] = ACTIONS(2198), + [anon_sym_trait] = ACTIONS(2198), + [anon_sym_type] = ACTIONS(2198), + [anon_sym_union] = ACTIONS(2198), + [anon_sym_unsafe] = ACTIONS(2198), + [anon_sym_use] = ACTIONS(2198), + [anon_sym_while] = ACTIONS(2198), + [anon_sym_extern] = ACTIONS(2198), + [anon_sym_raw] = ACTIONS(2198), + [anon_sym_yield] = ACTIONS(2198), + [anon_sym_move] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2198), + [sym_integer_literal] = ACTIONS(2196), + [aux_sym_string_literal_token1] = ACTIONS(2196), + [sym_char_literal] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2198), + [sym_super] = ACTIONS(2198), + [sym_crate] = ACTIONS(2198), + [sym_metavariable] = ACTIONS(2196), + [sym__raw_string_literal_start] = ACTIONS(2196), + [sym_float_literal] = ACTIONS(2196), }, [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2200), + [sym_identifier] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2200), + [anon_sym_macro_rules_BANG] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_LBRACK] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR] = ACTIONS(2200), + [anon_sym_u8] = ACTIONS(2202), + [anon_sym_i8] = ACTIONS(2202), + [anon_sym_u16] = ACTIONS(2202), + [anon_sym_i16] = ACTIONS(2202), + [anon_sym_u32] = ACTIONS(2202), + [anon_sym_i32] = ACTIONS(2202), + [anon_sym_u64] = ACTIONS(2202), + [anon_sym_i64] = ACTIONS(2202), + [anon_sym_u128] = ACTIONS(2202), + [anon_sym_i128] = ACTIONS(2202), + [anon_sym_isize] = ACTIONS(2202), + [anon_sym_usize] = ACTIONS(2202), + [anon_sym_f32] = ACTIONS(2202), + [anon_sym_f64] = ACTIONS(2202), + [anon_sym_bool] = ACTIONS(2202), + [anon_sym_str] = ACTIONS(2202), + [anon_sym_char] = ACTIONS(2202), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_BANG] = ACTIONS(2200), + [anon_sym_AMP] = ACTIONS(2200), + [anon_sym_PIPE] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(2200), + [anon_sym_SQUOTE] = ACTIONS(2202), + [anon_sym_async] = ACTIONS(2202), + [anon_sym_become] = ACTIONS(2202), + [anon_sym_break] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2202), + [anon_sym_continue] = ACTIONS(2202), + [anon_sym_default] = ACTIONS(2202), + [anon_sym_enum] = ACTIONS(2202), + [anon_sym_fn] = ACTIONS(2202), + [anon_sym_for] = ACTIONS(2202), + [anon_sym_gen] = ACTIONS(2202), + [anon_sym_if] = ACTIONS(2202), + [anon_sym_impl] = ACTIONS(2202), + [anon_sym_let] = ACTIONS(2202), + [anon_sym_loop] = ACTIONS(2202), + [anon_sym_match] = ACTIONS(2202), + [anon_sym_mod] = ACTIONS(2202), + [anon_sym_pub] = ACTIONS(2202), + [anon_sym_return] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2202), + [anon_sym_struct] = ACTIONS(2202), + [anon_sym_trait] = ACTIONS(2202), + [anon_sym_type] = ACTIONS(2202), + [anon_sym_union] = ACTIONS(2202), + [anon_sym_unsafe] = ACTIONS(2202), + [anon_sym_use] = ACTIONS(2202), + [anon_sym_while] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2202), + [anon_sym_raw] = ACTIONS(2202), + [anon_sym_yield] = ACTIONS(2202), + [anon_sym_move] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2202), + [sym_integer_literal] = ACTIONS(2200), + [aux_sym_string_literal_token1] = ACTIONS(2200), + [sym_char_literal] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2202), + [sym_super] = ACTIONS(2202), + [sym_crate] = ACTIONS(2202), + [sym_metavariable] = ACTIONS(2200), + [sym__raw_string_literal_start] = ACTIONS(2200), + [sym_float_literal] = ACTIONS(2200), }, [STATE(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_macro_rules_BANG] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_u8] = ACTIONS(2206), + [anon_sym_i8] = ACTIONS(2206), + [anon_sym_u16] = ACTIONS(2206), + [anon_sym_i16] = ACTIONS(2206), + [anon_sym_u32] = ACTIONS(2206), + [anon_sym_i32] = ACTIONS(2206), + [anon_sym_u64] = ACTIONS(2206), + [anon_sym_i64] = ACTIONS(2206), + [anon_sym_u128] = ACTIONS(2206), + [anon_sym_i128] = ACTIONS(2206), + [anon_sym_isize] = ACTIONS(2206), + [anon_sym_usize] = ACTIONS(2206), + [anon_sym_f32] = ACTIONS(2206), + [anon_sym_f64] = ACTIONS(2206), + [anon_sym_bool] = ACTIONS(2206), + [anon_sym_str] = ACTIONS(2206), + [anon_sym_char] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2204), + [anon_sym_POUND] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2206), + [anon_sym_async] = ACTIONS(2206), + [anon_sym_become] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2206), + [anon_sym_enum] = ACTIONS(2206), + [anon_sym_fn] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_gen] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_impl] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_mod] = ACTIONS(2206), + [anon_sym_pub] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2206), + [anon_sym_struct] = ACTIONS(2206), + [anon_sym_trait] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2206), + [anon_sym_union] = ACTIONS(2206), + [anon_sym_unsafe] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_raw] = ACTIONS(2206), + [anon_sym_yield] = ACTIONS(2206), + [anon_sym_move] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [sym_integer_literal] = ACTIONS(2204), + [aux_sym_string_literal_token1] = ACTIONS(2204), + [sym_char_literal] = ACTIONS(2204), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2206), + [sym_super] = ACTIONS(2206), + [sym_crate] = ACTIONS(2206), + [sym_metavariable] = ACTIONS(2204), + [sym__raw_string_literal_start] = ACTIONS(2204), + [sym_float_literal] = ACTIONS(2204), }, [STATE(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2210), + [anon_sym_SEMI] = ACTIONS(2208), + [anon_sym_macro_rules_BANG] = ACTIONS(2208), + [anon_sym_LPAREN] = ACTIONS(2208), + [anon_sym_LBRACK] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2208), + [anon_sym_RBRACE] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2208), + [anon_sym_u8] = ACTIONS(2210), + [anon_sym_i8] = ACTIONS(2210), + [anon_sym_u16] = ACTIONS(2210), + [anon_sym_i16] = ACTIONS(2210), + [anon_sym_u32] = ACTIONS(2210), + [anon_sym_i32] = ACTIONS(2210), + [anon_sym_u64] = ACTIONS(2210), + [anon_sym_i64] = ACTIONS(2210), + [anon_sym_u128] = ACTIONS(2210), + [anon_sym_i128] = ACTIONS(2210), + [anon_sym_isize] = ACTIONS(2210), + [anon_sym_usize] = ACTIONS(2210), + [anon_sym_f32] = ACTIONS(2210), + [anon_sym_f64] = ACTIONS(2210), + [anon_sym_bool] = ACTIONS(2210), + [anon_sym_str] = ACTIONS(2210), + [anon_sym_char] = ACTIONS(2210), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_BANG] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_PIPE] = ACTIONS(2208), + [anon_sym_LT] = ACTIONS(2208), + [anon_sym_DOT_DOT] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2208), + [anon_sym_POUND] = ACTIONS(2208), + [anon_sym_SQUOTE] = ACTIONS(2210), + [anon_sym_async] = ACTIONS(2210), + [anon_sym_become] = ACTIONS(2210), + [anon_sym_break] = ACTIONS(2210), + [anon_sym_const] = ACTIONS(2210), + [anon_sym_continue] = ACTIONS(2210), + [anon_sym_default] = ACTIONS(2210), + [anon_sym_enum] = ACTIONS(2210), + [anon_sym_fn] = ACTIONS(2210), + [anon_sym_for] = ACTIONS(2210), + [anon_sym_gen] = ACTIONS(2210), + [anon_sym_if] = ACTIONS(2210), + [anon_sym_impl] = ACTIONS(2210), + [anon_sym_let] = ACTIONS(2210), + [anon_sym_loop] = ACTIONS(2210), + [anon_sym_match] = ACTIONS(2210), + [anon_sym_mod] = ACTIONS(2210), + [anon_sym_pub] = ACTIONS(2210), + [anon_sym_return] = ACTIONS(2210), + [anon_sym_static] = ACTIONS(2210), + [anon_sym_struct] = ACTIONS(2210), + [anon_sym_trait] = ACTIONS(2210), + [anon_sym_type] = ACTIONS(2210), + [anon_sym_union] = ACTIONS(2210), + [anon_sym_unsafe] = ACTIONS(2210), + [anon_sym_use] = ACTIONS(2210), + [anon_sym_while] = ACTIONS(2210), + [anon_sym_extern] = ACTIONS(2210), + [anon_sym_raw] = ACTIONS(2210), + [anon_sym_yield] = ACTIONS(2210), + [anon_sym_move] = ACTIONS(2210), + [anon_sym_try] = ACTIONS(2210), + [sym_integer_literal] = ACTIONS(2208), + [aux_sym_string_literal_token1] = ACTIONS(2208), + [sym_char_literal] = ACTIONS(2208), + [anon_sym_true] = ACTIONS(2210), + [anon_sym_false] = ACTIONS(2210), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2210), + [sym_super] = ACTIONS(2210), + [sym_crate] = ACTIONS(2210), + [sym_metavariable] = ACTIONS(2208), + [sym__raw_string_literal_start] = ACTIONS(2208), + [sym_float_literal] = ACTIONS(2208), }, [STATE(593)] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2214), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_macro_rules_BANG] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2212), + [anon_sym_u8] = ACTIONS(2214), + [anon_sym_i8] = ACTIONS(2214), + [anon_sym_u16] = ACTIONS(2214), + [anon_sym_i16] = ACTIONS(2214), + [anon_sym_u32] = ACTIONS(2214), + [anon_sym_i32] = ACTIONS(2214), + [anon_sym_u64] = ACTIONS(2214), + [anon_sym_i64] = ACTIONS(2214), + [anon_sym_u128] = ACTIONS(2214), + [anon_sym_i128] = ACTIONS(2214), + [anon_sym_isize] = ACTIONS(2214), + [anon_sym_usize] = ACTIONS(2214), + [anon_sym_f32] = ACTIONS(2214), + [anon_sym_f64] = ACTIONS(2214), + [anon_sym_bool] = ACTIONS(2214), + [anon_sym_str] = ACTIONS(2214), + [anon_sym_char] = ACTIONS(2214), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_AMP] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2212), + [anon_sym_COLON_COLON] = ACTIONS(2212), + [anon_sym_POUND] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2214), + [anon_sym_async] = ACTIONS(2214), + [anon_sym_become] = ACTIONS(2214), + [anon_sym_break] = ACTIONS(2214), + [anon_sym_const] = ACTIONS(2214), + [anon_sym_continue] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2214), + [anon_sym_enum] = ACTIONS(2214), + [anon_sym_fn] = ACTIONS(2214), + [anon_sym_for] = ACTIONS(2214), + [anon_sym_gen] = ACTIONS(2214), + [anon_sym_if] = ACTIONS(2214), + [anon_sym_impl] = ACTIONS(2214), + [anon_sym_let] = ACTIONS(2214), + [anon_sym_loop] = ACTIONS(2214), + [anon_sym_match] = ACTIONS(2214), + [anon_sym_mod] = ACTIONS(2214), + [anon_sym_pub] = ACTIONS(2214), + [anon_sym_return] = ACTIONS(2214), + [anon_sym_static] = ACTIONS(2214), + [anon_sym_struct] = ACTIONS(2214), + [anon_sym_trait] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2214), + [anon_sym_union] = ACTIONS(2214), + [anon_sym_unsafe] = ACTIONS(2214), + [anon_sym_use] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2214), + [anon_sym_extern] = ACTIONS(2214), + [anon_sym_raw] = ACTIONS(2214), + [anon_sym_yield] = ACTIONS(2214), + [anon_sym_move] = ACTIONS(2214), + [anon_sym_try] = ACTIONS(2214), + [sym_integer_literal] = ACTIONS(2212), + [aux_sym_string_literal_token1] = ACTIONS(2212), + [sym_char_literal] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2214), + [anon_sym_false] = ACTIONS(2214), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2214), + [sym_super] = ACTIONS(2214), + [sym_crate] = ACTIONS(2214), + [sym_metavariable] = ACTIONS(2212), + [sym__raw_string_literal_start] = ACTIONS(2212), + [sym_float_literal] = ACTIONS(2212), }, [STATE(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2216), + [sym_identifier] = ACTIONS(2218), + [anon_sym_SEMI] = ACTIONS(2216), + [anon_sym_macro_rules_BANG] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_STAR] = ACTIONS(2216), + [anon_sym_u8] = ACTIONS(2218), + [anon_sym_i8] = ACTIONS(2218), + [anon_sym_u16] = ACTIONS(2218), + [anon_sym_i16] = ACTIONS(2218), + [anon_sym_u32] = ACTIONS(2218), + [anon_sym_i32] = ACTIONS(2218), + [anon_sym_u64] = ACTIONS(2218), + [anon_sym_i64] = ACTIONS(2218), + [anon_sym_u128] = ACTIONS(2218), + [anon_sym_i128] = ACTIONS(2218), + [anon_sym_isize] = ACTIONS(2218), + [anon_sym_usize] = ACTIONS(2218), + [anon_sym_f32] = ACTIONS(2218), + [anon_sym_f64] = ACTIONS(2218), + [anon_sym_bool] = ACTIONS(2218), + [anon_sym_str] = ACTIONS(2218), + [anon_sym_char] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2216), + [anon_sym_BANG] = ACTIONS(2216), + [anon_sym_AMP] = ACTIONS(2216), + [anon_sym_PIPE] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2216), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(2216), + [anon_sym_SQUOTE] = ACTIONS(2218), + [anon_sym_async] = ACTIONS(2218), + [anon_sym_become] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_default] = ACTIONS(2218), + [anon_sym_enum] = ACTIONS(2218), + [anon_sym_fn] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_gen] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_impl] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_mod] = ACTIONS(2218), + [anon_sym_pub] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_static] = ACTIONS(2218), + [anon_sym_struct] = ACTIONS(2218), + [anon_sym_trait] = ACTIONS(2218), + [anon_sym_type] = ACTIONS(2218), + [anon_sym_union] = ACTIONS(2218), + [anon_sym_unsafe] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_raw] = ACTIONS(2218), + [anon_sym_yield] = ACTIONS(2218), + [anon_sym_move] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [sym_integer_literal] = ACTIONS(2216), + [aux_sym_string_literal_token1] = ACTIONS(2216), + [sym_char_literal] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2218), + [sym_super] = ACTIONS(2218), + [sym_crate] = ACTIONS(2218), + [sym_metavariable] = ACTIONS(2216), + [sym__raw_string_literal_start] = ACTIONS(2216), + [sym_float_literal] = ACTIONS(2216), }, [STATE(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2220), + [sym_identifier] = ACTIONS(2222), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_macro_rules_BANG] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_STAR] = ACTIONS(2220), + [anon_sym_u8] = ACTIONS(2222), + [anon_sym_i8] = ACTIONS(2222), + [anon_sym_u16] = ACTIONS(2222), + [anon_sym_i16] = ACTIONS(2222), + [anon_sym_u32] = ACTIONS(2222), + [anon_sym_i32] = ACTIONS(2222), + [anon_sym_u64] = ACTIONS(2222), + [anon_sym_i64] = ACTIONS(2222), + [anon_sym_u128] = ACTIONS(2222), + [anon_sym_i128] = ACTIONS(2222), + [anon_sym_isize] = ACTIONS(2222), + [anon_sym_usize] = ACTIONS(2222), + [anon_sym_f32] = ACTIONS(2222), + [anon_sym_f64] = ACTIONS(2222), + [anon_sym_bool] = ACTIONS(2222), + [anon_sym_str] = ACTIONS(2222), + [anon_sym_char] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2220), + [anon_sym_BANG] = ACTIONS(2220), + [anon_sym_AMP] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_LT] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2220), + [anon_sym_COLON_COLON] = ACTIONS(2220), + [anon_sym_POUND] = ACTIONS(2220), + [anon_sym_SQUOTE] = ACTIONS(2222), + [anon_sym_async] = ACTIONS(2222), + [anon_sym_become] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_default] = ACTIONS(2222), + [anon_sym_enum] = ACTIONS(2222), + [anon_sym_fn] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_gen] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_impl] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_mod] = ACTIONS(2222), + [anon_sym_pub] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_static] = ACTIONS(2222), + [anon_sym_struct] = ACTIONS(2222), + [anon_sym_trait] = ACTIONS(2222), + [anon_sym_type] = ACTIONS(2222), + [anon_sym_union] = ACTIONS(2222), + [anon_sym_unsafe] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_raw] = ACTIONS(2222), + [anon_sym_yield] = ACTIONS(2222), + [anon_sym_move] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [sym_integer_literal] = ACTIONS(2220), + [aux_sym_string_literal_token1] = ACTIONS(2220), + [sym_char_literal] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2222), + [sym_super] = ACTIONS(2222), + [sym_crate] = ACTIONS(2222), + [sym_metavariable] = ACTIONS(2220), + [sym__raw_string_literal_start] = ACTIONS(2220), + [sym_float_literal] = ACTIONS(2220), }, [STATE(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2224), + [sym_identifier] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2224), + [anon_sym_macro_rules_BANG] = ACTIONS(2224), + [anon_sym_LPAREN] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LBRACE] = ACTIONS(2224), + [anon_sym_RBRACE] = ACTIONS(2224), + [anon_sym_STAR] = ACTIONS(2224), + [anon_sym_u8] = ACTIONS(2226), + [anon_sym_i8] = ACTIONS(2226), + [anon_sym_u16] = ACTIONS(2226), + [anon_sym_i16] = ACTIONS(2226), + [anon_sym_u32] = ACTIONS(2226), + [anon_sym_i32] = ACTIONS(2226), + [anon_sym_u64] = ACTIONS(2226), + [anon_sym_i64] = ACTIONS(2226), + [anon_sym_u128] = ACTIONS(2226), + [anon_sym_i128] = ACTIONS(2226), + [anon_sym_isize] = ACTIONS(2226), + [anon_sym_usize] = ACTIONS(2226), + [anon_sym_f32] = ACTIONS(2226), + [anon_sym_f64] = ACTIONS(2226), + [anon_sym_bool] = ACTIONS(2226), + [anon_sym_str] = ACTIONS(2226), + [anon_sym_char] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2224), + [anon_sym_AMP] = ACTIONS(2224), + [anon_sym_PIPE] = ACTIONS(2224), + [anon_sym_LT] = ACTIONS(2224), + [anon_sym_DOT_DOT] = ACTIONS(2224), + [anon_sym_COLON_COLON] = ACTIONS(2224), + [anon_sym_POUND] = ACTIONS(2224), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_become] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [anon_sym_fn] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_gen] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_impl] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_mod] = ACTIONS(2226), + [anon_sym_pub] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_struct] = ACTIONS(2226), + [anon_sym_trait] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_union] = ACTIONS(2226), + [anon_sym_unsafe] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_raw] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_move] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [sym_integer_literal] = ACTIONS(2224), + [aux_sym_string_literal_token1] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_crate] = ACTIONS(2226), + [sym_metavariable] = ACTIONS(2224), + [sym__raw_string_literal_start] = ACTIONS(2224), + [sym_float_literal] = ACTIONS(2224), }, [STATE(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2228), + [sym_identifier] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_macro_rules_BANG] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_u8] = ACTIONS(2230), + [anon_sym_i8] = ACTIONS(2230), + [anon_sym_u16] = ACTIONS(2230), + [anon_sym_i16] = ACTIONS(2230), + [anon_sym_u32] = ACTIONS(2230), + [anon_sym_i32] = ACTIONS(2230), + [anon_sym_u64] = ACTIONS(2230), + [anon_sym_i64] = ACTIONS(2230), + [anon_sym_u128] = ACTIONS(2230), + [anon_sym_i128] = ACTIONS(2230), + [anon_sym_isize] = ACTIONS(2230), + [anon_sym_usize] = ACTIONS(2230), + [anon_sym_f32] = ACTIONS(2230), + [anon_sym_f64] = ACTIONS(2230), + [anon_sym_bool] = ACTIONS(2230), + [anon_sym_str] = ACTIONS(2230), + [anon_sym_char] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2228), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2228), + [anon_sym_COLON_COLON] = ACTIONS(2228), + [anon_sym_POUND] = ACTIONS(2228), + [anon_sym_SQUOTE] = ACTIONS(2230), + [anon_sym_async] = ACTIONS(2230), + [anon_sym_become] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_default] = ACTIONS(2230), + [anon_sym_enum] = ACTIONS(2230), + [anon_sym_fn] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_gen] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_impl] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_mod] = ACTIONS(2230), + [anon_sym_pub] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_static] = ACTIONS(2230), + [anon_sym_struct] = ACTIONS(2230), + [anon_sym_trait] = ACTIONS(2230), + [anon_sym_type] = ACTIONS(2230), + [anon_sym_union] = ACTIONS(2230), + [anon_sym_unsafe] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_raw] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2230), + [anon_sym_move] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [sym_integer_literal] = ACTIONS(2228), + [aux_sym_string_literal_token1] = ACTIONS(2228), + [sym_char_literal] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2230), + [sym_super] = ACTIONS(2230), + [sym_crate] = ACTIONS(2230), + [sym_metavariable] = ACTIONS(2228), + [sym__raw_string_literal_start] = ACTIONS(2228), + [sym_float_literal] = ACTIONS(2228), }, [STATE(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_macro_rules_BANG] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_u8] = ACTIONS(2234), + [anon_sym_i8] = ACTIONS(2234), + [anon_sym_u16] = ACTIONS(2234), + [anon_sym_i16] = ACTIONS(2234), + [anon_sym_u32] = ACTIONS(2234), + [anon_sym_i32] = ACTIONS(2234), + [anon_sym_u64] = ACTIONS(2234), + [anon_sym_i64] = ACTIONS(2234), + [anon_sym_u128] = ACTIONS(2234), + [anon_sym_i128] = ACTIONS(2234), + [anon_sym_isize] = ACTIONS(2234), + [anon_sym_usize] = ACTIONS(2234), + [anon_sym_f32] = ACTIONS(2234), + [anon_sym_f64] = ACTIONS(2234), + [anon_sym_bool] = ACTIONS(2234), + [anon_sym_str] = ACTIONS(2234), + [anon_sym_char] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_BANG] = ACTIONS(2232), + [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_LT] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2232), + [anon_sym_COLON_COLON] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(2232), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_become] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [anon_sym_fn] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_gen] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_impl] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_mod] = ACTIONS(2234), + [anon_sym_pub] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_struct] = ACTIONS(2234), + [anon_sym_trait] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_union] = ACTIONS(2234), + [anon_sym_unsafe] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_raw] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_move] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [sym_integer_literal] = ACTIONS(2232), + [aux_sym_string_literal_token1] = ACTIONS(2232), + [sym_char_literal] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_crate] = ACTIONS(2234), + [sym_metavariable] = ACTIONS(2232), + [sym__raw_string_literal_start] = ACTIONS(2232), + [sym_float_literal] = ACTIONS(2232), }, [STATE(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2236), + [sym_identifier] = ACTIONS(2238), + [anon_sym_SEMI] = ACTIONS(2236), + [anon_sym_macro_rules_BANG] = ACTIONS(2236), + [anon_sym_LPAREN] = ACTIONS(2236), + [anon_sym_LBRACK] = ACTIONS(2236), + [anon_sym_LBRACE] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2236), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_u8] = ACTIONS(2238), + [anon_sym_i8] = ACTIONS(2238), + [anon_sym_u16] = ACTIONS(2238), + [anon_sym_i16] = ACTIONS(2238), + [anon_sym_u32] = ACTIONS(2238), + [anon_sym_i32] = ACTIONS(2238), + [anon_sym_u64] = ACTIONS(2238), + [anon_sym_i64] = ACTIONS(2238), + [anon_sym_u128] = ACTIONS(2238), + [anon_sym_i128] = ACTIONS(2238), + [anon_sym_isize] = ACTIONS(2238), + [anon_sym_usize] = ACTIONS(2238), + [anon_sym_f32] = ACTIONS(2238), + [anon_sym_f64] = ACTIONS(2238), + [anon_sym_bool] = ACTIONS(2238), + [anon_sym_str] = ACTIONS(2238), + [anon_sym_char] = ACTIONS(2238), + [anon_sym_DASH] = ACTIONS(2236), + [anon_sym_BANG] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2236), + [anon_sym_DOT_DOT] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2236), + [anon_sym_POUND] = ACTIONS(2236), + [anon_sym_SQUOTE] = ACTIONS(2238), + [anon_sym_async] = ACTIONS(2238), + [anon_sym_become] = ACTIONS(2238), + [anon_sym_break] = ACTIONS(2238), + [anon_sym_const] = ACTIONS(2238), + [anon_sym_continue] = ACTIONS(2238), + [anon_sym_default] = ACTIONS(2238), + [anon_sym_enum] = ACTIONS(2238), + [anon_sym_fn] = ACTIONS(2238), + [anon_sym_for] = ACTIONS(2238), + [anon_sym_gen] = ACTIONS(2238), + [anon_sym_if] = ACTIONS(2238), + [anon_sym_impl] = ACTIONS(2238), + [anon_sym_let] = ACTIONS(2238), + [anon_sym_loop] = ACTIONS(2238), + [anon_sym_match] = ACTIONS(2238), + [anon_sym_mod] = ACTIONS(2238), + [anon_sym_pub] = ACTIONS(2238), + [anon_sym_return] = ACTIONS(2238), + [anon_sym_static] = ACTIONS(2238), + [anon_sym_struct] = ACTIONS(2238), + [anon_sym_trait] = ACTIONS(2238), + [anon_sym_type] = ACTIONS(2238), + [anon_sym_union] = ACTIONS(2238), + [anon_sym_unsafe] = ACTIONS(2238), + [anon_sym_use] = ACTIONS(2238), + [anon_sym_while] = ACTIONS(2238), + [anon_sym_extern] = ACTIONS(2238), + [anon_sym_raw] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2238), + [anon_sym_move] = ACTIONS(2238), + [anon_sym_try] = ACTIONS(2238), + [sym_integer_literal] = ACTIONS(2236), + [aux_sym_string_literal_token1] = ACTIONS(2236), + [sym_char_literal] = ACTIONS(2236), + [anon_sym_true] = ACTIONS(2238), + [anon_sym_false] = ACTIONS(2238), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2238), + [sym_super] = ACTIONS(2238), + [sym_crate] = ACTIONS(2238), + [sym_metavariable] = ACTIONS(2236), + [sym__raw_string_literal_start] = ACTIONS(2236), + [sym_float_literal] = ACTIONS(2236), }, [STATE(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2240), + [sym_identifier] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_macro_rules_BANG] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_STAR] = ACTIONS(2240), + [anon_sym_u8] = ACTIONS(2242), + [anon_sym_i8] = ACTIONS(2242), + [anon_sym_u16] = ACTIONS(2242), + [anon_sym_i16] = ACTIONS(2242), + [anon_sym_u32] = ACTIONS(2242), + [anon_sym_i32] = ACTIONS(2242), + [anon_sym_u64] = ACTIONS(2242), + [anon_sym_i64] = ACTIONS(2242), + [anon_sym_u128] = ACTIONS(2242), + [anon_sym_i128] = ACTIONS(2242), + [anon_sym_isize] = ACTIONS(2242), + [anon_sym_usize] = ACTIONS(2242), + [anon_sym_f32] = ACTIONS(2242), + [anon_sym_f64] = ACTIONS(2242), + [anon_sym_bool] = ACTIONS(2242), + [anon_sym_str] = ACTIONS(2242), + [anon_sym_char] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2240), + [anon_sym_BANG] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_LT] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2240), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_POUND] = ACTIONS(2240), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_become] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [anon_sym_fn] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_gen] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_impl] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_mod] = ACTIONS(2242), + [anon_sym_pub] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_struct] = ACTIONS(2242), + [anon_sym_trait] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_union] = ACTIONS(2242), + [anon_sym_unsafe] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_raw] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_move] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [sym_integer_literal] = ACTIONS(2240), + [aux_sym_string_literal_token1] = ACTIONS(2240), + [sym_char_literal] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_crate] = ACTIONS(2242), + [sym_metavariable] = ACTIONS(2240), + [sym__raw_string_literal_start] = ACTIONS(2240), + [sym_float_literal] = ACTIONS(2240), }, [STATE(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2244), + [sym_identifier] = ACTIONS(2246), + [anon_sym_SEMI] = ACTIONS(2244), + [anon_sym_macro_rules_BANG] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(2244), + [anon_sym_LBRACE] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_u8] = ACTIONS(2246), + [anon_sym_i8] = ACTIONS(2246), + [anon_sym_u16] = ACTIONS(2246), + [anon_sym_i16] = ACTIONS(2246), + [anon_sym_u32] = ACTIONS(2246), + [anon_sym_i32] = ACTIONS(2246), + [anon_sym_u64] = ACTIONS(2246), + [anon_sym_i64] = ACTIONS(2246), + [anon_sym_u128] = ACTIONS(2246), + [anon_sym_i128] = ACTIONS(2246), + [anon_sym_isize] = ACTIONS(2246), + [anon_sym_usize] = ACTIONS(2246), + [anon_sym_f32] = ACTIONS(2246), + [anon_sym_f64] = ACTIONS(2246), + [anon_sym_bool] = ACTIONS(2246), + [anon_sym_str] = ACTIONS(2246), + [anon_sym_char] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2244), + [anon_sym_BANG] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2244), + [anon_sym_COLON_COLON] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [anon_sym_SQUOTE] = ACTIONS(2246), + [anon_sym_async] = ACTIONS(2246), + [anon_sym_become] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_default] = ACTIONS(2246), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_fn] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_gen] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_impl] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_mod] = ACTIONS(2246), + [anon_sym_pub] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_static] = ACTIONS(2246), + [anon_sym_struct] = ACTIONS(2246), + [anon_sym_trait] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_union] = ACTIONS(2246), + [anon_sym_unsafe] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_raw] = ACTIONS(2246), + [anon_sym_yield] = ACTIONS(2246), + [anon_sym_move] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2246), + [sym_integer_literal] = ACTIONS(2244), + [aux_sym_string_literal_token1] = ACTIONS(2244), + [sym_char_literal] = ACTIONS(2244), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2246), + [sym_super] = ACTIONS(2246), + [sym_crate] = ACTIONS(2246), + [sym_metavariable] = ACTIONS(2244), + [sym__raw_string_literal_start] = ACTIONS(2244), + [sym_float_literal] = ACTIONS(2244), }, [STATE(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2248), + [sym_identifier] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2248), + [anon_sym_macro_rules_BANG] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_STAR] = ACTIONS(2248), + [anon_sym_u8] = ACTIONS(2250), + [anon_sym_i8] = ACTIONS(2250), + [anon_sym_u16] = ACTIONS(2250), + [anon_sym_i16] = ACTIONS(2250), + [anon_sym_u32] = ACTIONS(2250), + [anon_sym_i32] = ACTIONS(2250), + [anon_sym_u64] = ACTIONS(2250), + [anon_sym_i64] = ACTIONS(2250), + [anon_sym_u128] = ACTIONS(2250), + [anon_sym_i128] = ACTIONS(2250), + [anon_sym_isize] = ACTIONS(2250), + [anon_sym_usize] = ACTIONS(2250), + [anon_sym_f32] = ACTIONS(2250), + [anon_sym_f64] = ACTIONS(2250), + [anon_sym_bool] = ACTIONS(2250), + [anon_sym_str] = ACTIONS(2250), + [anon_sym_char] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2248), + [anon_sym_BANG] = ACTIONS(2248), + [anon_sym_AMP] = ACTIONS(2248), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_LT] = ACTIONS(2248), + [anon_sym_DOT_DOT] = ACTIONS(2248), + [anon_sym_COLON_COLON] = ACTIONS(2248), + [anon_sym_POUND] = ACTIONS(2248), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_become] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [anon_sym_fn] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_gen] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_impl] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_loop] = ACTIONS(2250), + [anon_sym_match] = ACTIONS(2250), + [anon_sym_mod] = ACTIONS(2250), + [anon_sym_pub] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_trait] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2250), + [anon_sym_unsafe] = ACTIONS(2250), + [anon_sym_use] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_extern] = ACTIONS(2250), + [anon_sym_raw] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_move] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [sym_integer_literal] = ACTIONS(2248), + [aux_sym_string_literal_token1] = ACTIONS(2248), + [sym_char_literal] = ACTIONS(2248), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_crate] = ACTIONS(2250), + [sym_metavariable] = ACTIONS(2248), + [sym__raw_string_literal_start] = ACTIONS(2248), + [sym_float_literal] = ACTIONS(2248), }, [STATE(603)] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2254), + [anon_sym_SEMI] = ACTIONS(2252), + [anon_sym_macro_rules_BANG] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(2252), + [anon_sym_LBRACE] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_u8] = ACTIONS(2254), + [anon_sym_i8] = ACTIONS(2254), + [anon_sym_u16] = ACTIONS(2254), + [anon_sym_i16] = ACTIONS(2254), + [anon_sym_u32] = ACTIONS(2254), + [anon_sym_i32] = ACTIONS(2254), + [anon_sym_u64] = ACTIONS(2254), + [anon_sym_i64] = ACTIONS(2254), + [anon_sym_u128] = ACTIONS(2254), + [anon_sym_i128] = ACTIONS(2254), + [anon_sym_isize] = ACTIONS(2254), + [anon_sym_usize] = ACTIONS(2254), + [anon_sym_f32] = ACTIONS(2254), + [anon_sym_f64] = ACTIONS(2254), + [anon_sym_bool] = ACTIONS(2254), + [anon_sym_str] = ACTIONS(2254), + [anon_sym_char] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2252), + [anon_sym_BANG] = ACTIONS(2252), + [anon_sym_AMP] = ACTIONS(2252), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2252), + [anon_sym_DOT_DOT] = ACTIONS(2252), + [anon_sym_COLON_COLON] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2252), + [anon_sym_SQUOTE] = ACTIONS(2254), + [anon_sym_async] = ACTIONS(2254), + [anon_sym_become] = ACTIONS(2254), + [anon_sym_break] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [anon_sym_continue] = ACTIONS(2254), + [anon_sym_default] = ACTIONS(2254), + [anon_sym_enum] = ACTIONS(2254), + [anon_sym_fn] = ACTIONS(2254), + [anon_sym_for] = ACTIONS(2254), + [anon_sym_gen] = ACTIONS(2254), + [anon_sym_if] = ACTIONS(2254), + [anon_sym_impl] = ACTIONS(2254), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_loop] = ACTIONS(2254), + [anon_sym_match] = ACTIONS(2254), + [anon_sym_mod] = ACTIONS(2254), + [anon_sym_pub] = ACTIONS(2254), + [anon_sym_return] = ACTIONS(2254), + [anon_sym_static] = ACTIONS(2254), + [anon_sym_struct] = ACTIONS(2254), + [anon_sym_trait] = ACTIONS(2254), + [anon_sym_type] = ACTIONS(2254), + [anon_sym_union] = ACTIONS(2254), + [anon_sym_unsafe] = ACTIONS(2254), + [anon_sym_use] = ACTIONS(2254), + [anon_sym_while] = ACTIONS(2254), + [anon_sym_extern] = ACTIONS(2254), + [anon_sym_raw] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2254), + [anon_sym_move] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2254), + [sym_integer_literal] = ACTIONS(2252), + [aux_sym_string_literal_token1] = ACTIONS(2252), + [sym_char_literal] = ACTIONS(2252), + [anon_sym_true] = ACTIONS(2254), + [anon_sym_false] = ACTIONS(2254), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2254), + [sym_super] = ACTIONS(2254), + [sym_crate] = ACTIONS(2254), + [sym_metavariable] = ACTIONS(2252), + [sym__raw_string_literal_start] = ACTIONS(2252), + [sym_float_literal] = ACTIONS(2252), }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2256), + [sym_identifier] = ACTIONS(2258), + [anon_sym_SEMI] = ACTIONS(2256), + [anon_sym_macro_rules_BANG] = ACTIONS(2256), + [anon_sym_LPAREN] = ACTIONS(2256), + [anon_sym_LBRACK] = ACTIONS(2256), + [anon_sym_LBRACE] = ACTIONS(2256), + [anon_sym_RBRACE] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2256), + [anon_sym_u8] = ACTIONS(2258), + [anon_sym_i8] = ACTIONS(2258), + [anon_sym_u16] = ACTIONS(2258), + [anon_sym_i16] = ACTIONS(2258), + [anon_sym_u32] = ACTIONS(2258), + [anon_sym_i32] = ACTIONS(2258), + [anon_sym_u64] = ACTIONS(2258), + [anon_sym_i64] = ACTIONS(2258), + [anon_sym_u128] = ACTIONS(2258), + [anon_sym_i128] = ACTIONS(2258), + [anon_sym_isize] = ACTIONS(2258), + [anon_sym_usize] = ACTIONS(2258), + [anon_sym_f32] = ACTIONS(2258), + [anon_sym_f64] = ACTIONS(2258), + [anon_sym_bool] = ACTIONS(2258), + [anon_sym_str] = ACTIONS(2258), + [anon_sym_char] = ACTIONS(2258), + [anon_sym_DASH] = ACTIONS(2256), + [anon_sym_BANG] = ACTIONS(2256), + [anon_sym_AMP] = ACTIONS(2256), + [anon_sym_PIPE] = ACTIONS(2256), + [anon_sym_LT] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2256), + [anon_sym_COLON_COLON] = ACTIONS(2256), + [anon_sym_POUND] = ACTIONS(2256), + [anon_sym_SQUOTE] = ACTIONS(2258), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_become] = ACTIONS(2258), + [anon_sym_break] = ACTIONS(2258), + [anon_sym_const] = ACTIONS(2258), + [anon_sym_continue] = ACTIONS(2258), + [anon_sym_default] = ACTIONS(2258), + [anon_sym_enum] = ACTIONS(2258), + [anon_sym_fn] = ACTIONS(2258), + [anon_sym_for] = ACTIONS(2258), + [anon_sym_gen] = ACTIONS(2258), + [anon_sym_if] = ACTIONS(2258), + [anon_sym_impl] = ACTIONS(2258), + [anon_sym_let] = ACTIONS(2258), + [anon_sym_loop] = ACTIONS(2258), + [anon_sym_match] = ACTIONS(2258), + [anon_sym_mod] = ACTIONS(2258), + [anon_sym_pub] = ACTIONS(2258), + [anon_sym_return] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2258), + [anon_sym_struct] = ACTIONS(2258), + [anon_sym_trait] = ACTIONS(2258), + [anon_sym_type] = ACTIONS(2258), + [anon_sym_union] = ACTIONS(2258), + [anon_sym_unsafe] = ACTIONS(2258), + [anon_sym_use] = ACTIONS(2258), + [anon_sym_while] = ACTIONS(2258), + [anon_sym_extern] = ACTIONS(2258), + [anon_sym_raw] = ACTIONS(2258), + [anon_sym_yield] = ACTIONS(2258), + [anon_sym_move] = ACTIONS(2258), + [anon_sym_try] = ACTIONS(2258), + [sym_integer_literal] = ACTIONS(2256), + [aux_sym_string_literal_token1] = ACTIONS(2256), + [sym_char_literal] = ACTIONS(2256), + [anon_sym_true] = ACTIONS(2258), + [anon_sym_false] = ACTIONS(2258), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2258), + [sym_super] = ACTIONS(2258), + [sym_crate] = ACTIONS(2258), + [sym_metavariable] = ACTIONS(2256), + [sym__raw_string_literal_start] = ACTIONS(2256), + [sym_float_literal] = ACTIONS(2256), }, [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2260), + [sym_identifier] = ACTIONS(2262), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_macro_rules_BANG] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_u8] = ACTIONS(2262), + [anon_sym_i8] = ACTIONS(2262), + [anon_sym_u16] = ACTIONS(2262), + [anon_sym_i16] = ACTIONS(2262), + [anon_sym_u32] = ACTIONS(2262), + [anon_sym_i32] = ACTIONS(2262), + [anon_sym_u64] = ACTIONS(2262), + [anon_sym_i64] = ACTIONS(2262), + [anon_sym_u128] = ACTIONS(2262), + [anon_sym_i128] = ACTIONS(2262), + [anon_sym_isize] = ACTIONS(2262), + [anon_sym_usize] = ACTIONS(2262), + [anon_sym_f32] = ACTIONS(2262), + [anon_sym_f64] = ACTIONS(2262), + [anon_sym_bool] = ACTIONS(2262), + [anon_sym_str] = ACTIONS(2262), + [anon_sym_char] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_DOT_DOT] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2260), + [anon_sym_POUND] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2262), + [anon_sym_async] = ACTIONS(2262), + [anon_sym_become] = ACTIONS(2262), + [anon_sym_break] = ACTIONS(2262), + [anon_sym_const] = ACTIONS(2262), + [anon_sym_continue] = ACTIONS(2262), + [anon_sym_default] = ACTIONS(2262), + [anon_sym_enum] = ACTIONS(2262), + [anon_sym_fn] = ACTIONS(2262), + [anon_sym_for] = ACTIONS(2262), + [anon_sym_gen] = ACTIONS(2262), + [anon_sym_if] = ACTIONS(2262), + [anon_sym_impl] = ACTIONS(2262), + [anon_sym_let] = ACTIONS(2262), + [anon_sym_loop] = ACTIONS(2262), + [anon_sym_match] = ACTIONS(2262), + [anon_sym_mod] = ACTIONS(2262), + [anon_sym_pub] = ACTIONS(2262), + [anon_sym_return] = ACTIONS(2262), + [anon_sym_static] = ACTIONS(2262), + [anon_sym_struct] = ACTIONS(2262), + [anon_sym_trait] = ACTIONS(2262), + [anon_sym_type] = ACTIONS(2262), + [anon_sym_union] = ACTIONS(2262), + [anon_sym_unsafe] = ACTIONS(2262), + [anon_sym_use] = ACTIONS(2262), + [anon_sym_while] = ACTIONS(2262), + [anon_sym_extern] = ACTIONS(2262), + [anon_sym_raw] = ACTIONS(2262), + [anon_sym_yield] = ACTIONS(2262), + [anon_sym_move] = ACTIONS(2262), + [anon_sym_try] = ACTIONS(2262), + [sym_integer_literal] = ACTIONS(2260), + [aux_sym_string_literal_token1] = ACTIONS(2260), + [sym_char_literal] = ACTIONS(2260), + [anon_sym_true] = ACTIONS(2262), + [anon_sym_false] = ACTIONS(2262), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2262), + [sym_super] = ACTIONS(2262), + [sym_crate] = ACTIONS(2262), + [sym_metavariable] = ACTIONS(2260), + [sym__raw_string_literal_start] = ACTIONS(2260), + [sym_float_literal] = ACTIONS(2260), }, [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2264), + [sym_identifier] = ACTIONS(2266), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_macro_rules_BANG] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_u8] = ACTIONS(2266), + [anon_sym_i8] = ACTIONS(2266), + [anon_sym_u16] = ACTIONS(2266), + [anon_sym_i16] = ACTIONS(2266), + [anon_sym_u32] = ACTIONS(2266), + [anon_sym_i32] = ACTIONS(2266), + [anon_sym_u64] = ACTIONS(2266), + [anon_sym_i64] = ACTIONS(2266), + [anon_sym_u128] = ACTIONS(2266), + [anon_sym_i128] = ACTIONS(2266), + [anon_sym_isize] = ACTIONS(2266), + [anon_sym_usize] = ACTIONS(2266), + [anon_sym_f32] = ACTIONS(2266), + [anon_sym_f64] = ACTIONS(2266), + [anon_sym_bool] = ACTIONS(2266), + [anon_sym_str] = ACTIONS(2266), + [anon_sym_char] = ACTIONS(2266), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_AMP] = ACTIONS(2264), + [anon_sym_PIPE] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_DOT_DOT] = ACTIONS(2264), + [anon_sym_COLON_COLON] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2266), + [anon_sym_async] = ACTIONS(2266), + [anon_sym_become] = ACTIONS(2266), + [anon_sym_break] = ACTIONS(2266), + [anon_sym_const] = ACTIONS(2266), + [anon_sym_continue] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2266), + [anon_sym_enum] = ACTIONS(2266), + [anon_sym_fn] = ACTIONS(2266), + [anon_sym_for] = ACTIONS(2266), + [anon_sym_gen] = ACTIONS(2266), + [anon_sym_if] = ACTIONS(2266), + [anon_sym_impl] = ACTIONS(2266), + [anon_sym_let] = ACTIONS(2266), + [anon_sym_loop] = ACTIONS(2266), + [anon_sym_match] = ACTIONS(2266), + [anon_sym_mod] = ACTIONS(2266), + [anon_sym_pub] = ACTIONS(2266), + [anon_sym_return] = ACTIONS(2266), + [anon_sym_static] = ACTIONS(2266), + [anon_sym_struct] = ACTIONS(2266), + [anon_sym_trait] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2266), + [anon_sym_union] = ACTIONS(2266), + [anon_sym_unsafe] = ACTIONS(2266), + [anon_sym_use] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2266), + [anon_sym_extern] = ACTIONS(2266), + [anon_sym_raw] = ACTIONS(2266), + [anon_sym_yield] = ACTIONS(2266), + [anon_sym_move] = ACTIONS(2266), + [anon_sym_try] = ACTIONS(2266), + [sym_integer_literal] = ACTIONS(2264), + [aux_sym_string_literal_token1] = ACTIONS(2264), + [sym_char_literal] = ACTIONS(2264), + [anon_sym_true] = ACTIONS(2266), + [anon_sym_false] = ACTIONS(2266), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2266), + [sym_super] = ACTIONS(2266), + [sym_crate] = ACTIONS(2266), + [sym_metavariable] = ACTIONS(2264), + [sym__raw_string_literal_start] = ACTIONS(2264), + [sym_float_literal] = ACTIONS(2264), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2268), + [sym_identifier] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2268), + [anon_sym_macro_rules_BANG] = ACTIONS(2268), + [anon_sym_LPAREN] = ACTIONS(2268), + [anon_sym_LBRACK] = ACTIONS(2268), + [anon_sym_LBRACE] = ACTIONS(2268), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_STAR] = ACTIONS(2268), + [anon_sym_u8] = ACTIONS(2270), + [anon_sym_i8] = ACTIONS(2270), + [anon_sym_u16] = ACTIONS(2270), + [anon_sym_i16] = ACTIONS(2270), + [anon_sym_u32] = ACTIONS(2270), + [anon_sym_i32] = ACTIONS(2270), + [anon_sym_u64] = ACTIONS(2270), + [anon_sym_i64] = ACTIONS(2270), + [anon_sym_u128] = ACTIONS(2270), + [anon_sym_i128] = ACTIONS(2270), + [anon_sym_isize] = ACTIONS(2270), + [anon_sym_usize] = ACTIONS(2270), + [anon_sym_f32] = ACTIONS(2270), + [anon_sym_f64] = ACTIONS(2270), + [anon_sym_bool] = ACTIONS(2270), + [anon_sym_str] = ACTIONS(2270), + [anon_sym_char] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2268), + [anon_sym_BANG] = ACTIONS(2268), + [anon_sym_AMP] = ACTIONS(2268), + [anon_sym_PIPE] = ACTIONS(2268), + [anon_sym_LT] = ACTIONS(2268), + [anon_sym_DOT_DOT] = ACTIONS(2268), + [anon_sym_COLON_COLON] = ACTIONS(2268), + [anon_sym_POUND] = ACTIONS(2268), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_async] = ACTIONS(2270), + [anon_sym_become] = ACTIONS(2270), + [anon_sym_break] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(2270), + [anon_sym_continue] = ACTIONS(2270), + [anon_sym_default] = ACTIONS(2270), + [anon_sym_enum] = ACTIONS(2270), + [anon_sym_fn] = ACTIONS(2270), + [anon_sym_for] = ACTIONS(2270), + [anon_sym_gen] = ACTIONS(2270), + [anon_sym_if] = ACTIONS(2270), + [anon_sym_impl] = ACTIONS(2270), + [anon_sym_let] = ACTIONS(2270), + [anon_sym_loop] = ACTIONS(2270), + [anon_sym_match] = ACTIONS(2270), + [anon_sym_mod] = ACTIONS(2270), + [anon_sym_pub] = ACTIONS(2270), + [anon_sym_return] = ACTIONS(2270), + [anon_sym_static] = ACTIONS(2270), + [anon_sym_struct] = ACTIONS(2270), + [anon_sym_trait] = ACTIONS(2270), + [anon_sym_type] = ACTIONS(2270), + [anon_sym_union] = ACTIONS(2270), + [anon_sym_unsafe] = ACTIONS(2270), + [anon_sym_use] = ACTIONS(2270), + [anon_sym_while] = ACTIONS(2270), + [anon_sym_extern] = ACTIONS(2270), + [anon_sym_raw] = ACTIONS(2270), + [anon_sym_yield] = ACTIONS(2270), + [anon_sym_move] = ACTIONS(2270), + [anon_sym_try] = ACTIONS(2270), + [sym_integer_literal] = ACTIONS(2268), + [aux_sym_string_literal_token1] = ACTIONS(2268), + [sym_char_literal] = ACTIONS(2268), + [anon_sym_true] = ACTIONS(2270), + [anon_sym_false] = ACTIONS(2270), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2270), + [sym_super] = ACTIONS(2270), + [sym_crate] = ACTIONS(2270), + [sym_metavariable] = ACTIONS(2268), + [sym__raw_string_literal_start] = ACTIONS(2268), + [sym_float_literal] = ACTIONS(2268), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2274), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_macro_rules_BANG] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_u8] = ACTIONS(2274), + [anon_sym_i8] = ACTIONS(2274), + [anon_sym_u16] = ACTIONS(2274), + [anon_sym_i16] = ACTIONS(2274), + [anon_sym_u32] = ACTIONS(2274), + [anon_sym_i32] = ACTIONS(2274), + [anon_sym_u64] = ACTIONS(2274), + [anon_sym_i64] = ACTIONS(2274), + [anon_sym_u128] = ACTIONS(2274), + [anon_sym_i128] = ACTIONS(2274), + [anon_sym_isize] = ACTIONS(2274), + [anon_sym_usize] = ACTIONS(2274), + [anon_sym_f32] = ACTIONS(2274), + [anon_sym_f64] = ACTIONS(2274), + [anon_sym_bool] = ACTIONS(2274), + [anon_sym_str] = ACTIONS(2274), + [anon_sym_char] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_AMP] = ACTIONS(2272), + [anon_sym_PIPE] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2272), + [anon_sym_COLON_COLON] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2274), + [anon_sym_async] = ACTIONS(2274), + [anon_sym_become] = ACTIONS(2274), + [anon_sym_break] = ACTIONS(2274), + [anon_sym_const] = ACTIONS(2274), + [anon_sym_continue] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2274), + [anon_sym_enum] = ACTIONS(2274), + [anon_sym_fn] = ACTIONS(2274), + [anon_sym_for] = ACTIONS(2274), + [anon_sym_gen] = ACTIONS(2274), + [anon_sym_if] = ACTIONS(2274), + [anon_sym_impl] = ACTIONS(2274), + [anon_sym_let] = ACTIONS(2274), + [anon_sym_loop] = ACTIONS(2274), + [anon_sym_match] = ACTIONS(2274), + [anon_sym_mod] = ACTIONS(2274), + [anon_sym_pub] = ACTIONS(2274), + [anon_sym_return] = ACTIONS(2274), + [anon_sym_static] = ACTIONS(2274), + [anon_sym_struct] = ACTIONS(2274), + [anon_sym_trait] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2274), + [anon_sym_union] = ACTIONS(2274), + [anon_sym_unsafe] = ACTIONS(2274), + [anon_sym_use] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2274), + [anon_sym_extern] = ACTIONS(2274), + [anon_sym_raw] = ACTIONS(2274), + [anon_sym_yield] = ACTIONS(2274), + [anon_sym_move] = ACTIONS(2274), + [anon_sym_try] = ACTIONS(2274), + [sym_integer_literal] = ACTIONS(2272), + [aux_sym_string_literal_token1] = ACTIONS(2272), + [sym_char_literal] = ACTIONS(2272), + [anon_sym_true] = ACTIONS(2274), + [anon_sym_false] = ACTIONS(2274), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2274), + [sym_super] = ACTIONS(2274), + [sym_crate] = ACTIONS(2274), + [sym_metavariable] = ACTIONS(2272), + [sym__raw_string_literal_start] = ACTIONS(2272), + [sym_float_literal] = ACTIONS(2272), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2276), + [sym_identifier] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2276), + [anon_sym_macro_rules_BANG] = ACTIONS(2276), + [anon_sym_LPAREN] = ACTIONS(2276), + [anon_sym_LBRACK] = ACTIONS(2276), + [anon_sym_LBRACE] = ACTIONS(2276), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2276), + [anon_sym_u8] = ACTIONS(2278), + [anon_sym_i8] = ACTIONS(2278), + [anon_sym_u16] = ACTIONS(2278), + [anon_sym_i16] = ACTIONS(2278), + [anon_sym_u32] = ACTIONS(2278), + [anon_sym_i32] = ACTIONS(2278), + [anon_sym_u64] = ACTIONS(2278), + [anon_sym_i64] = ACTIONS(2278), + [anon_sym_u128] = ACTIONS(2278), + [anon_sym_i128] = ACTIONS(2278), + [anon_sym_isize] = ACTIONS(2278), + [anon_sym_usize] = ACTIONS(2278), + [anon_sym_f32] = ACTIONS(2278), + [anon_sym_f64] = ACTIONS(2278), + [anon_sym_bool] = ACTIONS(2278), + [anon_sym_str] = ACTIONS(2278), + [anon_sym_char] = ACTIONS(2278), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(2276), + [anon_sym_AMP] = ACTIONS(2276), + [anon_sym_PIPE] = ACTIONS(2276), + [anon_sym_LT] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2276), + [anon_sym_COLON_COLON] = ACTIONS(2276), + [anon_sym_POUND] = ACTIONS(2276), + [anon_sym_SQUOTE] = ACTIONS(2278), + [anon_sym_async] = ACTIONS(2278), + [anon_sym_become] = ACTIONS(2278), + [anon_sym_break] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(2278), + [anon_sym_continue] = ACTIONS(2278), + [anon_sym_default] = ACTIONS(2278), + [anon_sym_enum] = ACTIONS(2278), + [anon_sym_fn] = ACTIONS(2278), + [anon_sym_for] = ACTIONS(2278), + [anon_sym_gen] = ACTIONS(2278), + [anon_sym_if] = ACTIONS(2278), + [anon_sym_impl] = ACTIONS(2278), + [anon_sym_let] = ACTIONS(2278), + [anon_sym_loop] = ACTIONS(2278), + [anon_sym_match] = ACTIONS(2278), + [anon_sym_mod] = ACTIONS(2278), + [anon_sym_pub] = ACTIONS(2278), + [anon_sym_return] = ACTIONS(2278), + [anon_sym_static] = ACTIONS(2278), + [anon_sym_struct] = ACTIONS(2278), + [anon_sym_trait] = ACTIONS(2278), + [anon_sym_type] = ACTIONS(2278), + [anon_sym_union] = ACTIONS(2278), + [anon_sym_unsafe] = ACTIONS(2278), + [anon_sym_use] = ACTIONS(2278), + [anon_sym_while] = ACTIONS(2278), + [anon_sym_extern] = ACTIONS(2278), + [anon_sym_raw] = ACTIONS(2278), + [anon_sym_yield] = ACTIONS(2278), + [anon_sym_move] = ACTIONS(2278), + [anon_sym_try] = ACTIONS(2278), + [sym_integer_literal] = ACTIONS(2276), + [aux_sym_string_literal_token1] = ACTIONS(2276), + [sym_char_literal] = ACTIONS(2276), + [anon_sym_true] = ACTIONS(2278), + [anon_sym_false] = ACTIONS(2278), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2278), + [sym_super] = ACTIONS(2278), + [sym_crate] = ACTIONS(2278), + [sym_metavariable] = ACTIONS(2276), + [sym__raw_string_literal_start] = ACTIONS(2276), + [sym_float_literal] = ACTIONS(2276), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2280), + [sym_identifier] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_macro_rules_BANG] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2280), + [anon_sym_u8] = ACTIONS(2282), + [anon_sym_i8] = ACTIONS(2282), + [anon_sym_u16] = ACTIONS(2282), + [anon_sym_i16] = ACTIONS(2282), + [anon_sym_u32] = ACTIONS(2282), + [anon_sym_i32] = ACTIONS(2282), + [anon_sym_u64] = ACTIONS(2282), + [anon_sym_i64] = ACTIONS(2282), + [anon_sym_u128] = ACTIONS(2282), + [anon_sym_i128] = ACTIONS(2282), + [anon_sym_isize] = ACTIONS(2282), + [anon_sym_usize] = ACTIONS(2282), + [anon_sym_f32] = ACTIONS(2282), + [anon_sym_f64] = ACTIONS(2282), + [anon_sym_bool] = ACTIONS(2282), + [anon_sym_str] = ACTIONS(2282), + [anon_sym_char] = ACTIONS(2282), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_AMP] = ACTIONS(2280), + [anon_sym_PIPE] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_DOT_DOT] = ACTIONS(2280), + [anon_sym_COLON_COLON] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [anon_sym_async] = ACTIONS(2282), + [anon_sym_become] = ACTIONS(2282), + [anon_sym_break] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(2282), + [anon_sym_continue] = ACTIONS(2282), + [anon_sym_default] = ACTIONS(2282), + [anon_sym_enum] = ACTIONS(2282), + [anon_sym_fn] = ACTIONS(2282), + [anon_sym_for] = ACTIONS(2282), + [anon_sym_gen] = ACTIONS(2282), + [anon_sym_if] = ACTIONS(2282), + [anon_sym_impl] = ACTIONS(2282), + [anon_sym_let] = ACTIONS(2282), + [anon_sym_loop] = ACTIONS(2282), + [anon_sym_match] = ACTIONS(2282), + [anon_sym_mod] = ACTIONS(2282), + [anon_sym_pub] = ACTIONS(2282), + [anon_sym_return] = ACTIONS(2282), + [anon_sym_static] = ACTIONS(2282), + [anon_sym_struct] = ACTIONS(2282), + [anon_sym_trait] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2282), + [anon_sym_union] = ACTIONS(2282), + [anon_sym_unsafe] = ACTIONS(2282), + [anon_sym_use] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2282), + [anon_sym_extern] = ACTIONS(2282), + [anon_sym_raw] = ACTIONS(2282), + [anon_sym_yield] = ACTIONS(2282), + [anon_sym_move] = ACTIONS(2282), + [anon_sym_try] = ACTIONS(2282), + [sym_integer_literal] = ACTIONS(2280), + [aux_sym_string_literal_token1] = ACTIONS(2280), + [sym_char_literal] = ACTIONS(2280), + [anon_sym_true] = ACTIONS(2282), + [anon_sym_false] = ACTIONS(2282), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2282), + [sym_super] = ACTIONS(2282), + [sym_crate] = ACTIONS(2282), + [sym_metavariable] = ACTIONS(2280), + [sym__raw_string_literal_start] = ACTIONS(2280), + [sym_float_literal] = ACTIONS(2280), }, [STATE(611)] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2284), + [sym_identifier] = ACTIONS(2286), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_macro_rules_BANG] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_u8] = ACTIONS(2286), + [anon_sym_i8] = ACTIONS(2286), + [anon_sym_u16] = ACTIONS(2286), + [anon_sym_i16] = ACTIONS(2286), + [anon_sym_u32] = ACTIONS(2286), + [anon_sym_i32] = ACTIONS(2286), + [anon_sym_u64] = ACTIONS(2286), + [anon_sym_i64] = ACTIONS(2286), + [anon_sym_u128] = ACTIONS(2286), + [anon_sym_i128] = ACTIONS(2286), + [anon_sym_isize] = ACTIONS(2286), + [anon_sym_usize] = ACTIONS(2286), + [anon_sym_f32] = ACTIONS(2286), + [anon_sym_f64] = ACTIONS(2286), + [anon_sym_bool] = ACTIONS(2286), + [anon_sym_str] = ACTIONS(2286), + [anon_sym_char] = ACTIONS(2286), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_AMP] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_DOT_DOT] = ACTIONS(2284), + [anon_sym_COLON_COLON] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2286), + [anon_sym_async] = ACTIONS(2286), + [anon_sym_become] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_default] = ACTIONS(2286), + [anon_sym_enum] = ACTIONS(2286), + [anon_sym_fn] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_gen] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_impl] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_mod] = ACTIONS(2286), + [anon_sym_pub] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_static] = ACTIONS(2286), + [anon_sym_struct] = ACTIONS(2286), + [anon_sym_trait] = ACTIONS(2286), + [anon_sym_type] = ACTIONS(2286), + [anon_sym_union] = ACTIONS(2286), + [anon_sym_unsafe] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_raw] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2286), + [anon_sym_move] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [sym_integer_literal] = ACTIONS(2284), + [aux_sym_string_literal_token1] = ACTIONS(2284), + [sym_char_literal] = ACTIONS(2284), + [anon_sym_true] = ACTIONS(2286), + [anon_sym_false] = ACTIONS(2286), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2286), + [sym_super] = ACTIONS(2286), + [sym_crate] = ACTIONS(2286), + [sym_metavariable] = ACTIONS(2284), + [sym__raw_string_literal_start] = ACTIONS(2284), + [sym_float_literal] = ACTIONS(2284), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2288), + [sym_identifier] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_macro_rules_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_u8] = ACTIONS(2290), + [anon_sym_i8] = ACTIONS(2290), + [anon_sym_u16] = ACTIONS(2290), + [anon_sym_i16] = ACTIONS(2290), + [anon_sym_u32] = ACTIONS(2290), + [anon_sym_i32] = ACTIONS(2290), + [anon_sym_u64] = ACTIONS(2290), + [anon_sym_i64] = ACTIONS(2290), + [anon_sym_u128] = ACTIONS(2290), + [anon_sym_i128] = ACTIONS(2290), + [anon_sym_isize] = ACTIONS(2290), + [anon_sym_usize] = ACTIONS(2290), + [anon_sym_f32] = ACTIONS(2290), + [anon_sym_f64] = ACTIONS(2290), + [anon_sym_bool] = ACTIONS(2290), + [anon_sym_str] = ACTIONS(2290), + [anon_sym_char] = ACTIONS(2290), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_DOT_DOT] = ACTIONS(2288), + [anon_sym_COLON_COLON] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2290), + [anon_sym_async] = ACTIONS(2290), + [anon_sym_become] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_default] = ACTIONS(2290), + [anon_sym_enum] = ACTIONS(2290), + [anon_sym_fn] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_gen] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_impl] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_mod] = ACTIONS(2290), + [anon_sym_pub] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2290), + [anon_sym_struct] = ACTIONS(2290), + [anon_sym_trait] = ACTIONS(2290), + [anon_sym_type] = ACTIONS(2290), + [anon_sym_union] = ACTIONS(2290), + [anon_sym_unsafe] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_raw] = ACTIONS(2290), + [anon_sym_yield] = ACTIONS(2290), + [anon_sym_move] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2290), + [sym_integer_literal] = ACTIONS(2288), + [aux_sym_string_literal_token1] = ACTIONS(2288), + [sym_char_literal] = ACTIONS(2288), + [anon_sym_true] = ACTIONS(2290), + [anon_sym_false] = ACTIONS(2290), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2290), + [sym_super] = ACTIONS(2290), + [sym_crate] = ACTIONS(2290), + [sym_metavariable] = ACTIONS(2288), + [sym__raw_string_literal_start] = ACTIONS(2288), + [sym_float_literal] = ACTIONS(2288), }, [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2294), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_macro_rules_BANG] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_u8] = ACTIONS(2294), + [anon_sym_i8] = ACTIONS(2294), + [anon_sym_u16] = ACTIONS(2294), + [anon_sym_i16] = ACTIONS(2294), + [anon_sym_u32] = ACTIONS(2294), + [anon_sym_i32] = ACTIONS(2294), + [anon_sym_u64] = ACTIONS(2294), + [anon_sym_i64] = ACTIONS(2294), + [anon_sym_u128] = ACTIONS(2294), + [anon_sym_i128] = ACTIONS(2294), + [anon_sym_isize] = ACTIONS(2294), + [anon_sym_usize] = ACTIONS(2294), + [anon_sym_f32] = ACTIONS(2294), + [anon_sym_f64] = ACTIONS(2294), + [anon_sym_bool] = ACTIONS(2294), + [anon_sym_str] = ACTIONS(2294), + [anon_sym_char] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_DOT_DOT] = ACTIONS(2292), + [anon_sym_COLON_COLON] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2294), + [anon_sym_async] = ACTIONS(2294), + [anon_sym_become] = ACTIONS(2294), + [anon_sym_break] = ACTIONS(2294), + [anon_sym_const] = ACTIONS(2294), + [anon_sym_continue] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2294), + [anon_sym_enum] = ACTIONS(2294), + [anon_sym_fn] = ACTIONS(2294), + [anon_sym_for] = ACTIONS(2294), + [anon_sym_gen] = ACTIONS(2294), + [anon_sym_if] = ACTIONS(2294), + [anon_sym_impl] = ACTIONS(2294), + [anon_sym_let] = ACTIONS(2294), + [anon_sym_loop] = ACTIONS(2294), + [anon_sym_match] = ACTIONS(2294), + [anon_sym_mod] = ACTIONS(2294), + [anon_sym_pub] = ACTIONS(2294), + [anon_sym_return] = ACTIONS(2294), + [anon_sym_static] = ACTIONS(2294), + [anon_sym_struct] = ACTIONS(2294), + [anon_sym_trait] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2294), + [anon_sym_union] = ACTIONS(2294), + [anon_sym_unsafe] = ACTIONS(2294), + [anon_sym_use] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2294), + [anon_sym_extern] = ACTIONS(2294), + [anon_sym_raw] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2294), + [anon_sym_move] = ACTIONS(2294), + [anon_sym_try] = ACTIONS(2294), + [sym_integer_literal] = ACTIONS(2292), + [aux_sym_string_literal_token1] = ACTIONS(2292), + [sym_char_literal] = ACTIONS(2292), + [anon_sym_true] = ACTIONS(2294), + [anon_sym_false] = ACTIONS(2294), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2294), + [sym_super] = ACTIONS(2294), + [sym_crate] = ACTIONS(2294), + [sym_metavariable] = ACTIONS(2292), + [sym__raw_string_literal_start] = ACTIONS(2292), + [sym_float_literal] = ACTIONS(2292), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2296), + [sym_identifier] = ACTIONS(2298), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_macro_rules_BANG] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_u8] = ACTIONS(2298), + [anon_sym_i8] = ACTIONS(2298), + [anon_sym_u16] = ACTIONS(2298), + [anon_sym_i16] = ACTIONS(2298), + [anon_sym_u32] = ACTIONS(2298), + [anon_sym_i32] = ACTIONS(2298), + [anon_sym_u64] = ACTIONS(2298), + [anon_sym_i64] = ACTIONS(2298), + [anon_sym_u128] = ACTIONS(2298), + [anon_sym_i128] = ACTIONS(2298), + [anon_sym_isize] = ACTIONS(2298), + [anon_sym_usize] = ACTIONS(2298), + [anon_sym_f32] = ACTIONS(2298), + [anon_sym_f64] = ACTIONS(2298), + [anon_sym_bool] = ACTIONS(2298), + [anon_sym_str] = ACTIONS(2298), + [anon_sym_char] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_DOT_DOT] = ACTIONS(2296), + [anon_sym_COLON_COLON] = ACTIONS(2296), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2298), + [anon_sym_become] = ACTIONS(2298), + [anon_sym_break] = ACTIONS(2298), + [anon_sym_const] = ACTIONS(2298), + [anon_sym_continue] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2298), + [anon_sym_fn] = ACTIONS(2298), + [anon_sym_for] = ACTIONS(2298), + [anon_sym_gen] = ACTIONS(2298), + [anon_sym_if] = ACTIONS(2298), + [anon_sym_impl] = ACTIONS(2298), + [anon_sym_let] = ACTIONS(2298), + [anon_sym_loop] = ACTIONS(2298), + [anon_sym_match] = ACTIONS(2298), + [anon_sym_mod] = ACTIONS(2298), + [anon_sym_pub] = ACTIONS(2298), + [anon_sym_return] = ACTIONS(2298), + [anon_sym_static] = ACTIONS(2298), + [anon_sym_struct] = ACTIONS(2298), + [anon_sym_trait] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2298), + [anon_sym_union] = ACTIONS(2298), + [anon_sym_unsafe] = ACTIONS(2298), + [anon_sym_use] = ACTIONS(2298), + [anon_sym_while] = ACTIONS(2298), + [anon_sym_extern] = ACTIONS(2298), + [anon_sym_raw] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2298), + [anon_sym_move] = ACTIONS(2298), + [anon_sym_try] = ACTIONS(2298), + [sym_integer_literal] = ACTIONS(2296), + [aux_sym_string_literal_token1] = ACTIONS(2296), + [sym_char_literal] = ACTIONS(2296), + [anon_sym_true] = ACTIONS(2298), + [anon_sym_false] = ACTIONS(2298), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2298), + [sym_super] = ACTIONS(2298), + [sym_crate] = ACTIONS(2298), + [sym_metavariable] = ACTIONS(2296), + [sym__raw_string_literal_start] = ACTIONS(2296), + [sym_float_literal] = ACTIONS(2296), }, [STATE(615)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [aux_sym_declaration_list_repeat1] = STATE(720), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2300), + [sym_identifier] = ACTIONS(2302), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_macro_rules_BANG] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_u8] = ACTIONS(2302), + [anon_sym_i8] = ACTIONS(2302), + [anon_sym_u16] = ACTIONS(2302), + [anon_sym_i16] = ACTIONS(2302), + [anon_sym_u32] = ACTIONS(2302), + [anon_sym_i32] = ACTIONS(2302), + [anon_sym_u64] = ACTIONS(2302), + [anon_sym_i64] = ACTIONS(2302), + [anon_sym_u128] = ACTIONS(2302), + [anon_sym_i128] = ACTIONS(2302), + [anon_sym_isize] = ACTIONS(2302), + [anon_sym_usize] = ACTIONS(2302), + [anon_sym_f32] = ACTIONS(2302), + [anon_sym_f64] = ACTIONS(2302), + [anon_sym_bool] = ACTIONS(2302), + [anon_sym_str] = ACTIONS(2302), + [anon_sym_char] = ACTIONS(2302), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_DOT_DOT] = ACTIONS(2300), + [anon_sym_COLON_COLON] = ACTIONS(2300), + [anon_sym_POUND] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2302), + [anon_sym_async] = ACTIONS(2302), + [anon_sym_become] = ACTIONS(2302), + [anon_sym_break] = ACTIONS(2302), + [anon_sym_const] = ACTIONS(2302), + [anon_sym_continue] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2302), + [anon_sym_enum] = ACTIONS(2302), + [anon_sym_fn] = ACTIONS(2302), + [anon_sym_for] = ACTIONS(2302), + [anon_sym_gen] = ACTIONS(2302), + [anon_sym_if] = ACTIONS(2302), + [anon_sym_impl] = ACTIONS(2302), + [anon_sym_let] = ACTIONS(2302), + [anon_sym_loop] = ACTIONS(2302), + [anon_sym_match] = ACTIONS(2302), + [anon_sym_mod] = ACTIONS(2302), + [anon_sym_pub] = ACTIONS(2302), + [anon_sym_return] = ACTIONS(2302), + [anon_sym_static] = ACTIONS(2302), + [anon_sym_struct] = ACTIONS(2302), + [anon_sym_trait] = ACTIONS(2302), + [anon_sym_type] = ACTIONS(2302), + [anon_sym_union] = ACTIONS(2302), + [anon_sym_unsafe] = ACTIONS(2302), + [anon_sym_use] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2302), + [anon_sym_extern] = ACTIONS(2302), + [anon_sym_raw] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2302), + [anon_sym_move] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2302), + [sym_integer_literal] = ACTIONS(2300), + [aux_sym_string_literal_token1] = ACTIONS(2300), + [sym_char_literal] = ACTIONS(2300), + [anon_sym_true] = ACTIONS(2302), + [anon_sym_false] = ACTIONS(2302), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2302), + [sym_super] = ACTIONS(2302), + [sym_crate] = ACTIONS(2302), + [sym_metavariable] = ACTIONS(2300), + [sym__raw_string_literal_start] = ACTIONS(2300), + [sym_float_literal] = ACTIONS(2300), }, [STATE(616)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_pattern] = STATE(3511), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(2304), + [sym_identifier] = ACTIONS(2306), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_macro_rules_BANG] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_u8] = ACTIONS(2306), + [anon_sym_i8] = ACTIONS(2306), + [anon_sym_u16] = ACTIONS(2306), + [anon_sym_i16] = ACTIONS(2306), + [anon_sym_u32] = ACTIONS(2306), + [anon_sym_i32] = ACTIONS(2306), + [anon_sym_u64] = ACTIONS(2306), + [anon_sym_i64] = ACTIONS(2306), + [anon_sym_u128] = ACTIONS(2306), + [anon_sym_i128] = ACTIONS(2306), + [anon_sym_isize] = ACTIONS(2306), + [anon_sym_usize] = ACTIONS(2306), + [anon_sym_f32] = ACTIONS(2306), + [anon_sym_f64] = ACTIONS(2306), + [anon_sym_bool] = ACTIONS(2306), + [anon_sym_str] = ACTIONS(2306), + [anon_sym_char] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2304), + [anon_sym_COLON_COLON] = ACTIONS(2304), + [anon_sym_POUND] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2306), + [anon_sym_async] = ACTIONS(2306), + [anon_sym_become] = ACTIONS(2306), + [anon_sym_break] = ACTIONS(2306), + [anon_sym_const] = ACTIONS(2306), + [anon_sym_continue] = ACTIONS(2306), + [anon_sym_default] = ACTIONS(2306), + [anon_sym_enum] = ACTIONS(2306), + [anon_sym_fn] = ACTIONS(2306), + [anon_sym_for] = ACTIONS(2306), + [anon_sym_gen] = ACTIONS(2306), + [anon_sym_if] = ACTIONS(2306), + [anon_sym_impl] = ACTIONS(2306), + [anon_sym_let] = ACTIONS(2306), + [anon_sym_loop] = ACTIONS(2306), + [anon_sym_match] = ACTIONS(2306), + [anon_sym_mod] = ACTIONS(2306), + [anon_sym_pub] = ACTIONS(2306), + [anon_sym_return] = ACTIONS(2306), + [anon_sym_static] = ACTIONS(2306), + [anon_sym_struct] = ACTIONS(2306), + [anon_sym_trait] = ACTIONS(2306), + [anon_sym_type] = ACTIONS(2306), + [anon_sym_union] = ACTIONS(2306), + [anon_sym_unsafe] = ACTIONS(2306), + [anon_sym_use] = ACTIONS(2306), + [anon_sym_while] = ACTIONS(2306), + [anon_sym_extern] = ACTIONS(2306), + [anon_sym_raw] = ACTIONS(2306), + [anon_sym_yield] = ACTIONS(2306), + [anon_sym_move] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2306), + [sym_integer_literal] = ACTIONS(2304), + [aux_sym_string_literal_token1] = ACTIONS(2304), + [sym_char_literal] = ACTIONS(2304), + [anon_sym_true] = ACTIONS(2306), + [anon_sym_false] = ACTIONS(2306), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2306), + [sym_super] = ACTIONS(2306), + [sym_crate] = ACTIONS(2306), + [sym_metavariable] = ACTIONS(2304), + [sym__raw_string_literal_start] = ACTIONS(2304), + [sym_float_literal] = ACTIONS(2304), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2308), + [sym_identifier] = ACTIONS(2310), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_macro_rules_BANG] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2308), + [anon_sym_u8] = ACTIONS(2310), + [anon_sym_i8] = ACTIONS(2310), + [anon_sym_u16] = ACTIONS(2310), + [anon_sym_i16] = ACTIONS(2310), + [anon_sym_u32] = ACTIONS(2310), + [anon_sym_i32] = ACTIONS(2310), + [anon_sym_u64] = ACTIONS(2310), + [anon_sym_i64] = ACTIONS(2310), + [anon_sym_u128] = ACTIONS(2310), + [anon_sym_i128] = ACTIONS(2310), + [anon_sym_isize] = ACTIONS(2310), + [anon_sym_usize] = ACTIONS(2310), + [anon_sym_f32] = ACTIONS(2310), + [anon_sym_f64] = ACTIONS(2310), + [anon_sym_bool] = ACTIONS(2310), + [anon_sym_str] = ACTIONS(2310), + [anon_sym_char] = ACTIONS(2310), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_AMP] = ACTIONS(2308), + [anon_sym_PIPE] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_DOT_DOT] = ACTIONS(2308), + [anon_sym_COLON_COLON] = ACTIONS(2308), + [anon_sym_POUND] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2310), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_become] = ACTIONS(2310), + [anon_sym_break] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2310), + [anon_sym_continue] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2310), + [anon_sym_enum] = ACTIONS(2310), + [anon_sym_fn] = ACTIONS(2310), + [anon_sym_for] = ACTIONS(2310), + [anon_sym_gen] = ACTIONS(2310), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_impl] = ACTIONS(2310), + [anon_sym_let] = ACTIONS(2310), + [anon_sym_loop] = ACTIONS(2310), + [anon_sym_match] = ACTIONS(2310), + [anon_sym_mod] = ACTIONS(2310), + [anon_sym_pub] = ACTIONS(2310), + [anon_sym_return] = ACTIONS(2310), + [anon_sym_static] = ACTIONS(2310), + [anon_sym_struct] = ACTIONS(2310), + [anon_sym_trait] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2310), + [anon_sym_union] = ACTIONS(2310), + [anon_sym_unsafe] = ACTIONS(2310), + [anon_sym_use] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2310), + [anon_sym_extern] = ACTIONS(2310), + [anon_sym_raw] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2310), + [anon_sym_move] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2310), + [sym_integer_literal] = ACTIONS(2308), + [aux_sym_string_literal_token1] = ACTIONS(2308), + [sym_char_literal] = ACTIONS(2308), + [anon_sym_true] = ACTIONS(2310), + [anon_sym_false] = ACTIONS(2310), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2310), + [sym_super] = ACTIONS(2310), + [sym_crate] = ACTIONS(2310), + [sym_metavariable] = ACTIONS(2308), + [sym__raw_string_literal_start] = ACTIONS(2308), + [sym_float_literal] = ACTIONS(2308), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2312), + [sym_identifier] = ACTIONS(2314), + [anon_sym_SEMI] = ACTIONS(2312), + [anon_sym_macro_rules_BANG] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_STAR] = ACTIONS(2312), + [anon_sym_u8] = ACTIONS(2314), + [anon_sym_i8] = ACTIONS(2314), + [anon_sym_u16] = ACTIONS(2314), + [anon_sym_i16] = ACTIONS(2314), + [anon_sym_u32] = ACTIONS(2314), + [anon_sym_i32] = ACTIONS(2314), + [anon_sym_u64] = ACTIONS(2314), + [anon_sym_i64] = ACTIONS(2314), + [anon_sym_u128] = ACTIONS(2314), + [anon_sym_i128] = ACTIONS(2314), + [anon_sym_isize] = ACTIONS(2314), + [anon_sym_usize] = ACTIONS(2314), + [anon_sym_f32] = ACTIONS(2314), + [anon_sym_f64] = ACTIONS(2314), + [anon_sym_bool] = ACTIONS(2314), + [anon_sym_str] = ACTIONS(2314), + [anon_sym_char] = ACTIONS(2314), + [anon_sym_DASH] = ACTIONS(2312), + [anon_sym_BANG] = ACTIONS(2312), + [anon_sym_AMP] = ACTIONS(2312), + [anon_sym_PIPE] = ACTIONS(2312), + [anon_sym_LT] = ACTIONS(2312), + [anon_sym_DOT_DOT] = ACTIONS(2312), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym_POUND] = ACTIONS(2312), + [anon_sym_SQUOTE] = ACTIONS(2314), + [anon_sym_async] = ACTIONS(2314), + [anon_sym_become] = ACTIONS(2314), + [anon_sym_break] = ACTIONS(2314), + [anon_sym_const] = ACTIONS(2314), + [anon_sym_continue] = ACTIONS(2314), + [anon_sym_default] = ACTIONS(2314), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_fn] = ACTIONS(2314), + [anon_sym_for] = ACTIONS(2314), + [anon_sym_gen] = ACTIONS(2314), + [anon_sym_if] = ACTIONS(2314), + [anon_sym_impl] = ACTIONS(2314), + [anon_sym_let] = ACTIONS(2314), + [anon_sym_loop] = ACTIONS(2314), + [anon_sym_match] = ACTIONS(2314), + [anon_sym_mod] = ACTIONS(2314), + [anon_sym_pub] = ACTIONS(2314), + [anon_sym_return] = ACTIONS(2314), + [anon_sym_static] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2314), + [anon_sym_trait] = ACTIONS(2314), + [anon_sym_type] = ACTIONS(2314), + [anon_sym_union] = ACTIONS(2314), + [anon_sym_unsafe] = ACTIONS(2314), + [anon_sym_use] = ACTIONS(2314), + [anon_sym_while] = ACTIONS(2314), + [anon_sym_extern] = ACTIONS(2314), + [anon_sym_raw] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2314), + [anon_sym_move] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2314), + [sym_integer_literal] = ACTIONS(2312), + [aux_sym_string_literal_token1] = ACTIONS(2312), + [sym_char_literal] = ACTIONS(2312), + [anon_sym_true] = ACTIONS(2314), + [anon_sym_false] = ACTIONS(2314), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2314), + [sym_super] = ACTIONS(2314), + [sym_crate] = ACTIONS(2314), + [sym_metavariable] = ACTIONS(2312), + [sym__raw_string_literal_start] = ACTIONS(2312), + [sym_float_literal] = ACTIONS(2312), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2316), + [sym_identifier] = ACTIONS(2318), + [anon_sym_SEMI] = ACTIONS(2316), + [anon_sym_macro_rules_BANG] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_LBRACK] = ACTIONS(2316), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2316), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_u8] = ACTIONS(2318), + [anon_sym_i8] = ACTIONS(2318), + [anon_sym_u16] = ACTIONS(2318), + [anon_sym_i16] = ACTIONS(2318), + [anon_sym_u32] = ACTIONS(2318), + [anon_sym_i32] = ACTIONS(2318), + [anon_sym_u64] = ACTIONS(2318), + [anon_sym_i64] = ACTIONS(2318), + [anon_sym_u128] = ACTIONS(2318), + [anon_sym_i128] = ACTIONS(2318), + [anon_sym_isize] = ACTIONS(2318), + [anon_sym_usize] = ACTIONS(2318), + [anon_sym_f32] = ACTIONS(2318), + [anon_sym_f64] = ACTIONS(2318), + [anon_sym_bool] = ACTIONS(2318), + [anon_sym_str] = ACTIONS(2318), + [anon_sym_char] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2316), + [anon_sym_BANG] = ACTIONS(2316), + [anon_sym_AMP] = ACTIONS(2316), + [anon_sym_PIPE] = ACTIONS(2316), + [anon_sym_LT] = ACTIONS(2316), + [anon_sym_DOT_DOT] = ACTIONS(2316), + [anon_sym_COLON_COLON] = ACTIONS(2316), + [anon_sym_POUND] = ACTIONS(2316), + [anon_sym_SQUOTE] = ACTIONS(2318), + [anon_sym_async] = ACTIONS(2318), + [anon_sym_become] = ACTIONS(2318), + [anon_sym_break] = ACTIONS(2318), + [anon_sym_const] = ACTIONS(2318), + [anon_sym_continue] = ACTIONS(2318), + [anon_sym_default] = ACTIONS(2318), + [anon_sym_enum] = ACTIONS(2318), + [anon_sym_fn] = ACTIONS(2318), + [anon_sym_for] = ACTIONS(2318), + [anon_sym_gen] = ACTIONS(2318), + [anon_sym_if] = ACTIONS(2318), + [anon_sym_impl] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_loop] = ACTIONS(2318), + [anon_sym_match] = ACTIONS(2318), + [anon_sym_mod] = ACTIONS(2318), + [anon_sym_pub] = ACTIONS(2318), + [anon_sym_return] = ACTIONS(2318), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_trait] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_unsafe] = ACTIONS(2318), + [anon_sym_use] = ACTIONS(2318), + [anon_sym_while] = ACTIONS(2318), + [anon_sym_extern] = ACTIONS(2318), + [anon_sym_raw] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2318), + [anon_sym_move] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2318), + [sym_integer_literal] = ACTIONS(2316), + [aux_sym_string_literal_token1] = ACTIONS(2316), + [sym_char_literal] = ACTIONS(2316), + [anon_sym_true] = ACTIONS(2318), + [anon_sym_false] = ACTIONS(2318), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2318), + [sym_super] = ACTIONS(2318), + [sym_crate] = ACTIONS(2318), + [sym_metavariable] = ACTIONS(2316), + [sym__raw_string_literal_start] = ACTIONS(2316), + [sym_float_literal] = ACTIONS(2316), }, [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2320), + [sym_identifier] = ACTIONS(2322), + [anon_sym_SEMI] = ACTIONS(2320), + [anon_sym_macro_rules_BANG] = ACTIONS(2320), + [anon_sym_LPAREN] = ACTIONS(2320), + [anon_sym_LBRACK] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(2320), + [anon_sym_RBRACE] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2320), + [anon_sym_u8] = ACTIONS(2322), + [anon_sym_i8] = ACTIONS(2322), + [anon_sym_u16] = ACTIONS(2322), + [anon_sym_i16] = ACTIONS(2322), + [anon_sym_u32] = ACTIONS(2322), + [anon_sym_i32] = ACTIONS(2322), + [anon_sym_u64] = ACTIONS(2322), + [anon_sym_i64] = ACTIONS(2322), + [anon_sym_u128] = ACTIONS(2322), + [anon_sym_i128] = ACTIONS(2322), + [anon_sym_isize] = ACTIONS(2322), + [anon_sym_usize] = ACTIONS(2322), + [anon_sym_f32] = ACTIONS(2322), + [anon_sym_f64] = ACTIONS(2322), + [anon_sym_bool] = ACTIONS(2322), + [anon_sym_str] = ACTIONS(2322), + [anon_sym_char] = ACTIONS(2322), + [anon_sym_DASH] = ACTIONS(2320), + [anon_sym_BANG] = ACTIONS(2320), + [anon_sym_AMP] = ACTIONS(2320), + [anon_sym_PIPE] = ACTIONS(2320), + [anon_sym_LT] = ACTIONS(2320), + [anon_sym_DOT_DOT] = ACTIONS(2320), + [anon_sym_COLON_COLON] = ACTIONS(2320), + [anon_sym_POUND] = ACTIONS(2320), + [anon_sym_SQUOTE] = ACTIONS(2322), + [anon_sym_async] = ACTIONS(2322), + [anon_sym_become] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_default] = ACTIONS(2322), + [anon_sym_enum] = ACTIONS(2322), + [anon_sym_fn] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_gen] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_impl] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_mod] = ACTIONS(2322), + [anon_sym_pub] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_static] = ACTIONS(2322), + [anon_sym_struct] = ACTIONS(2322), + [anon_sym_trait] = ACTIONS(2322), + [anon_sym_type] = ACTIONS(2322), + [anon_sym_union] = ACTIONS(2322), + [anon_sym_unsafe] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_raw] = ACTIONS(2322), + [anon_sym_yield] = ACTIONS(2322), + [anon_sym_move] = ACTIONS(2322), + [anon_sym_try] = ACTIONS(2322), + [sym_integer_literal] = ACTIONS(2320), + [aux_sym_string_literal_token1] = ACTIONS(2320), + [sym_char_literal] = ACTIONS(2320), + [anon_sym_true] = ACTIONS(2322), + [anon_sym_false] = ACTIONS(2322), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2322), + [sym_super] = ACTIONS(2322), + [sym_crate] = ACTIONS(2322), + [sym_metavariable] = ACTIONS(2320), + [sym__raw_string_literal_start] = ACTIONS(2320), + [sym_float_literal] = ACTIONS(2320), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2326), + [anon_sym_SEMI] = ACTIONS(2324), + [anon_sym_macro_rules_BANG] = ACTIONS(2324), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_LBRACK] = ACTIONS(2324), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_STAR] = ACTIONS(2324), + [anon_sym_u8] = ACTIONS(2326), + [anon_sym_i8] = ACTIONS(2326), + [anon_sym_u16] = ACTIONS(2326), + [anon_sym_i16] = ACTIONS(2326), + [anon_sym_u32] = ACTIONS(2326), + [anon_sym_i32] = ACTIONS(2326), + [anon_sym_u64] = ACTIONS(2326), + [anon_sym_i64] = ACTIONS(2326), + [anon_sym_u128] = ACTIONS(2326), + [anon_sym_i128] = ACTIONS(2326), + [anon_sym_isize] = ACTIONS(2326), + [anon_sym_usize] = ACTIONS(2326), + [anon_sym_f32] = ACTIONS(2326), + [anon_sym_f64] = ACTIONS(2326), + [anon_sym_bool] = ACTIONS(2326), + [anon_sym_str] = ACTIONS(2326), + [anon_sym_char] = ACTIONS(2326), + [anon_sym_DASH] = ACTIONS(2324), + [anon_sym_BANG] = ACTIONS(2324), + [anon_sym_AMP] = ACTIONS(2324), + [anon_sym_PIPE] = ACTIONS(2324), + [anon_sym_LT] = ACTIONS(2324), + [anon_sym_DOT_DOT] = ACTIONS(2324), + [anon_sym_COLON_COLON] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(2324), + [anon_sym_SQUOTE] = ACTIONS(2326), + [anon_sym_async] = ACTIONS(2326), + [anon_sym_become] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_default] = ACTIONS(2326), + [anon_sym_enum] = ACTIONS(2326), + [anon_sym_fn] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_gen] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_impl] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_mod] = ACTIONS(2326), + [anon_sym_pub] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_static] = ACTIONS(2326), + [anon_sym_struct] = ACTIONS(2326), + [anon_sym_trait] = ACTIONS(2326), + [anon_sym_type] = ACTIONS(2326), + [anon_sym_union] = ACTIONS(2326), + [anon_sym_unsafe] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_raw] = ACTIONS(2326), + [anon_sym_yield] = ACTIONS(2326), + [anon_sym_move] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2326), + [sym_integer_literal] = ACTIONS(2324), + [aux_sym_string_literal_token1] = ACTIONS(2324), + [sym_char_literal] = ACTIONS(2324), + [anon_sym_true] = ACTIONS(2326), + [anon_sym_false] = ACTIONS(2326), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2326), + [sym_super] = ACTIONS(2326), + [sym_crate] = ACTIONS(2326), + [sym_metavariable] = ACTIONS(2324), + [sym__raw_string_literal_start] = ACTIONS(2324), + [sym_float_literal] = ACTIONS(2324), }, [STATE(622)] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2328), + [anon_sym_macro_rules_BANG] = ACTIONS(2328), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_STAR] = ACTIONS(2328), + [anon_sym_u8] = ACTIONS(2330), + [anon_sym_i8] = ACTIONS(2330), + [anon_sym_u16] = ACTIONS(2330), + [anon_sym_i16] = ACTIONS(2330), + [anon_sym_u32] = ACTIONS(2330), + [anon_sym_i32] = ACTIONS(2330), + [anon_sym_u64] = ACTIONS(2330), + [anon_sym_i64] = ACTIONS(2330), + [anon_sym_u128] = ACTIONS(2330), + [anon_sym_i128] = ACTIONS(2330), + [anon_sym_isize] = ACTIONS(2330), + [anon_sym_usize] = ACTIONS(2330), + [anon_sym_f32] = ACTIONS(2330), + [anon_sym_f64] = ACTIONS(2330), + [anon_sym_bool] = ACTIONS(2330), + [anon_sym_str] = ACTIONS(2330), + [anon_sym_char] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2328), + [anon_sym_AMP] = ACTIONS(2328), + [anon_sym_PIPE] = ACTIONS(2328), + [anon_sym_LT] = ACTIONS(2328), + [anon_sym_DOT_DOT] = ACTIONS(2328), + [anon_sym_COLON_COLON] = ACTIONS(2328), + [anon_sym_POUND] = ACTIONS(2328), + [anon_sym_SQUOTE] = ACTIONS(2330), + [anon_sym_async] = ACTIONS(2330), + [anon_sym_become] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_default] = ACTIONS(2330), + [anon_sym_enum] = ACTIONS(2330), + [anon_sym_fn] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_gen] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_impl] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_mod] = ACTIONS(2330), + [anon_sym_pub] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_static] = ACTIONS(2330), + [anon_sym_struct] = ACTIONS(2330), + [anon_sym_trait] = ACTIONS(2330), + [anon_sym_type] = ACTIONS(2330), + [anon_sym_union] = ACTIONS(2330), + [anon_sym_unsafe] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_raw] = ACTIONS(2330), + [anon_sym_yield] = ACTIONS(2330), + [anon_sym_move] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2330), + [sym_integer_literal] = ACTIONS(2328), + [aux_sym_string_literal_token1] = ACTIONS(2328), + [sym_char_literal] = ACTIONS(2328), + [anon_sym_true] = ACTIONS(2330), + [anon_sym_false] = ACTIONS(2330), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2330), + [sym_super] = ACTIONS(2330), + [sym_crate] = ACTIONS(2330), + [sym_metavariable] = ACTIONS(2328), + [sym__raw_string_literal_start] = ACTIONS(2328), + [sym_float_literal] = ACTIONS(2328), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2334), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_u8] = ACTIONS(2334), + [anon_sym_i8] = ACTIONS(2334), + [anon_sym_u16] = ACTIONS(2334), + [anon_sym_i16] = ACTIONS(2334), + [anon_sym_u32] = ACTIONS(2334), + [anon_sym_i32] = ACTIONS(2334), + [anon_sym_u64] = ACTIONS(2334), + [anon_sym_i64] = ACTIONS(2334), + [anon_sym_u128] = ACTIONS(2334), + [anon_sym_i128] = ACTIONS(2334), + [anon_sym_isize] = ACTIONS(2334), + [anon_sym_usize] = ACTIONS(2334), + [anon_sym_f32] = ACTIONS(2334), + [anon_sym_f64] = ACTIONS(2334), + [anon_sym_bool] = ACTIONS(2334), + [anon_sym_str] = ACTIONS(2334), + [anon_sym_char] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_AMP] = ACTIONS(2332), + [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_DOT_DOT] = ACTIONS(2332), + [anon_sym_COLON_COLON] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2334), + [anon_sym_become] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2334), + [anon_sym_fn] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_gen] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_impl] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_mod] = ACTIONS(2334), + [anon_sym_pub] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_static] = ACTIONS(2334), + [anon_sym_struct] = ACTIONS(2334), + [anon_sym_trait] = ACTIONS(2334), + [anon_sym_type] = ACTIONS(2334), + [anon_sym_union] = ACTIONS(2334), + [anon_sym_unsafe] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_raw] = ACTIONS(2334), + [anon_sym_yield] = ACTIONS(2334), + [anon_sym_move] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [sym_integer_literal] = ACTIONS(2332), + [aux_sym_string_literal_token1] = ACTIONS(2332), + [sym_char_literal] = ACTIONS(2332), + [anon_sym_true] = ACTIONS(2334), + [anon_sym_false] = ACTIONS(2334), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2334), + [sym_super] = ACTIONS(2334), + [sym_crate] = ACTIONS(2334), + [sym_metavariable] = ACTIONS(2332), + [sym__raw_string_literal_start] = ACTIONS(2332), + [sym_float_literal] = ACTIONS(2332), }, [STATE(624)] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2336), + [sym_identifier] = ACTIONS(2338), + [anon_sym_SEMI] = ACTIONS(2336), + [anon_sym_macro_rules_BANG] = ACTIONS(2336), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_LBRACK] = ACTIONS(2336), + [anon_sym_LBRACE] = ACTIONS(2336), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_STAR] = 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_DASH] = ACTIONS(2336), + [anon_sym_BANG] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym_PIPE] = ACTIONS(2336), + [anon_sym_LT] = ACTIONS(2336), + [anon_sym_DOT_DOT] = ACTIONS(2336), + [anon_sym_COLON_COLON] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(2336), + [anon_sym_SQUOTE] = ACTIONS(2338), + [anon_sym_async] = ACTIONS(2338), + [anon_sym_become] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_default] = ACTIONS(2338), + [anon_sym_enum] = ACTIONS(2338), + [anon_sym_fn] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_gen] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_impl] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_mod] = ACTIONS(2338), + [anon_sym_pub] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_static] = ACTIONS(2338), + [anon_sym_struct] = ACTIONS(2338), + [anon_sym_trait] = ACTIONS(2338), + [anon_sym_type] = ACTIONS(2338), + [anon_sym_union] = ACTIONS(2338), + [anon_sym_unsafe] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_raw] = ACTIONS(2338), + [anon_sym_yield] = ACTIONS(2338), + [anon_sym_move] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [sym_integer_literal] = ACTIONS(2336), + [aux_sym_string_literal_token1] = ACTIONS(2336), + [sym_char_literal] = ACTIONS(2336), + [anon_sym_true] = ACTIONS(2338), + [anon_sym_false] = ACTIONS(2338), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2338), + [sym_super] = ACTIONS(2338), + [sym_crate] = ACTIONS(2338), + [sym_metavariable] = ACTIONS(2336), + [sym__raw_string_literal_start] = ACTIONS(2336), + [sym_float_literal] = ACTIONS(2336), }, [STATE(625)] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_macro_rules_BANG] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_u8] = ACTIONS(2342), + [anon_sym_i8] = ACTIONS(2342), + [anon_sym_u16] = ACTIONS(2342), + [anon_sym_i16] = ACTIONS(2342), + [anon_sym_u32] = ACTIONS(2342), + [anon_sym_i32] = ACTIONS(2342), + [anon_sym_u64] = ACTIONS(2342), + [anon_sym_i64] = ACTIONS(2342), + [anon_sym_u128] = ACTIONS(2342), + [anon_sym_i128] = ACTIONS(2342), + [anon_sym_isize] = ACTIONS(2342), + [anon_sym_usize] = ACTIONS(2342), + [anon_sym_f32] = ACTIONS(2342), + [anon_sym_f64] = ACTIONS(2342), + [anon_sym_bool] = ACTIONS(2342), + [anon_sym_str] = ACTIONS(2342), + [anon_sym_char] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_AMP] = ACTIONS(2340), + [anon_sym_PIPE] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_DOT_DOT] = ACTIONS(2340), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2342), + [anon_sym_become] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_fn] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_gen] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_impl] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_mod] = ACTIONS(2342), + [anon_sym_pub] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_static] = ACTIONS(2342), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_trait] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_unsafe] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_raw] = ACTIONS(2342), + [anon_sym_yield] = ACTIONS(2342), + [anon_sym_move] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2342), + [sym_integer_literal] = ACTIONS(2340), + [aux_sym_string_literal_token1] = ACTIONS(2340), + [sym_char_literal] = ACTIONS(2340), + [anon_sym_true] = ACTIONS(2342), + [anon_sym_false] = ACTIONS(2342), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2342), + [sym_super] = ACTIONS(2342), + [sym_crate] = ACTIONS(2342), + [sym_metavariable] = ACTIONS(2340), + [sym__raw_string_literal_start] = ACTIONS(2340), + [sym_float_literal] = ACTIONS(2340), }, [STATE(626)] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2346), + [anon_sym_SEMI] = ACTIONS(2344), + [anon_sym_macro_rules_BANG] = ACTIONS(2344), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_LBRACK] = ACTIONS(2344), + [anon_sym_LBRACE] = ACTIONS(2344), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_STAR] = ACTIONS(2344), + [anon_sym_u8] = ACTIONS(2346), + [anon_sym_i8] = ACTIONS(2346), + [anon_sym_u16] = ACTIONS(2346), + [anon_sym_i16] = ACTIONS(2346), + [anon_sym_u32] = ACTIONS(2346), + [anon_sym_i32] = ACTIONS(2346), + [anon_sym_u64] = ACTIONS(2346), + [anon_sym_i64] = ACTIONS(2346), + [anon_sym_u128] = ACTIONS(2346), + [anon_sym_i128] = ACTIONS(2346), + [anon_sym_isize] = ACTIONS(2346), + [anon_sym_usize] = ACTIONS(2346), + [anon_sym_f32] = ACTIONS(2346), + [anon_sym_f64] = ACTIONS(2346), + [anon_sym_bool] = ACTIONS(2346), + [anon_sym_str] = ACTIONS(2346), + [anon_sym_char] = ACTIONS(2346), + [anon_sym_DASH] = ACTIONS(2344), + [anon_sym_BANG] = ACTIONS(2344), + [anon_sym_AMP] = ACTIONS(2344), + [anon_sym_PIPE] = ACTIONS(2344), + [anon_sym_LT] = ACTIONS(2344), + [anon_sym_DOT_DOT] = ACTIONS(2344), + [anon_sym_COLON_COLON] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(2344), + [anon_sym_SQUOTE] = ACTIONS(2346), + [anon_sym_async] = ACTIONS(2346), + [anon_sym_become] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2346), + [anon_sym_fn] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_gen] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_impl] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_mod] = ACTIONS(2346), + [anon_sym_pub] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_static] = ACTIONS(2346), + [anon_sym_struct] = ACTIONS(2346), + [anon_sym_trait] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2346), + [anon_sym_union] = ACTIONS(2346), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_raw] = ACTIONS(2346), + [anon_sym_yield] = ACTIONS(2346), + [anon_sym_move] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [sym_integer_literal] = ACTIONS(2344), + [aux_sym_string_literal_token1] = ACTIONS(2344), + [sym_char_literal] = ACTIONS(2344), + [anon_sym_true] = ACTIONS(2346), + [anon_sym_false] = ACTIONS(2346), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2346), + [sym_super] = ACTIONS(2346), + [sym_crate] = ACTIONS(2346), + [sym_metavariable] = ACTIONS(2344), + [sym__raw_string_literal_start] = ACTIONS(2344), + [sym_float_literal] = ACTIONS(2344), }, [STATE(627)] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2350), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_macro_rules_BANG] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2348), + [anon_sym_u8] = ACTIONS(2350), + [anon_sym_i8] = ACTIONS(2350), + [anon_sym_u16] = ACTIONS(2350), + [anon_sym_i16] = ACTIONS(2350), + [anon_sym_u32] = ACTIONS(2350), + [anon_sym_i32] = ACTIONS(2350), + [anon_sym_u64] = ACTIONS(2350), + [anon_sym_i64] = ACTIONS(2350), + [anon_sym_u128] = ACTIONS(2350), + [anon_sym_i128] = ACTIONS(2350), + [anon_sym_isize] = ACTIONS(2350), + [anon_sym_usize] = ACTIONS(2350), + [anon_sym_f32] = ACTIONS(2350), + [anon_sym_f64] = ACTIONS(2350), + [anon_sym_bool] = ACTIONS(2350), + [anon_sym_str] = ACTIONS(2350), + [anon_sym_char] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_AMP] = ACTIONS(2348), + [anon_sym_PIPE] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_DOT_DOT] = ACTIONS(2348), + [anon_sym_COLON_COLON] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2350), + [anon_sym_become] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2350), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_gen] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_mod] = ACTIONS(2350), + [anon_sym_pub] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_static] = ACTIONS(2350), + [anon_sym_struct] = ACTIONS(2350), + [anon_sym_trait] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2350), + [anon_sym_union] = ACTIONS(2350), + [anon_sym_unsafe] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_raw] = ACTIONS(2350), + [anon_sym_yield] = ACTIONS(2350), + [anon_sym_move] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2350), + [sym_integer_literal] = ACTIONS(2348), + [aux_sym_string_literal_token1] = ACTIONS(2348), + [sym_char_literal] = ACTIONS(2348), + [anon_sym_true] = ACTIONS(2350), + [anon_sym_false] = ACTIONS(2350), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2350), + [sym_super] = ACTIONS(2350), + [sym_crate] = ACTIONS(2350), + [sym_metavariable] = ACTIONS(2348), + [sym__raw_string_literal_start] = ACTIONS(2348), + [sym_float_literal] = ACTIONS(2348), }, [STATE(628)] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2354), + [anon_sym_SEMI] = ACTIONS(2352), + [anon_sym_macro_rules_BANG] = ACTIONS(2352), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_LBRACK] = ACTIONS(2352), + [anon_sym_LBRACE] = ACTIONS(2352), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_STAR] = ACTIONS(2352), + [anon_sym_u8] = ACTIONS(2354), + [anon_sym_i8] = ACTIONS(2354), + [anon_sym_u16] = ACTIONS(2354), + [anon_sym_i16] = ACTIONS(2354), + [anon_sym_u32] = ACTIONS(2354), + [anon_sym_i32] = ACTIONS(2354), + [anon_sym_u64] = ACTIONS(2354), + [anon_sym_i64] = ACTIONS(2354), + [anon_sym_u128] = ACTIONS(2354), + [anon_sym_i128] = ACTIONS(2354), + [anon_sym_isize] = ACTIONS(2354), + [anon_sym_usize] = ACTIONS(2354), + [anon_sym_f32] = ACTIONS(2354), + [anon_sym_f64] = ACTIONS(2354), + [anon_sym_bool] = ACTIONS(2354), + [anon_sym_str] = ACTIONS(2354), + [anon_sym_char] = ACTIONS(2354), + [anon_sym_DASH] = ACTIONS(2352), + [anon_sym_BANG] = ACTIONS(2352), + [anon_sym_AMP] = ACTIONS(2352), + [anon_sym_PIPE] = ACTIONS(2352), + [anon_sym_LT] = ACTIONS(2352), + [anon_sym_DOT_DOT] = ACTIONS(2352), + [anon_sym_COLON_COLON] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(2352), + [anon_sym_SQUOTE] = ACTIONS(2354), + [anon_sym_async] = ACTIONS(2354), + [anon_sym_become] = ACTIONS(2354), + [anon_sym_break] = ACTIONS(2354), + [anon_sym_const] = ACTIONS(2354), + [anon_sym_continue] = ACTIONS(2354), + [anon_sym_default] = ACTIONS(2354), + [anon_sym_enum] = ACTIONS(2354), + [anon_sym_fn] = ACTIONS(2354), + [anon_sym_for] = ACTIONS(2354), + [anon_sym_gen] = ACTIONS(2354), + [anon_sym_if] = ACTIONS(2354), + [anon_sym_impl] = ACTIONS(2354), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_loop] = ACTIONS(2354), + [anon_sym_match] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2354), + [anon_sym_pub] = ACTIONS(2354), + [anon_sym_return] = ACTIONS(2354), + [anon_sym_static] = ACTIONS(2354), + [anon_sym_struct] = ACTIONS(2354), + [anon_sym_trait] = ACTIONS(2354), + [anon_sym_type] = ACTIONS(2354), + [anon_sym_union] = ACTIONS(2354), + [anon_sym_unsafe] = ACTIONS(2354), + [anon_sym_use] = ACTIONS(2354), + [anon_sym_while] = ACTIONS(2354), + [anon_sym_extern] = ACTIONS(2354), + [anon_sym_raw] = ACTIONS(2354), + [anon_sym_yield] = ACTIONS(2354), + [anon_sym_move] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2354), + [sym_integer_literal] = ACTIONS(2352), + [aux_sym_string_literal_token1] = ACTIONS(2352), + [sym_char_literal] = ACTIONS(2352), + [anon_sym_true] = ACTIONS(2354), + [anon_sym_false] = ACTIONS(2354), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2354), + [sym_super] = ACTIONS(2354), + [sym_crate] = ACTIONS(2354), + [sym_metavariable] = ACTIONS(2352), + [sym__raw_string_literal_start] = ACTIONS(2352), + [sym_float_literal] = ACTIONS(2352), }, [STATE(629)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3293), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(2356), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(630)] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_macro_rules_BANG] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2358), + [anon_sym_u8] = ACTIONS(2360), + [anon_sym_i8] = ACTIONS(2360), + [anon_sym_u16] = ACTIONS(2360), + [anon_sym_i16] = ACTIONS(2360), + [anon_sym_u32] = ACTIONS(2360), + [anon_sym_i32] = ACTIONS(2360), + [anon_sym_u64] = ACTIONS(2360), + [anon_sym_i64] = ACTIONS(2360), + [anon_sym_u128] = ACTIONS(2360), + [anon_sym_i128] = ACTIONS(2360), + [anon_sym_isize] = ACTIONS(2360), + [anon_sym_usize] = ACTIONS(2360), + [anon_sym_f32] = ACTIONS(2360), + [anon_sym_f64] = ACTIONS(2360), + [anon_sym_bool] = ACTIONS(2360), + [anon_sym_str] = ACTIONS(2360), + [anon_sym_char] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_AMP] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_DOT_DOT] = ACTIONS(2358), + [anon_sym_COLON_COLON] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2360), + [anon_sym_become] = ACTIONS(2360), + [anon_sym_break] = ACTIONS(2360), + [anon_sym_const] = ACTIONS(2360), + [anon_sym_continue] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2360), + [anon_sym_fn] = ACTIONS(2360), + [anon_sym_for] = ACTIONS(2360), + [anon_sym_gen] = ACTIONS(2360), + [anon_sym_if] = ACTIONS(2360), + [anon_sym_impl] = ACTIONS(2360), + [anon_sym_let] = ACTIONS(2360), + [anon_sym_loop] = ACTIONS(2360), + [anon_sym_match] = ACTIONS(2360), + [anon_sym_mod] = ACTIONS(2360), + [anon_sym_pub] = ACTIONS(2360), + [anon_sym_return] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(2360), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_trait] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2360), + [anon_sym_union] = ACTIONS(2360), + [anon_sym_unsafe] = ACTIONS(2360), + [anon_sym_use] = ACTIONS(2360), + [anon_sym_while] = ACTIONS(2360), + [anon_sym_extern] = ACTIONS(2360), + [anon_sym_raw] = ACTIONS(2360), + [anon_sym_yield] = ACTIONS(2360), + [anon_sym_move] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2360), + [sym_integer_literal] = ACTIONS(2358), + [aux_sym_string_literal_token1] = ACTIONS(2358), + [sym_char_literal] = ACTIONS(2358), + [anon_sym_true] = ACTIONS(2360), + [anon_sym_false] = ACTIONS(2360), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2360), + [sym_super] = ACTIONS(2360), + [sym_crate] = ACTIONS(2360), + [sym_metavariable] = ACTIONS(2358), + [sym__raw_string_literal_start] = ACTIONS(2358), + [sym_float_literal] = ACTIONS(2358), }, [STATE(631)] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2364), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_macro_rules_BANG] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_LBRACK] = ACTIONS(2362), + [anon_sym_LBRACE] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_STAR] = ACTIONS(2362), + [anon_sym_u8] = ACTIONS(2364), + [anon_sym_i8] = ACTIONS(2364), + [anon_sym_u16] = ACTIONS(2364), + [anon_sym_i16] = ACTIONS(2364), + [anon_sym_u32] = ACTIONS(2364), + [anon_sym_i32] = ACTIONS(2364), + [anon_sym_u64] = ACTIONS(2364), + [anon_sym_i64] = ACTIONS(2364), + [anon_sym_u128] = ACTIONS(2364), + [anon_sym_i128] = ACTIONS(2364), + [anon_sym_isize] = ACTIONS(2364), + [anon_sym_usize] = ACTIONS(2364), + [anon_sym_f32] = ACTIONS(2364), + [anon_sym_f64] = ACTIONS(2364), + [anon_sym_bool] = ACTIONS(2364), + [anon_sym_str] = ACTIONS(2364), + [anon_sym_char] = ACTIONS(2364), + [anon_sym_DASH] = ACTIONS(2362), + [anon_sym_BANG] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(2362), + [anon_sym_DOT_DOT] = ACTIONS(2362), + [anon_sym_COLON_COLON] = ACTIONS(2362), + [anon_sym_POUND] = ACTIONS(2362), + [anon_sym_SQUOTE] = ACTIONS(2364), + [anon_sym_async] = ACTIONS(2364), + [anon_sym_become] = ACTIONS(2364), + [anon_sym_break] = ACTIONS(2364), + [anon_sym_const] = ACTIONS(2364), + [anon_sym_continue] = ACTIONS(2364), + [anon_sym_default] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(2364), + [anon_sym_fn] = ACTIONS(2364), + [anon_sym_for] = ACTIONS(2364), + [anon_sym_gen] = ACTIONS(2364), + [anon_sym_if] = ACTIONS(2364), + [anon_sym_impl] = ACTIONS(2364), + [anon_sym_let] = ACTIONS(2364), + [anon_sym_loop] = ACTIONS(2364), + [anon_sym_match] = ACTIONS(2364), + [anon_sym_mod] = ACTIONS(2364), + [anon_sym_pub] = ACTIONS(2364), + [anon_sym_return] = ACTIONS(2364), + [anon_sym_static] = ACTIONS(2364), + [anon_sym_struct] = ACTIONS(2364), + [anon_sym_trait] = ACTIONS(2364), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2364), + [anon_sym_unsafe] = ACTIONS(2364), + [anon_sym_use] = ACTIONS(2364), + [anon_sym_while] = ACTIONS(2364), + [anon_sym_extern] = ACTIONS(2364), + [anon_sym_raw] = ACTIONS(2364), + [anon_sym_yield] = ACTIONS(2364), + [anon_sym_move] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2364), + [sym_integer_literal] = ACTIONS(2362), + [aux_sym_string_literal_token1] = ACTIONS(2362), + [sym_char_literal] = ACTIONS(2362), + [anon_sym_true] = ACTIONS(2364), + [anon_sym_false] = ACTIONS(2364), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_crate] = ACTIONS(2364), + [sym_metavariable] = ACTIONS(2362), + [sym__raw_string_literal_start] = ACTIONS(2362), + [sym_float_literal] = ACTIONS(2362), }, [STATE(632)] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2368), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_macro_rules_BANG] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_u8] = ACTIONS(2368), + [anon_sym_i8] = ACTIONS(2368), + [anon_sym_u16] = ACTIONS(2368), + [anon_sym_i16] = ACTIONS(2368), + [anon_sym_u32] = ACTIONS(2368), + [anon_sym_i32] = ACTIONS(2368), + [anon_sym_u64] = ACTIONS(2368), + [anon_sym_i64] = ACTIONS(2368), + [anon_sym_u128] = ACTIONS(2368), + [anon_sym_i128] = ACTIONS(2368), + [anon_sym_isize] = ACTIONS(2368), + [anon_sym_usize] = ACTIONS(2368), + [anon_sym_f32] = ACTIONS(2368), + [anon_sym_f64] = ACTIONS(2368), + [anon_sym_bool] = ACTIONS(2368), + [anon_sym_str] = ACTIONS(2368), + [anon_sym_char] = ACTIONS(2368), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_DOT_DOT] = ACTIONS(2366), + [anon_sym_COLON_COLON] = ACTIONS(2366), + [anon_sym_POUND] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2368), + [anon_sym_async] = ACTIONS(2368), + [anon_sym_become] = ACTIONS(2368), + [anon_sym_break] = ACTIONS(2368), + [anon_sym_const] = ACTIONS(2368), + [anon_sym_continue] = ACTIONS(2368), + [anon_sym_default] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2368), + [anon_sym_fn] = ACTIONS(2368), + [anon_sym_for] = ACTIONS(2368), + [anon_sym_gen] = ACTIONS(2368), + [anon_sym_if] = ACTIONS(2368), + [anon_sym_impl] = ACTIONS(2368), + [anon_sym_let] = ACTIONS(2368), + [anon_sym_loop] = ACTIONS(2368), + [anon_sym_match] = ACTIONS(2368), + [anon_sym_mod] = ACTIONS(2368), + [anon_sym_pub] = ACTIONS(2368), + [anon_sym_return] = ACTIONS(2368), + [anon_sym_static] = ACTIONS(2368), + [anon_sym_struct] = ACTIONS(2368), + [anon_sym_trait] = ACTIONS(2368), + [anon_sym_type] = ACTIONS(2368), + [anon_sym_union] = ACTIONS(2368), + [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2368), + [anon_sym_while] = ACTIONS(2368), + [anon_sym_extern] = ACTIONS(2368), + [anon_sym_raw] = ACTIONS(2368), + [anon_sym_yield] = ACTIONS(2368), + [anon_sym_move] = ACTIONS(2368), + [anon_sym_try] = ACTIONS(2368), + [sym_integer_literal] = ACTIONS(2366), + [aux_sym_string_literal_token1] = ACTIONS(2366), + [sym_char_literal] = ACTIONS(2366), + [anon_sym_true] = ACTIONS(2368), + [anon_sym_false] = ACTIONS(2368), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2368), + [sym_super] = ACTIONS(2368), + [sym_crate] = ACTIONS(2368), + [sym_metavariable] = ACTIONS(2366), + [sym__raw_string_literal_start] = ACTIONS(2366), + [sym_float_literal] = ACTIONS(2366), }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2372), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_macro_rules_BANG] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_u8] = ACTIONS(2372), + [anon_sym_i8] = ACTIONS(2372), + [anon_sym_u16] = ACTIONS(2372), + [anon_sym_i16] = ACTIONS(2372), + [anon_sym_u32] = ACTIONS(2372), + [anon_sym_i32] = ACTIONS(2372), + [anon_sym_u64] = ACTIONS(2372), + [anon_sym_i64] = ACTIONS(2372), + [anon_sym_u128] = ACTIONS(2372), + [anon_sym_i128] = ACTIONS(2372), + [anon_sym_isize] = ACTIONS(2372), + [anon_sym_usize] = ACTIONS(2372), + [anon_sym_f32] = ACTIONS(2372), + [anon_sym_f64] = ACTIONS(2372), + [anon_sym_bool] = ACTIONS(2372), + [anon_sym_str] = ACTIONS(2372), + [anon_sym_char] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_DOT_DOT] = ACTIONS(2370), + [anon_sym_COLON_COLON] = ACTIONS(2370), + [anon_sym_POUND] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2372), + [anon_sym_async] = ACTIONS(2372), + [anon_sym_become] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_default] = ACTIONS(2372), + [anon_sym_enum] = ACTIONS(2372), + [anon_sym_fn] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_gen] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_impl] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_mod] = ACTIONS(2372), + [anon_sym_pub] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_static] = ACTIONS(2372), + [anon_sym_struct] = ACTIONS(2372), + [anon_sym_trait] = ACTIONS(2372), + [anon_sym_type] = ACTIONS(2372), + [anon_sym_union] = ACTIONS(2372), + [anon_sym_unsafe] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_raw] = ACTIONS(2372), + [anon_sym_yield] = ACTIONS(2372), + [anon_sym_move] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [sym_integer_literal] = ACTIONS(2370), + [aux_sym_string_literal_token1] = ACTIONS(2370), + [sym_char_literal] = ACTIONS(2370), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2372), + [sym_super] = ACTIONS(2372), + [sym_crate] = ACTIONS(2372), + [sym_metavariable] = ACTIONS(2370), + [sym__raw_string_literal_start] = ACTIONS(2370), + [sym_float_literal] = ACTIONS(2370), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_macro_rules_BANG] = ACTIONS(2374), + [anon_sym_LPAREN] = ACTIONS(2374), + [anon_sym_LBRACK] = ACTIONS(2374), + [anon_sym_LBRACE] = ACTIONS(2374), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_STAR] = ACTIONS(2374), + [anon_sym_u8] = ACTIONS(2376), + [anon_sym_i8] = ACTIONS(2376), + [anon_sym_u16] = ACTIONS(2376), + [anon_sym_i16] = ACTIONS(2376), + [anon_sym_u32] = ACTIONS(2376), + [anon_sym_i32] = ACTIONS(2376), + [anon_sym_u64] = ACTIONS(2376), + [anon_sym_i64] = ACTIONS(2376), + [anon_sym_u128] = ACTIONS(2376), + [anon_sym_i128] = ACTIONS(2376), + [anon_sym_isize] = ACTIONS(2376), + [anon_sym_usize] = ACTIONS(2376), + [anon_sym_f32] = ACTIONS(2376), + [anon_sym_f64] = ACTIONS(2376), + [anon_sym_bool] = ACTIONS(2376), + [anon_sym_str] = ACTIONS(2376), + [anon_sym_char] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_DOT_DOT] = ACTIONS(2374), + [anon_sym_COLON_COLON] = ACTIONS(2374), + [anon_sym_POUND] = ACTIONS(2374), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_become] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [anon_sym_fn] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_gen] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_impl] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_loop] = ACTIONS(2376), + [anon_sym_match] = ACTIONS(2376), + [anon_sym_mod] = ACTIONS(2376), + [anon_sym_pub] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_struct] = ACTIONS(2376), + [anon_sym_trait] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_union] = ACTIONS(2376), + [anon_sym_unsafe] = ACTIONS(2376), + [anon_sym_use] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_extern] = ACTIONS(2376), + [anon_sym_raw] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_move] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [sym_integer_literal] = ACTIONS(2374), + [aux_sym_string_literal_token1] = ACTIONS(2374), + [sym_char_literal] = ACTIONS(2374), + [anon_sym_true] = ACTIONS(2376), + [anon_sym_false] = ACTIONS(2376), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2374), + [sym__raw_string_literal_start] = ACTIONS(2374), + [sym_float_literal] = ACTIONS(2374), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2378), + [sym_identifier] = ACTIONS(2380), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_macro_rules_BANG] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_u8] = ACTIONS(2380), + [anon_sym_i8] = ACTIONS(2380), + [anon_sym_u16] = ACTIONS(2380), + [anon_sym_i16] = ACTIONS(2380), + [anon_sym_u32] = ACTIONS(2380), + [anon_sym_i32] = ACTIONS(2380), + [anon_sym_u64] = ACTIONS(2380), + [anon_sym_i64] = ACTIONS(2380), + [anon_sym_u128] = ACTIONS(2380), + [anon_sym_i128] = ACTIONS(2380), + [anon_sym_isize] = ACTIONS(2380), + [anon_sym_usize] = ACTIONS(2380), + [anon_sym_f32] = ACTIONS(2380), + [anon_sym_f64] = ACTIONS(2380), + [anon_sym_bool] = ACTIONS(2380), + [anon_sym_str] = ACTIONS(2380), + [anon_sym_char] = ACTIONS(2380), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_DOT_DOT] = ACTIONS(2378), + [anon_sym_COLON_COLON] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_SQUOTE] = ACTIONS(2380), + [anon_sym_async] = ACTIONS(2380), + [anon_sym_become] = ACTIONS(2380), + [anon_sym_break] = ACTIONS(2380), + [anon_sym_const] = ACTIONS(2380), + [anon_sym_continue] = ACTIONS(2380), + [anon_sym_default] = ACTIONS(2380), + [anon_sym_enum] = ACTIONS(2380), + [anon_sym_fn] = ACTIONS(2380), + [anon_sym_for] = ACTIONS(2380), + [anon_sym_gen] = ACTIONS(2380), + [anon_sym_if] = ACTIONS(2380), + [anon_sym_impl] = ACTIONS(2380), + [anon_sym_let] = ACTIONS(2380), + [anon_sym_loop] = ACTIONS(2380), + [anon_sym_match] = ACTIONS(2380), + [anon_sym_mod] = ACTIONS(2380), + [anon_sym_pub] = ACTIONS(2380), + [anon_sym_return] = ACTIONS(2380), + [anon_sym_static] = ACTIONS(2380), + [anon_sym_struct] = ACTIONS(2380), + [anon_sym_trait] = ACTIONS(2380), + [anon_sym_type] = ACTIONS(2380), + [anon_sym_union] = ACTIONS(2380), + [anon_sym_unsafe] = ACTIONS(2380), + [anon_sym_use] = ACTIONS(2380), + [anon_sym_while] = ACTIONS(2380), + [anon_sym_extern] = ACTIONS(2380), + [anon_sym_raw] = ACTIONS(2380), + [anon_sym_yield] = ACTIONS(2380), + [anon_sym_move] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2380), + [sym_integer_literal] = ACTIONS(2378), + [aux_sym_string_literal_token1] = ACTIONS(2378), + [sym_char_literal] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2380), + [sym_super] = ACTIONS(2380), + [sym_crate] = ACTIONS(2380), + [sym_metavariable] = ACTIONS(2378), + [sym__raw_string_literal_start] = ACTIONS(2378), + [sym_float_literal] = ACTIONS(2378), }, [STATE(636)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2457), - [anon_sym_impl] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_trait] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2484), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_raw] = ACTIONS(2457), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2502), + [ts_builtin_sym_end] = ACTIONS(2382), + [sym_identifier] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2382), + [anon_sym_macro_rules_BANG] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(2382), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_LBRACE] = ACTIONS(2382), + [anon_sym_RBRACE] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_u8] = ACTIONS(2384), + [anon_sym_i8] = ACTIONS(2384), + [anon_sym_u16] = ACTIONS(2384), + [anon_sym_i16] = ACTIONS(2384), + [anon_sym_u32] = ACTIONS(2384), + [anon_sym_i32] = ACTIONS(2384), + [anon_sym_u64] = ACTIONS(2384), + [anon_sym_i64] = ACTIONS(2384), + [anon_sym_u128] = ACTIONS(2384), + [anon_sym_i128] = ACTIONS(2384), + [anon_sym_isize] = ACTIONS(2384), + [anon_sym_usize] = ACTIONS(2384), + [anon_sym_f32] = ACTIONS(2384), + [anon_sym_f64] = ACTIONS(2384), + [anon_sym_bool] = ACTIONS(2384), + [anon_sym_str] = ACTIONS(2384), + [anon_sym_char] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_BANG] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_DOT_DOT] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2382), + [anon_sym_POUND] = ACTIONS(2382), + [anon_sym_SQUOTE] = ACTIONS(2384), + [anon_sym_async] = ACTIONS(2384), + [anon_sym_become] = ACTIONS(2384), + [anon_sym_break] = ACTIONS(2384), + [anon_sym_const] = ACTIONS(2384), + [anon_sym_continue] = ACTIONS(2384), + [anon_sym_default] = ACTIONS(2384), + [anon_sym_enum] = ACTIONS(2384), + [anon_sym_fn] = ACTIONS(2384), + [anon_sym_for] = ACTIONS(2384), + [anon_sym_gen] = ACTIONS(2384), + [anon_sym_if] = ACTIONS(2384), + [anon_sym_impl] = ACTIONS(2384), + [anon_sym_let] = ACTIONS(2384), + [anon_sym_loop] = ACTIONS(2384), + [anon_sym_match] = ACTIONS(2384), + [anon_sym_mod] = ACTIONS(2384), + [anon_sym_pub] = ACTIONS(2384), + [anon_sym_return] = ACTIONS(2384), + [anon_sym_static] = ACTIONS(2384), + [anon_sym_struct] = ACTIONS(2384), + [anon_sym_trait] = ACTIONS(2384), + [anon_sym_type] = ACTIONS(2384), + [anon_sym_union] = ACTIONS(2384), + [anon_sym_unsafe] = ACTIONS(2384), + [anon_sym_use] = ACTIONS(2384), + [anon_sym_while] = ACTIONS(2384), + [anon_sym_extern] = ACTIONS(2384), + [anon_sym_raw] = ACTIONS(2384), + [anon_sym_yield] = ACTIONS(2384), + [anon_sym_move] = ACTIONS(2384), + [anon_sym_try] = ACTIONS(2384), + [sym_integer_literal] = ACTIONS(2382), + [aux_sym_string_literal_token1] = ACTIONS(2382), + [sym_char_literal] = ACTIONS(2382), + [anon_sym_true] = ACTIONS(2384), + [anon_sym_false] = ACTIONS(2384), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2384), + [sym_super] = ACTIONS(2384), + [sym_crate] = ACTIONS(2384), + [sym_metavariable] = ACTIONS(2382), + [sym__raw_string_literal_start] = ACTIONS(2382), + [sym_float_literal] = ACTIONS(2382), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_macro_rules_BANG] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u128] = ACTIONS(2507), - [anon_sym_i128] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_str] = ACTIONS(2507), - [anon_sym_char] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2505), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_async] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_gen] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_impl] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_mod] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_trait] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_raw] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_move] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [sym_integer_literal] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), - [sym_char_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2507), - [sym_metavariable] = ACTIONS(2505), - [sym__raw_string_literal_start] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), + [ts_builtin_sym_end] = ACTIONS(2386), + [sym_identifier] = ACTIONS(2388), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_macro_rules_BANG] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2386), + [anon_sym_u8] = ACTIONS(2388), + [anon_sym_i8] = ACTIONS(2388), + [anon_sym_u16] = ACTIONS(2388), + [anon_sym_i16] = ACTIONS(2388), + [anon_sym_u32] = ACTIONS(2388), + [anon_sym_i32] = ACTIONS(2388), + [anon_sym_u64] = ACTIONS(2388), + [anon_sym_i64] = ACTIONS(2388), + [anon_sym_u128] = ACTIONS(2388), + [anon_sym_i128] = ACTIONS(2388), + [anon_sym_isize] = ACTIONS(2388), + [anon_sym_usize] = ACTIONS(2388), + [anon_sym_f32] = ACTIONS(2388), + [anon_sym_f64] = ACTIONS(2388), + [anon_sym_bool] = ACTIONS(2388), + [anon_sym_str] = ACTIONS(2388), + [anon_sym_char] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_AMP] = ACTIONS(2386), + [anon_sym_PIPE] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_DOT_DOT] = ACTIONS(2386), + [anon_sym_COLON_COLON] = ACTIONS(2386), + [anon_sym_POUND] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2388), + [anon_sym_become] = ACTIONS(2388), + [anon_sym_break] = ACTIONS(2388), + [anon_sym_const] = ACTIONS(2388), + [anon_sym_continue] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2388), + [anon_sym_fn] = ACTIONS(2388), + [anon_sym_for] = ACTIONS(2388), + [anon_sym_gen] = ACTIONS(2388), + [anon_sym_if] = ACTIONS(2388), + [anon_sym_impl] = ACTIONS(2388), + [anon_sym_let] = ACTIONS(2388), + [anon_sym_loop] = ACTIONS(2388), + [anon_sym_match] = ACTIONS(2388), + [anon_sym_mod] = ACTIONS(2388), + [anon_sym_pub] = ACTIONS(2388), + [anon_sym_return] = ACTIONS(2388), + [anon_sym_static] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(2388), + [anon_sym_trait] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2388), + [anon_sym_union] = ACTIONS(2388), + [anon_sym_unsafe] = ACTIONS(2388), + [anon_sym_use] = ACTIONS(2388), + [anon_sym_while] = ACTIONS(2388), + [anon_sym_extern] = ACTIONS(2388), + [anon_sym_raw] = ACTIONS(2388), + [anon_sym_yield] = ACTIONS(2388), + [anon_sym_move] = ACTIONS(2388), + [anon_sym_try] = ACTIONS(2388), + [sym_integer_literal] = ACTIONS(2386), + [aux_sym_string_literal_token1] = ACTIONS(2386), + [sym_char_literal] = ACTIONS(2386), + [anon_sym_true] = ACTIONS(2388), + [anon_sym_false] = ACTIONS(2388), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2388), + [sym_super] = ACTIONS(2388), + [sym_crate] = ACTIONS(2388), + [sym_metavariable] = ACTIONS(2386), + [sym__raw_string_literal_start] = ACTIONS(2386), + [sym_float_literal] = ACTIONS(2386), }, [STATE(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_macro_rules_BANG] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u128] = ACTIONS(2511), - [anon_sym_i128] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_str] = ACTIONS(2511), - [anon_sym_char] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_async] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_gen] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_impl] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_mod] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_trait] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_raw] = ACTIONS(2511), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_move] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [sym_integer_literal] = ACTIONS(2509), - [aux_sym_string_literal_token1] = ACTIONS(2509), - [sym_char_literal] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2511), - [sym_super] = ACTIONS(2511), - [sym_crate] = ACTIONS(2511), - [sym_metavariable] = ACTIONS(2509), - [sym__raw_string_literal_start] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), + [ts_builtin_sym_end] = ACTIONS(2390), + [sym_identifier] = ACTIONS(2392), + [anon_sym_SEMI] = ACTIONS(2390), + [anon_sym_macro_rules_BANG] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(2390), + [anon_sym_LBRACK] = ACTIONS(2390), + [anon_sym_LBRACE] = ACTIONS(2390), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2390), + [anon_sym_u8] = ACTIONS(2392), + [anon_sym_i8] = ACTIONS(2392), + [anon_sym_u16] = ACTIONS(2392), + [anon_sym_i16] = ACTIONS(2392), + [anon_sym_u32] = ACTIONS(2392), + [anon_sym_i32] = ACTIONS(2392), + [anon_sym_u64] = ACTIONS(2392), + [anon_sym_i64] = ACTIONS(2392), + [anon_sym_u128] = ACTIONS(2392), + [anon_sym_i128] = ACTIONS(2392), + [anon_sym_isize] = ACTIONS(2392), + [anon_sym_usize] = ACTIONS(2392), + [anon_sym_f32] = ACTIONS(2392), + [anon_sym_f64] = ACTIONS(2392), + [anon_sym_bool] = ACTIONS(2392), + [anon_sym_str] = ACTIONS(2392), + [anon_sym_char] = ACTIONS(2392), + [anon_sym_DASH] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_AMP] = ACTIONS(2390), + [anon_sym_PIPE] = ACTIONS(2390), + [anon_sym_LT] = ACTIONS(2390), + [anon_sym_DOT_DOT] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_SQUOTE] = ACTIONS(2392), + [anon_sym_async] = ACTIONS(2392), + [anon_sym_become] = ACTIONS(2392), + [anon_sym_break] = ACTIONS(2392), + [anon_sym_const] = ACTIONS(2392), + [anon_sym_continue] = ACTIONS(2392), + [anon_sym_default] = ACTIONS(2392), + [anon_sym_enum] = ACTIONS(2392), + [anon_sym_fn] = ACTIONS(2392), + [anon_sym_for] = ACTIONS(2392), + [anon_sym_gen] = ACTIONS(2392), + [anon_sym_if] = ACTIONS(2392), + [anon_sym_impl] = ACTIONS(2392), + [anon_sym_let] = ACTIONS(2392), + [anon_sym_loop] = ACTIONS(2392), + [anon_sym_match] = ACTIONS(2392), + [anon_sym_mod] = ACTIONS(2392), + [anon_sym_pub] = ACTIONS(2392), + [anon_sym_return] = ACTIONS(2392), + [anon_sym_static] = ACTIONS(2392), + [anon_sym_struct] = ACTIONS(2392), + [anon_sym_trait] = ACTIONS(2392), + [anon_sym_type] = ACTIONS(2392), + [anon_sym_union] = ACTIONS(2392), + [anon_sym_unsafe] = ACTIONS(2392), + [anon_sym_use] = ACTIONS(2392), + [anon_sym_while] = ACTIONS(2392), + [anon_sym_extern] = ACTIONS(2392), + [anon_sym_raw] = ACTIONS(2392), + [anon_sym_yield] = ACTIONS(2392), + [anon_sym_move] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2392), + [sym_integer_literal] = ACTIONS(2390), + [aux_sym_string_literal_token1] = ACTIONS(2390), + [sym_char_literal] = ACTIONS(2390), + [anon_sym_true] = ACTIONS(2392), + [anon_sym_false] = ACTIONS(2392), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2392), + [sym_super] = ACTIONS(2392), + [sym_crate] = ACTIONS(2392), + [sym_metavariable] = ACTIONS(2390), + [sym__raw_string_literal_start] = ACTIONS(2390), + [sym_float_literal] = ACTIONS(2390), }, [STATE(639)] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_macro_rules_BANG] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_u8] = ACTIONS(2515), - [anon_sym_i8] = ACTIONS(2515), - [anon_sym_u16] = ACTIONS(2515), - [anon_sym_i16] = ACTIONS(2515), - [anon_sym_u32] = ACTIONS(2515), - [anon_sym_i32] = ACTIONS(2515), - [anon_sym_u64] = ACTIONS(2515), - [anon_sym_i64] = ACTIONS(2515), - [anon_sym_u128] = ACTIONS(2515), - [anon_sym_i128] = ACTIONS(2515), - [anon_sym_isize] = ACTIONS(2515), - [anon_sym_usize] = ACTIONS(2515), - [anon_sym_f32] = ACTIONS(2515), - [anon_sym_f64] = ACTIONS(2515), - [anon_sym_bool] = ACTIONS(2515), - [anon_sym_str] = ACTIONS(2515), - [anon_sym_char] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_gen] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_impl] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_mod] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_trait] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [sym_integer_literal] = ACTIONS(2513), - [aux_sym_string_literal_token1] = ACTIONS(2513), - [sym_char_literal] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2515), - [sym_super] = ACTIONS(2515), - [sym_crate] = ACTIONS(2515), - [sym_metavariable] = ACTIONS(2513), - [sym__raw_string_literal_start] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), + [ts_builtin_sym_end] = ACTIONS(2394), + [sym_identifier] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2394), + [anon_sym_macro_rules_BANG] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_STAR] = ACTIONS(2394), + [anon_sym_u8] = ACTIONS(2396), + [anon_sym_i8] = ACTIONS(2396), + [anon_sym_u16] = ACTIONS(2396), + [anon_sym_i16] = ACTIONS(2396), + [anon_sym_u32] = ACTIONS(2396), + [anon_sym_i32] = ACTIONS(2396), + [anon_sym_u64] = ACTIONS(2396), + [anon_sym_i64] = ACTIONS(2396), + [anon_sym_u128] = ACTIONS(2396), + [anon_sym_i128] = ACTIONS(2396), + [anon_sym_isize] = ACTIONS(2396), + [anon_sym_usize] = ACTIONS(2396), + [anon_sym_f32] = ACTIONS(2396), + [anon_sym_f64] = ACTIONS(2396), + [anon_sym_bool] = ACTIONS(2396), + [anon_sym_str] = ACTIONS(2396), + [anon_sym_char] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2394), + [anon_sym_BANG] = ACTIONS(2394), + [anon_sym_AMP] = ACTIONS(2394), + [anon_sym_PIPE] = ACTIONS(2394), + [anon_sym_LT] = ACTIONS(2394), + [anon_sym_DOT_DOT] = ACTIONS(2394), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_POUND] = ACTIONS(2394), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_become] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [anon_sym_fn] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_gen] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_impl] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_loop] = ACTIONS(2396), + [anon_sym_match] = ACTIONS(2396), + [anon_sym_mod] = ACTIONS(2396), + [anon_sym_pub] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_struct] = ACTIONS(2396), + [anon_sym_trait] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_union] = ACTIONS(2396), + [anon_sym_unsafe] = ACTIONS(2396), + [anon_sym_use] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_extern] = ACTIONS(2396), + [anon_sym_raw] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_move] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [sym_integer_literal] = ACTIONS(2394), + [aux_sym_string_literal_token1] = ACTIONS(2394), + [sym_char_literal] = ACTIONS(2394), + [anon_sym_true] = ACTIONS(2396), + [anon_sym_false] = ACTIONS(2396), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_crate] = ACTIONS(2396), + [sym_metavariable] = ACTIONS(2394), + [sym__raw_string_literal_start] = ACTIONS(2394), + [sym_float_literal] = ACTIONS(2394), }, [STATE(640)] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_macro_rules_BANG] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_gen] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_impl] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_mod] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_trait] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_raw] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), - [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym__raw_string_literal_start] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_macro_rules_BANG] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_LBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_u8] = ACTIONS(2400), + [anon_sym_i8] = ACTIONS(2400), + [anon_sym_u16] = ACTIONS(2400), + [anon_sym_i16] = ACTIONS(2400), + [anon_sym_u32] = ACTIONS(2400), + [anon_sym_i32] = ACTIONS(2400), + [anon_sym_u64] = ACTIONS(2400), + [anon_sym_i64] = ACTIONS(2400), + [anon_sym_u128] = ACTIONS(2400), + [anon_sym_i128] = ACTIONS(2400), + [anon_sym_isize] = ACTIONS(2400), + [anon_sym_usize] = ACTIONS(2400), + [anon_sym_f32] = ACTIONS(2400), + [anon_sym_f64] = ACTIONS(2400), + [anon_sym_bool] = ACTIONS(2400), + [anon_sym_str] = ACTIONS(2400), + [anon_sym_char] = ACTIONS(2400), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_DOT_DOT] = ACTIONS(2398), + [anon_sym_COLON_COLON] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(2398), + [anon_sym_SQUOTE] = ACTIONS(2400), + [anon_sym_async] = ACTIONS(2400), + [anon_sym_become] = ACTIONS(2400), + [anon_sym_break] = ACTIONS(2400), + [anon_sym_const] = ACTIONS(2400), + [anon_sym_continue] = ACTIONS(2400), + [anon_sym_default] = ACTIONS(2400), + [anon_sym_enum] = ACTIONS(2400), + [anon_sym_fn] = ACTIONS(2400), + [anon_sym_for] = ACTIONS(2400), + [anon_sym_gen] = ACTIONS(2400), + [anon_sym_if] = ACTIONS(2400), + [anon_sym_impl] = ACTIONS(2400), + [anon_sym_let] = ACTIONS(2400), + [anon_sym_loop] = ACTIONS(2400), + [anon_sym_match] = ACTIONS(2400), + [anon_sym_mod] = ACTIONS(2400), + [anon_sym_pub] = ACTIONS(2400), + [anon_sym_return] = ACTIONS(2400), + [anon_sym_static] = ACTIONS(2400), + [anon_sym_struct] = ACTIONS(2400), + [anon_sym_trait] = ACTIONS(2400), + [anon_sym_type] = ACTIONS(2400), + [anon_sym_union] = ACTIONS(2400), + [anon_sym_unsafe] = ACTIONS(2400), + [anon_sym_use] = ACTIONS(2400), + [anon_sym_while] = ACTIONS(2400), + [anon_sym_extern] = ACTIONS(2400), + [anon_sym_raw] = ACTIONS(2400), + [anon_sym_yield] = ACTIONS(2400), + [anon_sym_move] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2400), + [sym_integer_literal] = ACTIONS(2398), + [aux_sym_string_literal_token1] = ACTIONS(2398), + [sym_char_literal] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2400), + [sym_super] = ACTIONS(2400), + [sym_crate] = ACTIONS(2400), + [sym_metavariable] = ACTIONS(2398), + [sym__raw_string_literal_start] = ACTIONS(2398), + [sym_float_literal] = ACTIONS(2398), }, [STATE(641)] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_macro_rules_BANG] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u128] = ACTIONS(2523), - [anon_sym_i128] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_str] = ACTIONS(2523), - [anon_sym_char] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2523), - [anon_sym_fn] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_gen] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_impl] = ACTIONS(2523), - [anon_sym_let] = ACTIONS(2523), - [anon_sym_loop] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_mod] = ACTIONS(2523), - [anon_sym_pub] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_trait] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2523), - [anon_sym_union] = ACTIONS(2523), - [anon_sym_unsafe] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_extern] = ACTIONS(2523), - [anon_sym_raw] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_move] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2523), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2523), - [sym_super] = ACTIONS(2523), - [sym_crate] = ACTIONS(2523), - [sym_metavariable] = ACTIONS(2521), - [sym__raw_string_literal_start] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), + [ts_builtin_sym_end] = ACTIONS(2402), + [sym_identifier] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2402), + [anon_sym_macro_rules_BANG] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_LBRACK] = ACTIONS(2402), + [anon_sym_LBRACE] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_STAR] = ACTIONS(2402), + [anon_sym_u8] = ACTIONS(2404), + [anon_sym_i8] = ACTIONS(2404), + [anon_sym_u16] = ACTIONS(2404), + [anon_sym_i16] = ACTIONS(2404), + [anon_sym_u32] = ACTIONS(2404), + [anon_sym_i32] = ACTIONS(2404), + [anon_sym_u64] = ACTIONS(2404), + [anon_sym_i64] = ACTIONS(2404), + [anon_sym_u128] = ACTIONS(2404), + [anon_sym_i128] = ACTIONS(2404), + [anon_sym_isize] = ACTIONS(2404), + [anon_sym_usize] = ACTIONS(2404), + [anon_sym_f32] = ACTIONS(2404), + [anon_sym_f64] = ACTIONS(2404), + [anon_sym_bool] = ACTIONS(2404), + [anon_sym_str] = ACTIONS(2404), + [anon_sym_char] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_BANG] = ACTIONS(2402), + [anon_sym_AMP] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(2402), + [anon_sym_DOT_DOT] = ACTIONS(2402), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_become] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [anon_sym_fn] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_gen] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_impl] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_loop] = ACTIONS(2404), + [anon_sym_match] = ACTIONS(2404), + [anon_sym_mod] = ACTIONS(2404), + [anon_sym_pub] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_struct] = ACTIONS(2404), + [anon_sym_trait] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_union] = ACTIONS(2404), + [anon_sym_unsafe] = ACTIONS(2404), + [anon_sym_use] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_extern] = ACTIONS(2404), + [anon_sym_raw] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_move] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [sym_integer_literal] = ACTIONS(2402), + [aux_sym_string_literal_token1] = ACTIONS(2402), + [sym_char_literal] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2404), + [anon_sym_false] = ACTIONS(2404), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_crate] = ACTIONS(2404), + [sym_metavariable] = ACTIONS(2402), + [sym__raw_string_literal_start] = ACTIONS(2402), + [sym_float_literal] = ACTIONS(2402), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_identifier] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_macro_rules_BANG] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_u8] = ACTIONS(2527), - [anon_sym_i8] = ACTIONS(2527), - [anon_sym_u16] = ACTIONS(2527), - [anon_sym_i16] = ACTIONS(2527), - [anon_sym_u32] = ACTIONS(2527), - [anon_sym_i32] = ACTIONS(2527), - [anon_sym_u64] = ACTIONS(2527), - [anon_sym_i64] = ACTIONS(2527), - [anon_sym_u128] = ACTIONS(2527), - [anon_sym_i128] = ACTIONS(2527), - [anon_sym_isize] = ACTIONS(2527), - [anon_sym_usize] = ACTIONS(2527), - [anon_sym_f32] = ACTIONS(2527), - [anon_sym_f64] = ACTIONS(2527), - [anon_sym_bool] = ACTIONS(2527), - [anon_sym_str] = ACTIONS(2527), - [anon_sym_char] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_DOT_DOT] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_const] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_enum] = ACTIONS(2527), - [anon_sym_fn] = ACTIONS(2527), - [anon_sym_for] = ACTIONS(2527), - [anon_sym_gen] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_impl] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2527), - [anon_sym_loop] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_mod] = ACTIONS(2527), - [anon_sym_pub] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_static] = ACTIONS(2527), - [anon_sym_struct] = ACTIONS(2527), - [anon_sym_trait] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2527), - [anon_sym_union] = ACTIONS(2527), - [anon_sym_unsafe] = ACTIONS(2527), - [anon_sym_use] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2527), - [anon_sym_extern] = ACTIONS(2527), - [anon_sym_raw] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2527), - [anon_sym_move] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2527), - [sym_integer_literal] = ACTIONS(2525), - [aux_sym_string_literal_token1] = ACTIONS(2525), - [sym_char_literal] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2527), - [sym_super] = ACTIONS(2527), - [sym_crate] = ACTIONS(2527), - [sym_metavariable] = ACTIONS(2525), - [sym__raw_string_literal_start] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(643)] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_identifier] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_macro_rules_BANG] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_u8] = ACTIONS(2531), - [anon_sym_i8] = ACTIONS(2531), - [anon_sym_u16] = ACTIONS(2531), - [anon_sym_i16] = ACTIONS(2531), - [anon_sym_u32] = ACTIONS(2531), - [anon_sym_i32] = ACTIONS(2531), - [anon_sym_u64] = ACTIONS(2531), - [anon_sym_i64] = ACTIONS(2531), - [anon_sym_u128] = ACTIONS(2531), - [anon_sym_i128] = ACTIONS(2531), - [anon_sym_isize] = ACTIONS(2531), - [anon_sym_usize] = ACTIONS(2531), - [anon_sym_f32] = ACTIONS(2531), - [anon_sym_f64] = ACTIONS(2531), - [anon_sym_bool] = ACTIONS(2531), - [anon_sym_str] = ACTIONS(2531), - [anon_sym_char] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_PIPE] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2529), - [anon_sym_COLON_COLON] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2531), - [anon_sym_async] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_fn] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_gen] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_impl] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_loop] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_mod] = ACTIONS(2531), - [anon_sym_pub] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_trait] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_unsafe] = ACTIONS(2531), - [anon_sym_use] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_raw] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_move] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [sym_integer_literal] = ACTIONS(2529), - [aux_sym_string_literal_token1] = ACTIONS(2529), - [sym_char_literal] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2531), - [anon_sym_false] = ACTIONS(2531), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2531), - [sym_super] = ACTIONS(2531), - [sym_crate] = ACTIONS(2531), - [sym_metavariable] = ACTIONS(2529), - [sym__raw_string_literal_start] = ACTIONS(2529), - [sym_float_literal] = ACTIONS(2529), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(644)] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2533), - [sym_identifier] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_macro_rules_BANG] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_u8] = ACTIONS(2535), - [anon_sym_i8] = ACTIONS(2535), - [anon_sym_u16] = ACTIONS(2535), - [anon_sym_i16] = ACTIONS(2535), - [anon_sym_u32] = ACTIONS(2535), - [anon_sym_i32] = ACTIONS(2535), - [anon_sym_u64] = ACTIONS(2535), - [anon_sym_i64] = ACTIONS(2535), - [anon_sym_u128] = ACTIONS(2535), - [anon_sym_i128] = ACTIONS(2535), - [anon_sym_isize] = ACTIONS(2535), - [anon_sym_usize] = ACTIONS(2535), - [anon_sym_f32] = ACTIONS(2535), - [anon_sym_f64] = ACTIONS(2535), - [anon_sym_bool] = ACTIONS(2535), - [anon_sym_str] = ACTIONS(2535), - [anon_sym_char] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_DOT_DOT] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2535), - [anon_sym_async] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_fn] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_gen] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_impl] = ACTIONS(2535), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_loop] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_mod] = ACTIONS(2535), - [anon_sym_pub] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_trait] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_unsafe] = ACTIONS(2535), - [anon_sym_use] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_raw] = ACTIONS(2535), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_move] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [sym_integer_literal] = ACTIONS(2533), - [aux_sym_string_literal_token1] = ACTIONS(2533), - [sym_char_literal] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2535), - [sym_super] = ACTIONS(2535), - [sym_crate] = ACTIONS(2535), - [sym_metavariable] = ACTIONS(2533), - [sym__raw_string_literal_start] = ACTIONS(2533), - [sym_float_literal] = ACTIONS(2533), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(645)] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_macro_rules_BANG] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_u8] = ACTIONS(2539), - [anon_sym_i8] = ACTIONS(2539), - [anon_sym_u16] = ACTIONS(2539), - [anon_sym_i16] = ACTIONS(2539), - [anon_sym_u32] = ACTIONS(2539), - [anon_sym_i32] = ACTIONS(2539), - [anon_sym_u64] = ACTIONS(2539), - [anon_sym_i64] = ACTIONS(2539), - [anon_sym_u128] = ACTIONS(2539), - [anon_sym_i128] = ACTIONS(2539), - [anon_sym_isize] = ACTIONS(2539), - [anon_sym_usize] = ACTIONS(2539), - [anon_sym_f32] = ACTIONS(2539), - [anon_sym_f64] = ACTIONS(2539), - [anon_sym_bool] = ACTIONS(2539), - [anon_sym_str] = ACTIONS(2539), - [anon_sym_char] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_DOT_DOT] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2539), - [anon_sym_async] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_fn] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_gen] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_impl] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_loop] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_mod] = ACTIONS(2539), - [anon_sym_pub] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_trait] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_unsafe] = ACTIONS(2539), - [anon_sym_use] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym_raw] = ACTIONS(2539), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_move] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [sym_integer_literal] = ACTIONS(2537), - [aux_sym_string_literal_token1] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2539), - [anon_sym_false] = ACTIONS(2539), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2539), - [sym_super] = ACTIONS(2539), - [sym_crate] = ACTIONS(2539), - [sym_metavariable] = ACTIONS(2537), - [sym__raw_string_literal_start] = ACTIONS(2537), - [sym_float_literal] = ACTIONS(2537), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_identifier] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_macro_rules_BANG] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_STAR] = 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_DASH] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_DOT_DOT] = ACTIONS(2541), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_fn] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_gen] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_impl] = ACTIONS(2543), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_loop] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_mod] = ACTIONS(2543), - [anon_sym_pub] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_trait] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_unsafe] = ACTIONS(2543), - [anon_sym_use] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym_raw] = ACTIONS(2543), - [anon_sym_yield] = ACTIONS(2543), - [anon_sym_move] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [sym_integer_literal] = ACTIONS(2541), - [aux_sym_string_literal_token1] = ACTIONS(2541), - [sym_char_literal] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2543), - [anon_sym_false] = ACTIONS(2543), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2543), - [sym_super] = ACTIONS(2543), - [sym_crate] = ACTIONS(2543), - [sym_metavariable] = ACTIONS(2541), - [sym__raw_string_literal_start] = ACTIONS(2541), - [sym_float_literal] = ACTIONS(2541), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym_macro_rules_BANG] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_u8] = ACTIONS(2547), - [anon_sym_i8] = ACTIONS(2547), - [anon_sym_u16] = ACTIONS(2547), - [anon_sym_i16] = ACTIONS(2547), - [anon_sym_u32] = ACTIONS(2547), - [anon_sym_i32] = ACTIONS(2547), - [anon_sym_u64] = ACTIONS(2547), - [anon_sym_i64] = ACTIONS(2547), - [anon_sym_u128] = ACTIONS(2547), - [anon_sym_i128] = ACTIONS(2547), - [anon_sym_isize] = ACTIONS(2547), - [anon_sym_usize] = ACTIONS(2547), - [anon_sym_f32] = ACTIONS(2547), - [anon_sym_f64] = ACTIONS(2547), - [anon_sym_bool] = ACTIONS(2547), - [anon_sym_str] = ACTIONS(2547), - [anon_sym_char] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_async] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_gen] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_impl] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_mod] = ACTIONS(2547), - [anon_sym_pub] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_trait] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_raw] = ACTIONS(2547), - [anon_sym_yield] = ACTIONS(2547), - [anon_sym_move] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [sym_integer_literal] = ACTIONS(2545), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2547), - [sym_super] = ACTIONS(2547), - [sym_crate] = ACTIONS(2547), - [sym_metavariable] = ACTIONS(2545), - [sym__raw_string_literal_start] = ACTIONS(2545), - [sym_float_literal] = ACTIONS(2545), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_macro_rules_BANG] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_u8] = ACTIONS(2551), - [anon_sym_i8] = ACTIONS(2551), - [anon_sym_u16] = ACTIONS(2551), - [anon_sym_i16] = ACTIONS(2551), - [anon_sym_u32] = ACTIONS(2551), - [anon_sym_i32] = ACTIONS(2551), - [anon_sym_u64] = ACTIONS(2551), - [anon_sym_i64] = ACTIONS(2551), - [anon_sym_u128] = ACTIONS(2551), - [anon_sym_i128] = ACTIONS(2551), - [anon_sym_isize] = ACTIONS(2551), - [anon_sym_usize] = ACTIONS(2551), - [anon_sym_f32] = ACTIONS(2551), - [anon_sym_f64] = ACTIONS(2551), - [anon_sym_bool] = ACTIONS(2551), - [anon_sym_str] = ACTIONS(2551), - [anon_sym_char] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_DOT_DOT] = ACTIONS(2549), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_async] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_fn] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_gen] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_impl] = ACTIONS(2551), - [anon_sym_let] = ACTIONS(2551), - [anon_sym_loop] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_mod] = ACTIONS(2551), - [anon_sym_pub] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_trait] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_unsafe] = ACTIONS(2551), - [anon_sym_use] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym_raw] = ACTIONS(2551), - [anon_sym_yield] = ACTIONS(2551), - [anon_sym_move] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [sym_integer_literal] = ACTIONS(2549), - [aux_sym_string_literal_token1] = ACTIONS(2549), - [sym_char_literal] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2551), - [sym_super] = ACTIONS(2551), - [sym_crate] = ACTIONS(2551), - [sym_metavariable] = ACTIONS(2549), - [sym__raw_string_literal_start] = ACTIONS(2549), - [sym_float_literal] = ACTIONS(2549), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_macro_rules_BANG] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_u8] = ACTIONS(2555), - [anon_sym_i8] = ACTIONS(2555), - [anon_sym_u16] = ACTIONS(2555), - [anon_sym_i16] = ACTIONS(2555), - [anon_sym_u32] = ACTIONS(2555), - [anon_sym_i32] = ACTIONS(2555), - [anon_sym_u64] = ACTIONS(2555), - [anon_sym_i64] = ACTIONS(2555), - [anon_sym_u128] = ACTIONS(2555), - [anon_sym_i128] = ACTIONS(2555), - [anon_sym_isize] = ACTIONS(2555), - [anon_sym_usize] = ACTIONS(2555), - [anon_sym_f32] = ACTIONS(2555), - [anon_sym_f64] = ACTIONS(2555), - [anon_sym_bool] = ACTIONS(2555), - [anon_sym_str] = ACTIONS(2555), - [anon_sym_char] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2553), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_DOT_DOT] = ACTIONS(2553), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_fn] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_gen] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_impl] = ACTIONS(2555), - [anon_sym_let] = ACTIONS(2555), - [anon_sym_loop] = ACTIONS(2555), - [anon_sym_match] = ACTIONS(2555), - [anon_sym_mod] = ACTIONS(2555), - [anon_sym_pub] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_trait] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_unsafe] = ACTIONS(2555), - [anon_sym_use] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym_raw] = ACTIONS(2555), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_move] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [sym_integer_literal] = ACTIONS(2553), - [aux_sym_string_literal_token1] = ACTIONS(2553), - [sym_char_literal] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2555), - [anon_sym_false] = ACTIONS(2555), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2555), - [sym_super] = ACTIONS(2555), - [sym_crate] = ACTIONS(2555), - [sym_metavariable] = ACTIONS(2553), - [sym__raw_string_literal_start] = ACTIONS(2553), - [sym_float_literal] = ACTIONS(2553), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_macro_rules_BANG] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_u8] = ACTIONS(2559), - [anon_sym_i8] = ACTIONS(2559), - [anon_sym_u16] = ACTIONS(2559), - [anon_sym_i16] = ACTIONS(2559), - [anon_sym_u32] = ACTIONS(2559), - [anon_sym_i32] = ACTIONS(2559), - [anon_sym_u64] = ACTIONS(2559), - [anon_sym_i64] = ACTIONS(2559), - [anon_sym_u128] = ACTIONS(2559), - [anon_sym_i128] = ACTIONS(2559), - [anon_sym_isize] = ACTIONS(2559), - [anon_sym_usize] = ACTIONS(2559), - [anon_sym_f32] = ACTIONS(2559), - [anon_sym_f64] = ACTIONS(2559), - [anon_sym_bool] = ACTIONS(2559), - [anon_sym_str] = ACTIONS(2559), - [anon_sym_char] = ACTIONS(2559), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_DOT_DOT] = ACTIONS(2557), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_async] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_fn] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_gen] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_impl] = ACTIONS(2559), - [anon_sym_let] = ACTIONS(2559), - [anon_sym_loop] = ACTIONS(2559), - [anon_sym_match] = ACTIONS(2559), - [anon_sym_mod] = ACTIONS(2559), - [anon_sym_pub] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_trait] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_unsafe] = ACTIONS(2559), - [anon_sym_use] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym_raw] = ACTIONS(2559), - [anon_sym_yield] = ACTIONS(2559), - [anon_sym_move] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [sym_integer_literal] = ACTIONS(2557), - [aux_sym_string_literal_token1] = ACTIONS(2557), - [sym_char_literal] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2559), - [anon_sym_false] = ACTIONS(2559), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2559), - [sym_super] = ACTIONS(2559), - [sym_crate] = ACTIONS(2559), - [sym_metavariable] = ACTIONS(2557), - [sym__raw_string_literal_start] = ACTIONS(2557), - [sym_float_literal] = ACTIONS(2557), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_become] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_gen] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_raw] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_move] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym__raw_string_literal_start] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), }, [STATE(651)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3293), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_macro_rules_BANG] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_u8] = ACTIONS(2563), - [anon_sym_i8] = ACTIONS(2563), - [anon_sym_u16] = ACTIONS(2563), - [anon_sym_i16] = ACTIONS(2563), - [anon_sym_u32] = ACTIONS(2563), - [anon_sym_i32] = ACTIONS(2563), - [anon_sym_u64] = ACTIONS(2563), - [anon_sym_i64] = ACTIONS(2563), - [anon_sym_u128] = ACTIONS(2563), - [anon_sym_i128] = ACTIONS(2563), - [anon_sym_isize] = ACTIONS(2563), - [anon_sym_usize] = ACTIONS(2563), - [anon_sym_f32] = ACTIONS(2563), - [anon_sym_f64] = ACTIONS(2563), - [anon_sym_bool] = ACTIONS(2563), - [anon_sym_str] = ACTIONS(2563), - [anon_sym_char] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_DOT_DOT] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_fn] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_gen] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_impl] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_loop] = ACTIONS(2563), - [anon_sym_match] = ACTIONS(2563), - [anon_sym_mod] = ACTIONS(2563), - [anon_sym_pub] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_trait] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_unsafe] = ACTIONS(2563), - [anon_sym_use] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym_raw] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_move] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [sym_integer_literal] = ACTIONS(2561), - [aux_sym_string_literal_token1] = ACTIONS(2561), - [sym_char_literal] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2563), - [anon_sym_false] = ACTIONS(2563), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_crate] = ACTIONS(2563), - [sym_metavariable] = ACTIONS(2561), - [sym__raw_string_literal_start] = ACTIONS(2561), - [sym_float_literal] = ACTIONS(2561), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(652)] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_identifier] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_macro_rules_BANG] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_u8] = ACTIONS(2567), - [anon_sym_i8] = ACTIONS(2567), - [anon_sym_u16] = ACTIONS(2567), - [anon_sym_i16] = ACTIONS(2567), - [anon_sym_u32] = ACTIONS(2567), - [anon_sym_i32] = ACTIONS(2567), - [anon_sym_u64] = ACTIONS(2567), - [anon_sym_i64] = ACTIONS(2567), - [anon_sym_u128] = ACTIONS(2567), - [anon_sym_i128] = ACTIONS(2567), - [anon_sym_isize] = ACTIONS(2567), - [anon_sym_usize] = ACTIONS(2567), - [anon_sym_f32] = ACTIONS(2567), - [anon_sym_f64] = ACTIONS(2567), - [anon_sym_bool] = ACTIONS(2567), - [anon_sym_str] = ACTIONS(2567), - [anon_sym_char] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_DOT_DOT] = ACTIONS(2565), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_async] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_gen] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_loop] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_mod] = ACTIONS(2567), - [anon_sym_pub] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_trait] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_unsafe] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym_raw] = ACTIONS(2567), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_move] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [sym_integer_literal] = ACTIONS(2565), - [aux_sym_string_literal_token1] = ACTIONS(2565), - [sym_char_literal] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2567), - [sym_super] = ACTIONS(2567), - [sym_crate] = ACTIONS(2567), - [sym_metavariable] = ACTIONS(2565), - [sym__raw_string_literal_start] = ACTIONS(2565), - [sym_float_literal] = ACTIONS(2565), + [ts_builtin_sym_end] = ACTIONS(2440), + [sym_identifier] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2440), + [anon_sym_macro_rules_BANG] = ACTIONS(2440), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_LBRACK] = ACTIONS(2440), + [anon_sym_LBRACE] = ACTIONS(2440), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_STAR] = ACTIONS(2440), + [anon_sym_u8] = ACTIONS(2442), + [anon_sym_i8] = ACTIONS(2442), + [anon_sym_u16] = ACTIONS(2442), + [anon_sym_i16] = ACTIONS(2442), + [anon_sym_u32] = ACTIONS(2442), + [anon_sym_i32] = ACTIONS(2442), + [anon_sym_u64] = ACTIONS(2442), + [anon_sym_i64] = ACTIONS(2442), + [anon_sym_u128] = ACTIONS(2442), + [anon_sym_i128] = ACTIONS(2442), + [anon_sym_isize] = ACTIONS(2442), + [anon_sym_usize] = ACTIONS(2442), + [anon_sym_f32] = ACTIONS(2442), + [anon_sym_f64] = ACTIONS(2442), + [anon_sym_bool] = ACTIONS(2442), + [anon_sym_str] = ACTIONS(2442), + [anon_sym_char] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2440), + [anon_sym_BANG] = ACTIONS(2440), + [anon_sym_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2440), + [anon_sym_LT] = ACTIONS(2440), + [anon_sym_DOT_DOT] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(2440), + [anon_sym_POUND] = ACTIONS(2440), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_become] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [anon_sym_fn] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_gen] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_impl] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_mod] = ACTIONS(2442), + [anon_sym_pub] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_static] = ACTIONS(2442), + [anon_sym_struct] = ACTIONS(2442), + [anon_sym_trait] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_union] = ACTIONS(2442), + [anon_sym_unsafe] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_raw] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_move] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [sym_integer_literal] = ACTIONS(2440), + [aux_sym_string_literal_token1] = ACTIONS(2440), + [sym_char_literal] = ACTIONS(2440), + [anon_sym_true] = ACTIONS(2442), + [anon_sym_false] = ACTIONS(2442), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_crate] = ACTIONS(2442), + [sym_metavariable] = ACTIONS(2440), + [sym__raw_string_literal_start] = ACTIONS(2440), + [sym_float_literal] = ACTIONS(2440), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_macro_rules_BANG] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_u8] = ACTIONS(2571), - [anon_sym_i8] = ACTIONS(2571), - [anon_sym_u16] = ACTIONS(2571), - [anon_sym_i16] = ACTIONS(2571), - [anon_sym_u32] = ACTIONS(2571), - [anon_sym_i32] = ACTIONS(2571), - [anon_sym_u64] = ACTIONS(2571), - [anon_sym_i64] = ACTIONS(2571), - [anon_sym_u128] = ACTIONS(2571), - [anon_sym_i128] = ACTIONS(2571), - [anon_sym_isize] = ACTIONS(2571), - [anon_sym_usize] = ACTIONS(2571), - [anon_sym_f32] = ACTIONS(2571), - [anon_sym_f64] = ACTIONS(2571), - [anon_sym_bool] = ACTIONS(2571), - [anon_sym_str] = ACTIONS(2571), - [anon_sym_char] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_DOT_DOT] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_async] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_fn] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_gen] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_impl] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_loop] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_mod] = ACTIONS(2571), - [anon_sym_pub] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_trait] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_unsafe] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym_raw] = ACTIONS(2571), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_move] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [sym_integer_literal] = ACTIONS(2569), - [aux_sym_string_literal_token1] = ACTIONS(2569), - [sym_char_literal] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2571), - [anon_sym_false] = ACTIONS(2571), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2571), - [sym_super] = ACTIONS(2571), - [sym_crate] = ACTIONS(2571), - [sym_metavariable] = ACTIONS(2569), - [sym__raw_string_literal_start] = ACTIONS(2569), - [sym_float_literal] = ACTIONS(2569), + [ts_builtin_sym_end] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2446), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_macro_rules_BANG] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_u8] = ACTIONS(2446), + [anon_sym_i8] = ACTIONS(2446), + [anon_sym_u16] = ACTIONS(2446), + [anon_sym_i16] = ACTIONS(2446), + [anon_sym_u32] = ACTIONS(2446), + [anon_sym_i32] = ACTIONS(2446), + [anon_sym_u64] = ACTIONS(2446), + [anon_sym_i64] = ACTIONS(2446), + [anon_sym_u128] = ACTIONS(2446), + [anon_sym_i128] = ACTIONS(2446), + [anon_sym_isize] = ACTIONS(2446), + [anon_sym_usize] = ACTIONS(2446), + [anon_sym_f32] = ACTIONS(2446), + [anon_sym_f64] = ACTIONS(2446), + [anon_sym_bool] = ACTIONS(2446), + [anon_sym_str] = ACTIONS(2446), + [anon_sym_char] = ACTIONS(2446), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_DOT_DOT] = ACTIONS(2444), + [anon_sym_COLON_COLON] = ACTIONS(2444), + [anon_sym_POUND] = ACTIONS(2444), + [anon_sym_SQUOTE] = ACTIONS(2446), + [anon_sym_async] = ACTIONS(2446), + [anon_sym_become] = ACTIONS(2446), + [anon_sym_break] = ACTIONS(2446), + [anon_sym_const] = ACTIONS(2446), + [anon_sym_continue] = ACTIONS(2446), + [anon_sym_default] = ACTIONS(2446), + [anon_sym_enum] = ACTIONS(2446), + [anon_sym_fn] = ACTIONS(2446), + [anon_sym_for] = ACTIONS(2446), + [anon_sym_gen] = ACTIONS(2446), + [anon_sym_if] = ACTIONS(2446), + [anon_sym_impl] = ACTIONS(2446), + [anon_sym_let] = ACTIONS(2446), + [anon_sym_loop] = ACTIONS(2446), + [anon_sym_match] = ACTIONS(2446), + [anon_sym_mod] = ACTIONS(2446), + [anon_sym_pub] = ACTIONS(2446), + [anon_sym_return] = ACTIONS(2446), + [anon_sym_static] = ACTIONS(2446), + [anon_sym_struct] = ACTIONS(2446), + [anon_sym_trait] = ACTIONS(2446), + [anon_sym_type] = ACTIONS(2446), + [anon_sym_union] = ACTIONS(2446), + [anon_sym_unsafe] = ACTIONS(2446), + [anon_sym_use] = ACTIONS(2446), + [anon_sym_while] = ACTIONS(2446), + [anon_sym_extern] = ACTIONS(2446), + [anon_sym_raw] = ACTIONS(2446), + [anon_sym_yield] = ACTIONS(2446), + [anon_sym_move] = ACTIONS(2446), + [anon_sym_try] = ACTIONS(2446), + [sym_integer_literal] = ACTIONS(2444), + [aux_sym_string_literal_token1] = ACTIONS(2444), + [sym_char_literal] = ACTIONS(2444), + [anon_sym_true] = ACTIONS(2446), + [anon_sym_false] = ACTIONS(2446), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2446), + [sym_super] = ACTIONS(2446), + [sym_crate] = ACTIONS(2446), + [sym_metavariable] = ACTIONS(2444), + [sym__raw_string_literal_start] = ACTIONS(2444), + [sym_float_literal] = ACTIONS(2444), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_macro_rules_BANG] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_u8] = ACTIONS(2575), - [anon_sym_i8] = ACTIONS(2575), - [anon_sym_u16] = ACTIONS(2575), - [anon_sym_i16] = ACTIONS(2575), - [anon_sym_u32] = ACTIONS(2575), - [anon_sym_i32] = ACTIONS(2575), - [anon_sym_u64] = ACTIONS(2575), - [anon_sym_i64] = ACTIONS(2575), - [anon_sym_u128] = ACTIONS(2575), - [anon_sym_i128] = ACTIONS(2575), - [anon_sym_isize] = ACTIONS(2575), - [anon_sym_usize] = ACTIONS(2575), - [anon_sym_f32] = ACTIONS(2575), - [anon_sym_f64] = ACTIONS(2575), - [anon_sym_bool] = ACTIONS(2575), - [anon_sym_str] = ACTIONS(2575), - [anon_sym_char] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_DOT_DOT] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_async] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_enum] = ACTIONS(2575), - [anon_sym_fn] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_gen] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_impl] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_loop] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_mod] = ACTIONS(2575), - [anon_sym_pub] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_struct] = ACTIONS(2575), - [anon_sym_trait] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_union] = ACTIONS(2575), - [anon_sym_unsafe] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_extern] = ACTIONS(2575), - [anon_sym_raw] = ACTIONS(2575), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_move] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [sym_integer_literal] = ACTIONS(2573), - [aux_sym_string_literal_token1] = ACTIONS(2573), - [sym_char_literal] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2575), - [anon_sym_false] = ACTIONS(2575), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2575), - [sym_super] = ACTIONS(2575), - [sym_crate] = ACTIONS(2575), - [sym_metavariable] = ACTIONS(2573), - [sym__raw_string_literal_start] = ACTIONS(2573), - [sym_float_literal] = ACTIONS(2573), + [ts_builtin_sym_end] = ACTIONS(2448), + [sym_identifier] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2448), + [anon_sym_macro_rules_BANG] = ACTIONS(2448), + [anon_sym_LPAREN] = ACTIONS(2448), + [anon_sym_LBRACK] = ACTIONS(2448), + [anon_sym_LBRACE] = ACTIONS(2448), + [anon_sym_RBRACE] = ACTIONS(2448), + [anon_sym_STAR] = ACTIONS(2448), + [anon_sym_u8] = ACTIONS(2450), + [anon_sym_i8] = ACTIONS(2450), + [anon_sym_u16] = ACTIONS(2450), + [anon_sym_i16] = ACTIONS(2450), + [anon_sym_u32] = ACTIONS(2450), + [anon_sym_i32] = ACTIONS(2450), + [anon_sym_u64] = ACTIONS(2450), + [anon_sym_i64] = ACTIONS(2450), + [anon_sym_u128] = ACTIONS(2450), + [anon_sym_i128] = ACTIONS(2450), + [anon_sym_isize] = ACTIONS(2450), + [anon_sym_usize] = ACTIONS(2450), + [anon_sym_f32] = ACTIONS(2450), + [anon_sym_f64] = ACTIONS(2450), + [anon_sym_bool] = ACTIONS(2450), + [anon_sym_str] = ACTIONS(2450), + [anon_sym_char] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2448), + [anon_sym_BANG] = ACTIONS(2448), + [anon_sym_AMP] = ACTIONS(2448), + [anon_sym_PIPE] = ACTIONS(2448), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_DOT_DOT] = ACTIONS(2448), + [anon_sym_COLON_COLON] = ACTIONS(2448), + [anon_sym_POUND] = ACTIONS(2448), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_become] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [anon_sym_fn] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_gen] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_impl] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_mod] = ACTIONS(2450), + [anon_sym_pub] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2450), + [anon_sym_struct] = ACTIONS(2450), + [anon_sym_trait] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_union] = ACTIONS(2450), + [anon_sym_unsafe] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_raw] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_move] = ACTIONS(2450), + [anon_sym_try] = ACTIONS(2450), + [sym_integer_literal] = ACTIONS(2448), + [aux_sym_string_literal_token1] = ACTIONS(2448), + [sym_char_literal] = ACTIONS(2448), + [anon_sym_true] = ACTIONS(2450), + [anon_sym_false] = ACTIONS(2450), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2450), + [sym_super] = ACTIONS(2450), + [sym_crate] = ACTIONS(2450), + [sym_metavariable] = ACTIONS(2448), + [sym__raw_string_literal_start] = ACTIONS(2448), + [sym_float_literal] = ACTIONS(2448), }, [STATE(655)] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2577), - [anon_sym_macro_rules_BANG] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2577), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_u8] = ACTIONS(2579), - [anon_sym_i8] = ACTIONS(2579), - [anon_sym_u16] = ACTIONS(2579), - [anon_sym_i16] = ACTIONS(2579), - [anon_sym_u32] = ACTIONS(2579), - [anon_sym_i32] = ACTIONS(2579), - [anon_sym_u64] = ACTIONS(2579), - [anon_sym_i64] = ACTIONS(2579), - [anon_sym_u128] = ACTIONS(2579), - [anon_sym_i128] = ACTIONS(2579), - [anon_sym_isize] = ACTIONS(2579), - [anon_sym_usize] = ACTIONS(2579), - [anon_sym_f32] = ACTIONS(2579), - [anon_sym_f64] = ACTIONS(2579), - [anon_sym_bool] = ACTIONS(2579), - [anon_sym_str] = ACTIONS(2579), - [anon_sym_char] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_async] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_const] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2579), - [anon_sym_fn] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_gen] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_impl] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_loop] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_mod] = ACTIONS(2579), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2579), - [anon_sym_struct] = ACTIONS(2579), - [anon_sym_trait] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_union] = ACTIONS(2579), - [anon_sym_unsafe] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_extern] = ACTIONS(2579), - [anon_sym_raw] = ACTIONS(2579), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_move] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [sym_integer_literal] = ACTIONS(2577), - [aux_sym_string_literal_token1] = ACTIONS(2577), - [sym_char_literal] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2579), - [sym_super] = ACTIONS(2579), - [sym_crate] = ACTIONS(2579), - [sym_metavariable] = ACTIONS(2577), - [sym__raw_string_literal_start] = ACTIONS(2577), - [sym_float_literal] = ACTIONS(2577), + [ts_builtin_sym_end] = ACTIONS(2452), + [sym_identifier] = ACTIONS(2454), + [anon_sym_SEMI] = ACTIONS(2452), + [anon_sym_macro_rules_BANG] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_u8] = ACTIONS(2454), + [anon_sym_i8] = ACTIONS(2454), + [anon_sym_u16] = ACTIONS(2454), + [anon_sym_i16] = ACTIONS(2454), + [anon_sym_u32] = ACTIONS(2454), + [anon_sym_i32] = ACTIONS(2454), + [anon_sym_u64] = ACTIONS(2454), + [anon_sym_i64] = ACTIONS(2454), + [anon_sym_u128] = ACTIONS(2454), + [anon_sym_i128] = ACTIONS(2454), + [anon_sym_isize] = ACTIONS(2454), + [anon_sym_usize] = ACTIONS(2454), + [anon_sym_f32] = ACTIONS(2454), + [anon_sym_f64] = ACTIONS(2454), + [anon_sym_bool] = ACTIONS(2454), + [anon_sym_str] = ACTIONS(2454), + [anon_sym_char] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_AMP] = ACTIONS(2452), + [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_DOT_DOT] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(2452), + [anon_sym_POUND] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_become] = ACTIONS(2454), + [anon_sym_break] = ACTIONS(2454), + [anon_sym_const] = ACTIONS(2454), + [anon_sym_continue] = ACTIONS(2454), + [anon_sym_default] = ACTIONS(2454), + [anon_sym_enum] = ACTIONS(2454), + [anon_sym_fn] = ACTIONS(2454), + [anon_sym_for] = ACTIONS(2454), + [anon_sym_gen] = ACTIONS(2454), + [anon_sym_if] = ACTIONS(2454), + [anon_sym_impl] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_loop] = ACTIONS(2454), + [anon_sym_match] = ACTIONS(2454), + [anon_sym_mod] = ACTIONS(2454), + [anon_sym_pub] = ACTIONS(2454), + [anon_sym_return] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_struct] = ACTIONS(2454), + [anon_sym_trait] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_union] = ACTIONS(2454), + [anon_sym_unsafe] = ACTIONS(2454), + [anon_sym_use] = ACTIONS(2454), + [anon_sym_while] = ACTIONS(2454), + [anon_sym_extern] = ACTIONS(2454), + [anon_sym_raw] = ACTIONS(2454), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_move] = ACTIONS(2454), + [anon_sym_try] = ACTIONS(2454), + [sym_integer_literal] = ACTIONS(2452), + [aux_sym_string_literal_token1] = ACTIONS(2452), + [sym_char_literal] = ACTIONS(2452), + [anon_sym_true] = ACTIONS(2454), + [anon_sym_false] = ACTIONS(2454), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_crate] = ACTIONS(2454), + [sym_metavariable] = ACTIONS(2452), + [sym__raw_string_literal_start] = ACTIONS(2452), + [sym_float_literal] = ACTIONS(2452), }, [STATE(656)] = { [sym_line_comment] = STATE(656), [sym_block_comment] = STATE(656), - [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_STAR] = 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(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_SQUOTE] = 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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2456), + [sym_identifier] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_macro_rules_BANG] = ACTIONS(2456), + [anon_sym_LPAREN] = ACTIONS(2456), + [anon_sym_LBRACK] = ACTIONS(2456), + [anon_sym_LBRACE] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2456), + [anon_sym_STAR] = ACTIONS(2456), + [anon_sym_u8] = ACTIONS(2458), + [anon_sym_i8] = ACTIONS(2458), + [anon_sym_u16] = ACTIONS(2458), + [anon_sym_i16] = ACTIONS(2458), + [anon_sym_u32] = ACTIONS(2458), + [anon_sym_i32] = ACTIONS(2458), + [anon_sym_u64] = ACTIONS(2458), + [anon_sym_i64] = ACTIONS(2458), + [anon_sym_u128] = ACTIONS(2458), + [anon_sym_i128] = ACTIONS(2458), + [anon_sym_isize] = ACTIONS(2458), + [anon_sym_usize] = ACTIONS(2458), + [anon_sym_f32] = ACTIONS(2458), + [anon_sym_f64] = ACTIONS(2458), + [anon_sym_bool] = ACTIONS(2458), + [anon_sym_str] = ACTIONS(2458), + [anon_sym_char] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2456), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_DOT_DOT] = ACTIONS(2456), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2456), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_become] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [anon_sym_fn] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_gen] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_impl] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_loop] = ACTIONS(2458), + [anon_sym_match] = ACTIONS(2458), + [anon_sym_mod] = ACTIONS(2458), + [anon_sym_pub] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_struct] = ACTIONS(2458), + [anon_sym_trait] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_union] = ACTIONS(2458), + [anon_sym_unsafe] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym_raw] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_move] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [sym_integer_literal] = ACTIONS(2456), + [aux_sym_string_literal_token1] = ACTIONS(2456), + [sym_char_literal] = ACTIONS(2456), + [anon_sym_true] = ACTIONS(2458), + [anon_sym_false] = ACTIONS(2458), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_crate] = ACTIONS(2458), + [sym_metavariable] = ACTIONS(2456), + [sym__raw_string_literal_start] = ACTIONS(2456), + [sym_float_literal] = ACTIONS(2456), }, [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2583), - [anon_sym_SEMI] = ACTIONS(2581), - [anon_sym_macro_rules_BANG] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_u8] = ACTIONS(2583), - [anon_sym_i8] = ACTIONS(2583), - [anon_sym_u16] = ACTIONS(2583), - [anon_sym_i16] = ACTIONS(2583), - [anon_sym_u32] = ACTIONS(2583), - [anon_sym_i32] = ACTIONS(2583), - [anon_sym_u64] = ACTIONS(2583), - [anon_sym_i64] = ACTIONS(2583), - [anon_sym_u128] = ACTIONS(2583), - [anon_sym_i128] = ACTIONS(2583), - [anon_sym_isize] = ACTIONS(2583), - [anon_sym_usize] = ACTIONS(2583), - [anon_sym_f32] = ACTIONS(2583), - [anon_sym_f64] = ACTIONS(2583), - [anon_sym_bool] = ACTIONS(2583), - [anon_sym_str] = ACTIONS(2583), - [anon_sym_char] = ACTIONS(2583), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_BANG] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_PIPE] = ACTIONS(2581), - [anon_sym_LT] = ACTIONS(2581), - [anon_sym_DOT_DOT] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2581), - [anon_sym_SQUOTE] = ACTIONS(2583), - [anon_sym_async] = ACTIONS(2583), - [anon_sym_break] = ACTIONS(2583), - [anon_sym_const] = ACTIONS(2583), - [anon_sym_continue] = ACTIONS(2583), - [anon_sym_default] = ACTIONS(2583), - [anon_sym_enum] = ACTIONS(2583), - [anon_sym_fn] = ACTIONS(2583), - [anon_sym_for] = ACTIONS(2583), - [anon_sym_gen] = ACTIONS(2583), - [anon_sym_if] = ACTIONS(2583), - [anon_sym_impl] = ACTIONS(2583), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_loop] = ACTIONS(2583), - [anon_sym_match] = ACTIONS(2583), - [anon_sym_mod] = ACTIONS(2583), - [anon_sym_pub] = ACTIONS(2583), - [anon_sym_return] = ACTIONS(2583), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_struct] = ACTIONS(2583), - [anon_sym_trait] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_union] = ACTIONS(2583), - [anon_sym_unsafe] = ACTIONS(2583), - [anon_sym_use] = ACTIONS(2583), - [anon_sym_while] = ACTIONS(2583), - [anon_sym_extern] = ACTIONS(2583), - [anon_sym_raw] = ACTIONS(2583), - [anon_sym_yield] = ACTIONS(2583), - [anon_sym_move] = ACTIONS(2583), - [anon_sym_try] = ACTIONS(2583), - [sym_integer_literal] = ACTIONS(2581), - [aux_sym_string_literal_token1] = ACTIONS(2581), - [sym_char_literal] = ACTIONS(2581), - [anon_sym_true] = ACTIONS(2583), - [anon_sym_false] = ACTIONS(2583), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2583), - [sym_super] = ACTIONS(2583), - [sym_crate] = ACTIONS(2583), - [sym_metavariable] = ACTIONS(2581), - [sym__raw_string_literal_start] = ACTIONS(2581), - [sym_float_literal] = ACTIONS(2581), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1473), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_macro_rules_BANG] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_u8] = ACTIONS(1473), + [anon_sym_i8] = ACTIONS(1473), + [anon_sym_u16] = ACTIONS(1473), + [anon_sym_i16] = ACTIONS(1473), + [anon_sym_u32] = ACTIONS(1473), + [anon_sym_i32] = ACTIONS(1473), + [anon_sym_u64] = ACTIONS(1473), + [anon_sym_i64] = ACTIONS(1473), + [anon_sym_u128] = ACTIONS(1473), + [anon_sym_i128] = ACTIONS(1473), + [anon_sym_isize] = ACTIONS(1473), + [anon_sym_usize] = ACTIONS(1473), + [anon_sym_f32] = ACTIONS(1473), + [anon_sym_f64] = ACTIONS(1473), + [anon_sym_bool] = ACTIONS(1473), + [anon_sym_str] = ACTIONS(1473), + [anon_sym_char] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_COLON_COLON] = ACTIONS(1471), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_SQUOTE] = ACTIONS(1473), + [anon_sym_async] = ACTIONS(1473), + [anon_sym_become] = ACTIONS(1473), + [anon_sym_break] = ACTIONS(1473), + [anon_sym_const] = ACTIONS(1473), + [anon_sym_continue] = ACTIONS(1473), + [anon_sym_default] = ACTIONS(1473), + [anon_sym_enum] = ACTIONS(1473), + [anon_sym_fn] = ACTIONS(1473), + [anon_sym_for] = ACTIONS(1473), + [anon_sym_gen] = ACTIONS(1473), + [anon_sym_if] = ACTIONS(1473), + [anon_sym_impl] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), + [anon_sym_loop] = ACTIONS(1473), + [anon_sym_match] = ACTIONS(1473), + [anon_sym_mod] = ACTIONS(1473), + [anon_sym_pub] = ACTIONS(1473), + [anon_sym_return] = ACTIONS(1473), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_struct] = ACTIONS(1473), + [anon_sym_trait] = ACTIONS(1473), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_union] = ACTIONS(1473), + [anon_sym_unsafe] = ACTIONS(1473), + [anon_sym_use] = ACTIONS(1473), + [anon_sym_while] = ACTIONS(1473), + [anon_sym_extern] = ACTIONS(1473), + [anon_sym_raw] = ACTIONS(1473), + [anon_sym_yield] = ACTIONS(1473), + [anon_sym_move] = ACTIONS(1473), + [anon_sym_try] = ACTIONS(1473), + [sym_integer_literal] = ACTIONS(1471), + [aux_sym_string_literal_token1] = ACTIONS(1471), + [sym_char_literal] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1473), + [anon_sym_false] = ACTIONS(1473), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1473), + [sym_super] = ACTIONS(1473), + [sym_crate] = ACTIONS(1473), + [sym_metavariable] = ACTIONS(1471), + [sym__raw_string_literal_start] = ACTIONS(1471), + [sym_float_literal] = ACTIONS(1471), }, [STATE(658)] = { [sym_line_comment] = STATE(658), [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_macro_rules_BANG] = ACTIONS(2585), - [anon_sym_LPAREN] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_u8] = ACTIONS(2587), - [anon_sym_i8] = ACTIONS(2587), - [anon_sym_u16] = ACTIONS(2587), - [anon_sym_i16] = ACTIONS(2587), - [anon_sym_u32] = ACTIONS(2587), - [anon_sym_i32] = ACTIONS(2587), - [anon_sym_u64] = ACTIONS(2587), - [anon_sym_i64] = ACTIONS(2587), - [anon_sym_u128] = ACTIONS(2587), - [anon_sym_i128] = ACTIONS(2587), - [anon_sym_isize] = ACTIONS(2587), - [anon_sym_usize] = ACTIONS(2587), - [anon_sym_f32] = ACTIONS(2587), - [anon_sym_f64] = ACTIONS(2587), - [anon_sym_bool] = ACTIONS(2587), - [anon_sym_str] = ACTIONS(2587), - [anon_sym_char] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_PIPE] = ACTIONS(2585), - [anon_sym_LT] = ACTIONS(2585), - [anon_sym_DOT_DOT] = ACTIONS(2585), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_SQUOTE] = ACTIONS(2587), - [anon_sym_async] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_fn] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_gen] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_impl] = ACTIONS(2587), - [anon_sym_let] = ACTIONS(2587), - [anon_sym_loop] = ACTIONS(2587), - [anon_sym_match] = ACTIONS(2587), - [anon_sym_mod] = ACTIONS(2587), - [anon_sym_pub] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_trait] = ACTIONS(2587), - [anon_sym_type] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_unsafe] = ACTIONS(2587), - [anon_sym_use] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_raw] = ACTIONS(2587), - [anon_sym_yield] = ACTIONS(2587), - [anon_sym_move] = ACTIONS(2587), - [anon_sym_try] = ACTIONS(2587), - [sym_integer_literal] = ACTIONS(2585), - [aux_sym_string_literal_token1] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [anon_sym_true] = ACTIONS(2587), - [anon_sym_false] = ACTIONS(2587), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2587), - [sym_super] = ACTIONS(2587), - [sym_crate] = ACTIONS(2587), - [sym_metavariable] = ACTIONS(2585), - [sym__raw_string_literal_start] = ACTIONS(2585), - [sym_float_literal] = ACTIONS(2585), + [ts_builtin_sym_end] = ACTIONS(2460), + [sym_identifier] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_macro_rules_BANG] = ACTIONS(2460), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_LBRACK] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(2460), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_STAR] = ACTIONS(2460), + [anon_sym_u8] = ACTIONS(2462), + [anon_sym_i8] = ACTIONS(2462), + [anon_sym_u16] = ACTIONS(2462), + [anon_sym_i16] = ACTIONS(2462), + [anon_sym_u32] = ACTIONS(2462), + [anon_sym_i32] = ACTIONS(2462), + [anon_sym_u64] = ACTIONS(2462), + [anon_sym_i64] = ACTIONS(2462), + [anon_sym_u128] = ACTIONS(2462), + [anon_sym_i128] = ACTIONS(2462), + [anon_sym_isize] = ACTIONS(2462), + [anon_sym_usize] = ACTIONS(2462), + [anon_sym_f32] = ACTIONS(2462), + [anon_sym_f64] = ACTIONS(2462), + [anon_sym_bool] = ACTIONS(2462), + [anon_sym_str] = ACTIONS(2462), + [anon_sym_char] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2460), + [anon_sym_BANG] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_DOT_DOT] = ACTIONS(2460), + [anon_sym_COLON_COLON] = ACTIONS(2460), + [anon_sym_POUND] = ACTIONS(2460), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_become] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [anon_sym_fn] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_gen] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_impl] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_mod] = ACTIONS(2462), + [anon_sym_pub] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_struct] = ACTIONS(2462), + [anon_sym_trait] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_union] = ACTIONS(2462), + [anon_sym_unsafe] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_raw] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_move] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [sym_integer_literal] = ACTIONS(2460), + [aux_sym_string_literal_token1] = ACTIONS(2460), + [sym_char_literal] = ACTIONS(2460), + [anon_sym_true] = ACTIONS(2462), + [anon_sym_false] = ACTIONS(2462), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_crate] = ACTIONS(2462), + [sym_metavariable] = ACTIONS(2460), + [sym__raw_string_literal_start] = ACTIONS(2460), + [sym_float_literal] = ACTIONS(2460), }, [STATE(659)] = { [sym_line_comment] = STATE(659), [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2589), - [sym_identifier] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2589), - [anon_sym_macro_rules_BANG] = ACTIONS(2589), - [anon_sym_LPAREN] = ACTIONS(2589), - [anon_sym_LBRACK] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2589), - [anon_sym_RBRACE] = ACTIONS(2589), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_u8] = ACTIONS(2591), - [anon_sym_i8] = ACTIONS(2591), - [anon_sym_u16] = ACTIONS(2591), - [anon_sym_i16] = ACTIONS(2591), - [anon_sym_u32] = ACTIONS(2591), - [anon_sym_i32] = ACTIONS(2591), - [anon_sym_u64] = ACTIONS(2591), - [anon_sym_i64] = ACTIONS(2591), - [anon_sym_u128] = ACTIONS(2591), - [anon_sym_i128] = ACTIONS(2591), - [anon_sym_isize] = ACTIONS(2591), - [anon_sym_usize] = ACTIONS(2591), - [anon_sym_f32] = ACTIONS(2591), - [anon_sym_f64] = ACTIONS(2591), - [anon_sym_bool] = ACTIONS(2591), - [anon_sym_str] = ACTIONS(2591), - [anon_sym_char] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2589), - [anon_sym_BANG] = ACTIONS(2589), - [anon_sym_AMP] = ACTIONS(2589), - [anon_sym_PIPE] = ACTIONS(2589), - [anon_sym_LT] = ACTIONS(2589), - [anon_sym_DOT_DOT] = ACTIONS(2589), - [anon_sym_COLON_COLON] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2589), - [anon_sym_SQUOTE] = ACTIONS(2591), - [anon_sym_async] = ACTIONS(2591), - [anon_sym_break] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2591), - [anon_sym_continue] = ACTIONS(2591), - [anon_sym_default] = ACTIONS(2591), - [anon_sym_enum] = ACTIONS(2591), - [anon_sym_fn] = ACTIONS(2591), - [anon_sym_for] = ACTIONS(2591), - [anon_sym_gen] = ACTIONS(2591), - [anon_sym_if] = ACTIONS(2591), - [anon_sym_impl] = ACTIONS(2591), - [anon_sym_let] = ACTIONS(2591), - [anon_sym_loop] = ACTIONS(2591), - [anon_sym_match] = ACTIONS(2591), - [anon_sym_mod] = ACTIONS(2591), - [anon_sym_pub] = ACTIONS(2591), - [anon_sym_return] = ACTIONS(2591), - [anon_sym_static] = ACTIONS(2591), - [anon_sym_struct] = ACTIONS(2591), - [anon_sym_trait] = ACTIONS(2591), - [anon_sym_type] = ACTIONS(2591), - [anon_sym_union] = ACTIONS(2591), - [anon_sym_unsafe] = ACTIONS(2591), - [anon_sym_use] = ACTIONS(2591), - [anon_sym_while] = ACTIONS(2591), - [anon_sym_extern] = ACTIONS(2591), - [anon_sym_raw] = ACTIONS(2591), - [anon_sym_yield] = ACTIONS(2591), - [anon_sym_move] = ACTIONS(2591), - [anon_sym_try] = ACTIONS(2591), - [sym_integer_literal] = ACTIONS(2589), - [aux_sym_string_literal_token1] = ACTIONS(2589), - [sym_char_literal] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(2591), - [anon_sym_false] = ACTIONS(2591), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2591), - [sym_super] = ACTIONS(2591), - [sym_crate] = ACTIONS(2591), - [sym_metavariable] = ACTIONS(2589), - [sym__raw_string_literal_start] = ACTIONS(2589), - [sym_float_literal] = ACTIONS(2589), + [ts_builtin_sym_end] = ACTIONS(2464), + [sym_identifier] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_macro_rules_BANG] = ACTIONS(2464), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_LBRACK] = ACTIONS(2464), + [anon_sym_LBRACE] = ACTIONS(2464), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_STAR] = ACTIONS(2464), + [anon_sym_u8] = ACTIONS(2466), + [anon_sym_i8] = ACTIONS(2466), + [anon_sym_u16] = ACTIONS(2466), + [anon_sym_i16] = ACTIONS(2466), + [anon_sym_u32] = ACTIONS(2466), + [anon_sym_i32] = ACTIONS(2466), + [anon_sym_u64] = ACTIONS(2466), + [anon_sym_i64] = ACTIONS(2466), + [anon_sym_u128] = ACTIONS(2466), + [anon_sym_i128] = ACTIONS(2466), + [anon_sym_isize] = ACTIONS(2466), + [anon_sym_usize] = ACTIONS(2466), + [anon_sym_f32] = ACTIONS(2466), + [anon_sym_f64] = ACTIONS(2466), + [anon_sym_bool] = ACTIONS(2466), + [anon_sym_str] = ACTIONS(2466), + [anon_sym_char] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2464), + [anon_sym_BANG] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_DOT_DOT] = ACTIONS(2464), + [anon_sym_COLON_COLON] = ACTIONS(2464), + [anon_sym_POUND] = ACTIONS(2464), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_become] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [anon_sym_fn] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_gen] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_impl] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_mod] = ACTIONS(2466), + [anon_sym_pub] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_struct] = ACTIONS(2466), + [anon_sym_trait] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_union] = ACTIONS(2466), + [anon_sym_unsafe] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_raw] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_move] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [sym_integer_literal] = ACTIONS(2464), + [aux_sym_string_literal_token1] = ACTIONS(2464), + [sym_char_literal] = ACTIONS(2464), + [anon_sym_true] = ACTIONS(2466), + [anon_sym_false] = ACTIONS(2466), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_crate] = ACTIONS(2466), + [sym_metavariable] = ACTIONS(2464), + [sym__raw_string_literal_start] = ACTIONS(2464), + [sym_float_literal] = ACTIONS(2464), }, [STATE(660)] = { [sym_line_comment] = STATE(660), [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2593), - [sym_identifier] = ACTIONS(2595), - [anon_sym_SEMI] = ACTIONS(2593), - [anon_sym_macro_rules_BANG] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2593), - [anon_sym_LBRACK] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2593), - [anon_sym_RBRACE] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2593), - [anon_sym_u8] = ACTIONS(2595), - [anon_sym_i8] = ACTIONS(2595), - [anon_sym_u16] = ACTIONS(2595), - [anon_sym_i16] = ACTIONS(2595), - [anon_sym_u32] = ACTIONS(2595), - [anon_sym_i32] = ACTIONS(2595), - [anon_sym_u64] = ACTIONS(2595), - [anon_sym_i64] = ACTIONS(2595), - [anon_sym_u128] = ACTIONS(2595), - [anon_sym_i128] = ACTIONS(2595), - [anon_sym_isize] = ACTIONS(2595), - [anon_sym_usize] = ACTIONS(2595), - [anon_sym_f32] = ACTIONS(2595), - [anon_sym_f64] = ACTIONS(2595), - [anon_sym_bool] = ACTIONS(2595), - [anon_sym_str] = ACTIONS(2595), - [anon_sym_char] = ACTIONS(2595), - [anon_sym_DASH] = ACTIONS(2593), - [anon_sym_BANG] = ACTIONS(2593), - [anon_sym_AMP] = ACTIONS(2593), - [anon_sym_PIPE] = ACTIONS(2593), - [anon_sym_LT] = ACTIONS(2593), - [anon_sym_DOT_DOT] = ACTIONS(2593), - [anon_sym_COLON_COLON] = ACTIONS(2593), - [anon_sym_POUND] = ACTIONS(2593), - [anon_sym_SQUOTE] = ACTIONS(2595), - [anon_sym_async] = ACTIONS(2595), - [anon_sym_break] = ACTIONS(2595), - [anon_sym_const] = ACTIONS(2595), - [anon_sym_continue] = ACTIONS(2595), - [anon_sym_default] = ACTIONS(2595), - [anon_sym_enum] = ACTIONS(2595), - [anon_sym_fn] = ACTIONS(2595), - [anon_sym_for] = ACTIONS(2595), - [anon_sym_gen] = ACTIONS(2595), - [anon_sym_if] = ACTIONS(2595), - [anon_sym_impl] = ACTIONS(2595), - [anon_sym_let] = ACTIONS(2595), - [anon_sym_loop] = ACTIONS(2595), - [anon_sym_match] = ACTIONS(2595), - [anon_sym_mod] = ACTIONS(2595), - [anon_sym_pub] = ACTIONS(2595), - [anon_sym_return] = ACTIONS(2595), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_struct] = ACTIONS(2595), - [anon_sym_trait] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2595), - [anon_sym_union] = ACTIONS(2595), - [anon_sym_unsafe] = ACTIONS(2595), - [anon_sym_use] = ACTIONS(2595), - [anon_sym_while] = ACTIONS(2595), - [anon_sym_extern] = ACTIONS(2595), - [anon_sym_raw] = ACTIONS(2595), - [anon_sym_yield] = ACTIONS(2595), - [anon_sym_move] = ACTIONS(2595), - [anon_sym_try] = ACTIONS(2595), - [sym_integer_literal] = ACTIONS(2593), - [aux_sym_string_literal_token1] = ACTIONS(2593), - [sym_char_literal] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2595), - [sym_super] = ACTIONS(2595), - [sym_crate] = ACTIONS(2595), - [sym_metavariable] = ACTIONS(2593), - [sym__raw_string_literal_start] = ACTIONS(2593), - [sym_float_literal] = ACTIONS(2593), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_macro_rules_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_DOT_DOT] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_become] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_gen] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_impl] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_pub] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_struct] = ACTIONS(1467), + [anon_sym_trait] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_unsafe] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_raw] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_move] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), }, [STATE(661)] = { [sym_line_comment] = STATE(661), [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2597), - [sym_identifier] = ACTIONS(2599), - [anon_sym_SEMI] = ACTIONS(2597), - [anon_sym_macro_rules_BANG] = ACTIONS(2597), - [anon_sym_LPAREN] = ACTIONS(2597), - [anon_sym_LBRACK] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2597), - [anon_sym_RBRACE] = ACTIONS(2597), - [anon_sym_STAR] = ACTIONS(2597), - [anon_sym_u8] = ACTIONS(2599), - [anon_sym_i8] = ACTIONS(2599), - [anon_sym_u16] = ACTIONS(2599), - [anon_sym_i16] = ACTIONS(2599), - [anon_sym_u32] = ACTIONS(2599), - [anon_sym_i32] = ACTIONS(2599), - [anon_sym_u64] = ACTIONS(2599), - [anon_sym_i64] = ACTIONS(2599), - [anon_sym_u128] = ACTIONS(2599), - [anon_sym_i128] = ACTIONS(2599), - [anon_sym_isize] = ACTIONS(2599), - [anon_sym_usize] = ACTIONS(2599), - [anon_sym_f32] = ACTIONS(2599), - [anon_sym_f64] = ACTIONS(2599), - [anon_sym_bool] = ACTIONS(2599), - [anon_sym_str] = ACTIONS(2599), - [anon_sym_char] = ACTIONS(2599), - [anon_sym_DASH] = ACTIONS(2597), - [anon_sym_BANG] = ACTIONS(2597), - [anon_sym_AMP] = ACTIONS(2597), - [anon_sym_PIPE] = ACTIONS(2597), - [anon_sym_LT] = ACTIONS(2597), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_COLON_COLON] = ACTIONS(2597), - [anon_sym_POUND] = ACTIONS(2597), - [anon_sym_SQUOTE] = ACTIONS(2599), - [anon_sym_async] = ACTIONS(2599), - [anon_sym_break] = ACTIONS(2599), - [anon_sym_const] = ACTIONS(2599), - [anon_sym_continue] = ACTIONS(2599), - [anon_sym_default] = ACTIONS(2599), - [anon_sym_enum] = ACTIONS(2599), - [anon_sym_fn] = ACTIONS(2599), - [anon_sym_for] = ACTIONS(2599), - [anon_sym_gen] = ACTIONS(2599), - [anon_sym_if] = ACTIONS(2599), - [anon_sym_impl] = ACTIONS(2599), - [anon_sym_let] = ACTIONS(2599), - [anon_sym_loop] = ACTIONS(2599), - [anon_sym_match] = ACTIONS(2599), - [anon_sym_mod] = ACTIONS(2599), - [anon_sym_pub] = ACTIONS(2599), - [anon_sym_return] = ACTIONS(2599), - [anon_sym_static] = ACTIONS(2599), - [anon_sym_struct] = ACTIONS(2599), - [anon_sym_trait] = ACTIONS(2599), - [anon_sym_type] = ACTIONS(2599), - [anon_sym_union] = ACTIONS(2599), - [anon_sym_unsafe] = ACTIONS(2599), - [anon_sym_use] = ACTIONS(2599), - [anon_sym_while] = ACTIONS(2599), - [anon_sym_extern] = ACTIONS(2599), - [anon_sym_raw] = ACTIONS(2599), - [anon_sym_yield] = ACTIONS(2599), - [anon_sym_move] = ACTIONS(2599), - [anon_sym_try] = ACTIONS(2599), - [sym_integer_literal] = ACTIONS(2597), - [aux_sym_string_literal_token1] = ACTIONS(2597), - [sym_char_literal] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2599), - [anon_sym_false] = ACTIONS(2599), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2599), - [sym_super] = ACTIONS(2599), - [sym_crate] = ACTIONS(2599), - [sym_metavariable] = ACTIONS(2597), - [sym__raw_string_literal_start] = ACTIONS(2597), - [sym_float_literal] = ACTIONS(2597), + [ts_builtin_sym_end] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2468), + [anon_sym_macro_rules_BANG] = ACTIONS(2468), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2468), + [anon_sym_LBRACE] = ACTIONS(2468), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_u8] = ACTIONS(2470), + [anon_sym_i8] = ACTIONS(2470), + [anon_sym_u16] = ACTIONS(2470), + [anon_sym_i16] = ACTIONS(2470), + [anon_sym_u32] = ACTIONS(2470), + [anon_sym_i32] = ACTIONS(2470), + [anon_sym_u64] = ACTIONS(2470), + [anon_sym_i64] = ACTIONS(2470), + [anon_sym_u128] = ACTIONS(2470), + [anon_sym_i128] = ACTIONS(2470), + [anon_sym_isize] = ACTIONS(2470), + [anon_sym_usize] = ACTIONS(2470), + [anon_sym_f32] = ACTIONS(2470), + [anon_sym_f64] = ACTIONS(2470), + [anon_sym_bool] = ACTIONS(2470), + [anon_sym_str] = ACTIONS(2470), + [anon_sym_char] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2468), + [anon_sym_BANG] = ACTIONS(2468), + [anon_sym_AMP] = ACTIONS(2468), + [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_LT] = ACTIONS(2468), + [anon_sym_DOT_DOT] = ACTIONS(2468), + [anon_sym_COLON_COLON] = ACTIONS(2468), + [anon_sym_POUND] = ACTIONS(2468), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_become] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [anon_sym_fn] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_gen] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_impl] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_mod] = ACTIONS(2470), + [anon_sym_pub] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_struct] = ACTIONS(2470), + [anon_sym_trait] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_union] = ACTIONS(2470), + [anon_sym_unsafe] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_raw] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_move] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [sym_integer_literal] = ACTIONS(2468), + [aux_sym_string_literal_token1] = ACTIONS(2468), + [sym_char_literal] = ACTIONS(2468), + [anon_sym_true] = ACTIONS(2470), + [anon_sym_false] = ACTIONS(2470), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_crate] = ACTIONS(2470), + [sym_metavariable] = ACTIONS(2468), + [sym__raw_string_literal_start] = ACTIONS(2468), + [sym_float_literal] = ACTIONS(2468), }, [STATE(662)] = { [sym_line_comment] = STATE(662), [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2601), - [sym_identifier] = ACTIONS(2603), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_macro_rules_BANG] = ACTIONS(2601), - [anon_sym_LPAREN] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2601), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_STAR] = ACTIONS(2601), - [anon_sym_u8] = ACTIONS(2603), - [anon_sym_i8] = ACTIONS(2603), - [anon_sym_u16] = ACTIONS(2603), - [anon_sym_i16] = ACTIONS(2603), - [anon_sym_u32] = ACTIONS(2603), - [anon_sym_i32] = ACTIONS(2603), - [anon_sym_u64] = ACTIONS(2603), - [anon_sym_i64] = ACTIONS(2603), - [anon_sym_u128] = ACTIONS(2603), - [anon_sym_i128] = ACTIONS(2603), - [anon_sym_isize] = ACTIONS(2603), - [anon_sym_usize] = ACTIONS(2603), - [anon_sym_f32] = ACTIONS(2603), - [anon_sym_f64] = ACTIONS(2603), - [anon_sym_bool] = ACTIONS(2603), - [anon_sym_str] = ACTIONS(2603), - [anon_sym_char] = ACTIONS(2603), - [anon_sym_DASH] = ACTIONS(2601), - [anon_sym_BANG] = ACTIONS(2601), - [anon_sym_AMP] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_DOT_DOT] = ACTIONS(2601), - [anon_sym_COLON_COLON] = ACTIONS(2601), - [anon_sym_POUND] = ACTIONS(2601), - [anon_sym_SQUOTE] = ACTIONS(2603), - [anon_sym_async] = ACTIONS(2603), - [anon_sym_break] = ACTIONS(2603), - [anon_sym_const] = ACTIONS(2603), - [anon_sym_continue] = ACTIONS(2603), - [anon_sym_default] = ACTIONS(2603), - [anon_sym_enum] = ACTIONS(2603), - [anon_sym_fn] = ACTIONS(2603), - [anon_sym_for] = ACTIONS(2603), - [anon_sym_gen] = ACTIONS(2603), - [anon_sym_if] = ACTIONS(2603), - [anon_sym_impl] = ACTIONS(2603), - [anon_sym_let] = ACTIONS(2603), - [anon_sym_loop] = ACTIONS(2603), - [anon_sym_match] = ACTIONS(2603), - [anon_sym_mod] = ACTIONS(2603), - [anon_sym_pub] = ACTIONS(2603), - [anon_sym_return] = ACTIONS(2603), - [anon_sym_static] = ACTIONS(2603), - [anon_sym_struct] = ACTIONS(2603), - [anon_sym_trait] = ACTIONS(2603), - [anon_sym_type] = ACTIONS(2603), - [anon_sym_union] = ACTIONS(2603), - [anon_sym_unsafe] = ACTIONS(2603), - [anon_sym_use] = ACTIONS(2603), - [anon_sym_while] = ACTIONS(2603), - [anon_sym_extern] = ACTIONS(2603), - [anon_sym_raw] = ACTIONS(2603), - [anon_sym_yield] = ACTIONS(2603), - [anon_sym_move] = ACTIONS(2603), - [anon_sym_try] = ACTIONS(2603), - [sym_integer_literal] = ACTIONS(2601), - [aux_sym_string_literal_token1] = ACTIONS(2601), - [sym_char_literal] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2603), - [anon_sym_false] = ACTIONS(2603), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2603), - [sym_super] = ACTIONS(2603), - [sym_crate] = ACTIONS(2603), - [sym_metavariable] = ACTIONS(2601), - [sym__raw_string_literal_start] = ACTIONS(2601), - [sym_float_literal] = ACTIONS(2601), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_identifier] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1433), + [anon_sym_macro_rules_BANG] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_LBRACE] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_DOT_DOT] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_SQUOTE] = ACTIONS(1435), + [anon_sym_async] = ACTIONS(1435), + [anon_sym_become] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_enum] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_impl] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_mod] = ACTIONS(1435), + [anon_sym_pub] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_static] = ACTIONS(1435), + [anon_sym_struct] = ACTIONS(1435), + [anon_sym_trait] = ACTIONS(1435), + [anon_sym_type] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_unsafe] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_raw] = ACTIONS(1435), + [anon_sym_yield] = ACTIONS(1435), + [anon_sym_move] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, [STATE(663)] = { [sym_line_comment] = STATE(663), [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_macro_rules_BANG] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_u8] = ACTIONS(2607), - [anon_sym_i8] = ACTIONS(2607), - [anon_sym_u16] = ACTIONS(2607), - [anon_sym_i16] = ACTIONS(2607), - [anon_sym_u32] = ACTIONS(2607), - [anon_sym_i32] = ACTIONS(2607), - [anon_sym_u64] = ACTIONS(2607), - [anon_sym_i64] = ACTIONS(2607), - [anon_sym_u128] = ACTIONS(2607), - [anon_sym_i128] = ACTIONS(2607), - [anon_sym_isize] = ACTIONS(2607), - [anon_sym_usize] = ACTIONS(2607), - [anon_sym_f32] = ACTIONS(2607), - [anon_sym_f64] = ACTIONS(2607), - [anon_sym_bool] = ACTIONS(2607), - [anon_sym_str] = ACTIONS(2607), - [anon_sym_char] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_DOT_DOT] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_break] = ACTIONS(2607), - [anon_sym_const] = ACTIONS(2607), - [anon_sym_continue] = ACTIONS(2607), - [anon_sym_default] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_fn] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2607), - [anon_sym_gen] = ACTIONS(2607), - [anon_sym_if] = ACTIONS(2607), - [anon_sym_impl] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_loop] = ACTIONS(2607), - [anon_sym_match] = ACTIONS(2607), - [anon_sym_mod] = ACTIONS(2607), - [anon_sym_pub] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_trait] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2607), - [anon_sym_union] = ACTIONS(2607), - [anon_sym_unsafe] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2607), - [anon_sym_while] = ACTIONS(2607), - [anon_sym_extern] = ACTIONS(2607), - [anon_sym_raw] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2607), - [anon_sym_move] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2607), - [sym_integer_literal] = ACTIONS(2605), - [aux_sym_string_literal_token1] = ACTIONS(2605), - [sym_char_literal] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2607), - [anon_sym_false] = ACTIONS(2607), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2607), - [sym_super] = ACTIONS(2607), - [sym_crate] = ACTIONS(2607), - [sym_metavariable] = ACTIONS(2605), - [sym__raw_string_literal_start] = ACTIONS(2605), - [sym_float_literal] = ACTIONS(2605), + [ts_builtin_sym_end] = ACTIONS(2472), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2472), + [anon_sym_macro_rules_BANG] = ACTIONS(2472), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_LBRACK] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(2472), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_STAR] = ACTIONS(2472), + [anon_sym_u8] = ACTIONS(2474), + [anon_sym_i8] = ACTIONS(2474), + [anon_sym_u16] = ACTIONS(2474), + [anon_sym_i16] = ACTIONS(2474), + [anon_sym_u32] = ACTIONS(2474), + [anon_sym_i32] = ACTIONS(2474), + [anon_sym_u64] = ACTIONS(2474), + [anon_sym_i64] = ACTIONS(2474), + [anon_sym_u128] = ACTIONS(2474), + [anon_sym_i128] = ACTIONS(2474), + [anon_sym_isize] = ACTIONS(2474), + [anon_sym_usize] = ACTIONS(2474), + [anon_sym_f32] = ACTIONS(2474), + [anon_sym_f64] = ACTIONS(2474), + [anon_sym_bool] = ACTIONS(2474), + [anon_sym_str] = ACTIONS(2474), + [anon_sym_char] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2472), + [anon_sym_BANG] = ACTIONS(2472), + [anon_sym_AMP] = ACTIONS(2472), + [anon_sym_PIPE] = ACTIONS(2472), + [anon_sym_LT] = ACTIONS(2472), + [anon_sym_DOT_DOT] = ACTIONS(2472), + [anon_sym_COLON_COLON] = ACTIONS(2472), + [anon_sym_POUND] = ACTIONS(2472), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_become] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [anon_sym_fn] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_gen] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_impl] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_mod] = ACTIONS(2474), + [anon_sym_pub] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_static] = ACTIONS(2474), + [anon_sym_struct] = ACTIONS(2474), + [anon_sym_trait] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_union] = ACTIONS(2474), + [anon_sym_unsafe] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_raw] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_move] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [sym_integer_literal] = ACTIONS(2472), + [aux_sym_string_literal_token1] = ACTIONS(2472), + [sym_char_literal] = ACTIONS(2472), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_crate] = ACTIONS(2474), + [sym_metavariable] = ACTIONS(2472), + [sym__raw_string_literal_start] = ACTIONS(2472), + [sym_float_literal] = ACTIONS(2472), }, [STATE(664)] = { [sym_line_comment] = STATE(664), [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2609), - [sym_identifier] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2609), - [anon_sym_macro_rules_BANG] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_u8] = ACTIONS(2611), - [anon_sym_i8] = ACTIONS(2611), - [anon_sym_u16] = ACTIONS(2611), - [anon_sym_i16] = ACTIONS(2611), - [anon_sym_u32] = ACTIONS(2611), - [anon_sym_i32] = ACTIONS(2611), - [anon_sym_u64] = ACTIONS(2611), - [anon_sym_i64] = ACTIONS(2611), - [anon_sym_u128] = ACTIONS(2611), - [anon_sym_i128] = ACTIONS(2611), - [anon_sym_isize] = ACTIONS(2611), - [anon_sym_usize] = ACTIONS(2611), - [anon_sym_f32] = ACTIONS(2611), - [anon_sym_f64] = ACTIONS(2611), - [anon_sym_bool] = ACTIONS(2611), - [anon_sym_str] = ACTIONS(2611), - [anon_sym_char] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_DOT_DOT] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2609), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_async] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_fn] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_gen] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_impl] = ACTIONS(2611), - [anon_sym_let] = ACTIONS(2611), - [anon_sym_loop] = ACTIONS(2611), - [anon_sym_match] = ACTIONS(2611), - [anon_sym_mod] = ACTIONS(2611), - [anon_sym_pub] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_trait] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_unsafe] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym_raw] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2611), - [anon_sym_move] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [sym_integer_literal] = ACTIONS(2609), - [aux_sym_string_literal_token1] = ACTIONS(2609), - [sym_char_literal] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2611), - [anon_sym_false] = ACTIONS(2611), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2611), - [sym_super] = ACTIONS(2611), - [sym_crate] = ACTIONS(2611), - [sym_metavariable] = ACTIONS(2609), - [sym__raw_string_literal_start] = ACTIONS(2609), - [sym_float_literal] = ACTIONS(2609), + [ts_builtin_sym_end] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_macro_rules_BANG] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_u8] = ACTIONS(2478), + [anon_sym_i8] = ACTIONS(2478), + [anon_sym_u16] = ACTIONS(2478), + [anon_sym_i16] = ACTIONS(2478), + [anon_sym_u32] = ACTIONS(2478), + [anon_sym_i32] = ACTIONS(2478), + [anon_sym_u64] = ACTIONS(2478), + [anon_sym_i64] = ACTIONS(2478), + [anon_sym_u128] = ACTIONS(2478), + [anon_sym_i128] = ACTIONS(2478), + [anon_sym_isize] = ACTIONS(2478), + [anon_sym_usize] = ACTIONS(2478), + [anon_sym_f32] = ACTIONS(2478), + [anon_sym_f64] = ACTIONS(2478), + [anon_sym_bool] = ACTIONS(2478), + [anon_sym_str] = ACTIONS(2478), + [anon_sym_char] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_DOT_DOT] = ACTIONS(2476), + [anon_sym_COLON_COLON] = ACTIONS(2476), + [anon_sym_POUND] = ACTIONS(2476), + [anon_sym_SQUOTE] = ACTIONS(2478), + [anon_sym_async] = ACTIONS(2478), + [anon_sym_become] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_default] = ACTIONS(2478), + [anon_sym_enum] = ACTIONS(2478), + [anon_sym_fn] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_gen] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_impl] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_mod] = ACTIONS(2478), + [anon_sym_pub] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_struct] = ACTIONS(2478), + [anon_sym_trait] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_union] = ACTIONS(2478), + [anon_sym_unsafe] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_raw] = ACTIONS(2478), + [anon_sym_yield] = ACTIONS(2478), + [anon_sym_move] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [sym_integer_literal] = ACTIONS(2476), + [aux_sym_string_literal_token1] = ACTIONS(2476), + [sym_char_literal] = ACTIONS(2476), + [anon_sym_true] = ACTIONS(2478), + [anon_sym_false] = ACTIONS(2478), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2478), + [sym_super] = ACTIONS(2478), + [sym_crate] = ACTIONS(2478), + [sym_metavariable] = ACTIONS(2476), + [sym__raw_string_literal_start] = ACTIONS(2476), + [sym_float_literal] = ACTIONS(2476), }, [STATE(665)] = { [sym_line_comment] = STATE(665), [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_macro_rules_BANG] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_u8] = ACTIONS(2615), - [anon_sym_i8] = ACTIONS(2615), - [anon_sym_u16] = ACTIONS(2615), - [anon_sym_i16] = ACTIONS(2615), - [anon_sym_u32] = ACTIONS(2615), - [anon_sym_i32] = ACTIONS(2615), - [anon_sym_u64] = ACTIONS(2615), - [anon_sym_i64] = ACTIONS(2615), - [anon_sym_u128] = ACTIONS(2615), - [anon_sym_i128] = ACTIONS(2615), - [anon_sym_isize] = ACTIONS(2615), - [anon_sym_usize] = ACTIONS(2615), - [anon_sym_f32] = ACTIONS(2615), - [anon_sym_f64] = ACTIONS(2615), - [anon_sym_bool] = ACTIONS(2615), - [anon_sym_str] = ACTIONS(2615), - [anon_sym_char] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_async] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_fn] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_gen] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_impl] = ACTIONS(2615), - [anon_sym_let] = ACTIONS(2615), - [anon_sym_loop] = ACTIONS(2615), - [anon_sym_match] = ACTIONS(2615), - [anon_sym_mod] = ACTIONS(2615), - [anon_sym_pub] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_trait] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_unsafe] = ACTIONS(2615), - [anon_sym_use] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym_raw] = ACTIONS(2615), - [anon_sym_yield] = ACTIONS(2615), - [anon_sym_move] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [sym_integer_literal] = ACTIONS(2613), - [aux_sym_string_literal_token1] = ACTIONS(2613), - [sym_char_literal] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2615), - [anon_sym_false] = ACTIONS(2615), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2615), - [sym_super] = ACTIONS(2615), - [sym_crate] = ACTIONS(2615), - [sym_metavariable] = ACTIONS(2613), - [sym__raw_string_literal_start] = ACTIONS(2613), - [sym_float_literal] = ACTIONS(2613), + [ts_builtin_sym_end] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_macro_rules_BANG] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_LBRACK] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2480), + [anon_sym_u8] = ACTIONS(2482), + [anon_sym_i8] = ACTIONS(2482), + [anon_sym_u16] = ACTIONS(2482), + [anon_sym_i16] = ACTIONS(2482), + [anon_sym_u32] = ACTIONS(2482), + [anon_sym_i32] = ACTIONS(2482), + [anon_sym_u64] = ACTIONS(2482), + [anon_sym_i64] = ACTIONS(2482), + [anon_sym_u128] = ACTIONS(2482), + [anon_sym_i128] = ACTIONS(2482), + [anon_sym_isize] = ACTIONS(2482), + [anon_sym_usize] = ACTIONS(2482), + [anon_sym_f32] = ACTIONS(2482), + [anon_sym_f64] = ACTIONS(2482), + [anon_sym_bool] = ACTIONS(2482), + [anon_sym_str] = ACTIONS(2482), + [anon_sym_char] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_BANG] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(2480), + [anon_sym_DOT_DOT] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2480), + [anon_sym_POUND] = ACTIONS(2480), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_become] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [anon_sym_fn] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_gen] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_impl] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_mod] = ACTIONS(2482), + [anon_sym_pub] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_struct] = ACTIONS(2482), + [anon_sym_trait] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_union] = ACTIONS(2482), + [anon_sym_unsafe] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_raw] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_move] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [sym_integer_literal] = ACTIONS(2480), + [aux_sym_string_literal_token1] = ACTIONS(2480), + [sym_char_literal] = ACTIONS(2480), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_crate] = ACTIONS(2482), + [sym_metavariable] = ACTIONS(2480), + [sym__raw_string_literal_start] = ACTIONS(2480), + [sym_float_literal] = ACTIONS(2480), }, [STATE(666)] = { [sym_line_comment] = STATE(666), [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_macro_rules_BANG] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_u8] = ACTIONS(2619), - [anon_sym_i8] = ACTIONS(2619), - [anon_sym_u16] = ACTIONS(2619), - [anon_sym_i16] = ACTIONS(2619), - [anon_sym_u32] = ACTIONS(2619), - [anon_sym_i32] = ACTIONS(2619), - [anon_sym_u64] = ACTIONS(2619), - [anon_sym_i64] = ACTIONS(2619), - [anon_sym_u128] = ACTIONS(2619), - [anon_sym_i128] = ACTIONS(2619), - [anon_sym_isize] = ACTIONS(2619), - [anon_sym_usize] = ACTIONS(2619), - [anon_sym_f32] = ACTIONS(2619), - [anon_sym_f64] = ACTIONS(2619), - [anon_sym_bool] = ACTIONS(2619), - [anon_sym_str] = ACTIONS(2619), - [anon_sym_char] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_POUND] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_async] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_fn] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_gen] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_impl] = ACTIONS(2619), - [anon_sym_let] = ACTIONS(2619), - [anon_sym_loop] = ACTIONS(2619), - [anon_sym_match] = ACTIONS(2619), - [anon_sym_mod] = ACTIONS(2619), - [anon_sym_pub] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_trait] = ACTIONS(2619), - [anon_sym_type] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_unsafe] = ACTIONS(2619), - [anon_sym_use] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym_raw] = ACTIONS(2619), - [anon_sym_yield] = ACTIONS(2619), - [anon_sym_move] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [sym_integer_literal] = ACTIONS(2617), - [aux_sym_string_literal_token1] = ACTIONS(2617), - [sym_char_literal] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2619), - [anon_sym_false] = ACTIONS(2619), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2619), - [sym_super] = ACTIONS(2619), - [sym_crate] = ACTIONS(2619), - [sym_metavariable] = ACTIONS(2617), - [sym__raw_string_literal_start] = ACTIONS(2617), - [sym_float_literal] = ACTIONS(2617), + [ts_builtin_sym_end] = ACTIONS(2484), + [sym_identifier] = ACTIONS(2486), + [anon_sym_SEMI] = ACTIONS(2484), + [anon_sym_macro_rules_BANG] = ACTIONS(2484), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_LBRACK] = ACTIONS(2484), + [anon_sym_LBRACE] = ACTIONS(2484), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_STAR] = ACTIONS(2484), + [anon_sym_u8] = ACTIONS(2486), + [anon_sym_i8] = ACTIONS(2486), + [anon_sym_u16] = ACTIONS(2486), + [anon_sym_i16] = ACTIONS(2486), + [anon_sym_u32] = ACTIONS(2486), + [anon_sym_i32] = ACTIONS(2486), + [anon_sym_u64] = ACTIONS(2486), + [anon_sym_i64] = ACTIONS(2486), + [anon_sym_u128] = ACTIONS(2486), + [anon_sym_i128] = ACTIONS(2486), + [anon_sym_isize] = ACTIONS(2486), + [anon_sym_usize] = ACTIONS(2486), + [anon_sym_f32] = ACTIONS(2486), + [anon_sym_f64] = ACTIONS(2486), + [anon_sym_bool] = ACTIONS(2486), + [anon_sym_str] = ACTIONS(2486), + [anon_sym_char] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2484), + [anon_sym_BANG] = ACTIONS(2484), + [anon_sym_AMP] = ACTIONS(2484), + [anon_sym_PIPE] = ACTIONS(2484), + [anon_sym_LT] = ACTIONS(2484), + [anon_sym_DOT_DOT] = ACTIONS(2484), + [anon_sym_COLON_COLON] = ACTIONS(2484), + [anon_sym_POUND] = ACTIONS(2484), + [anon_sym_SQUOTE] = ACTIONS(2486), + [anon_sym_async] = ACTIONS(2486), + [anon_sym_become] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_default] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2486), + [anon_sym_fn] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_gen] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_impl] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_mod] = ACTIONS(2486), + [anon_sym_pub] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_struct] = ACTIONS(2486), + [anon_sym_trait] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_union] = ACTIONS(2486), + [anon_sym_unsafe] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_raw] = ACTIONS(2486), + [anon_sym_yield] = ACTIONS(2486), + [anon_sym_move] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2486), + [sym_integer_literal] = ACTIONS(2484), + [aux_sym_string_literal_token1] = ACTIONS(2484), + [sym_char_literal] = ACTIONS(2484), + [anon_sym_true] = ACTIONS(2486), + [anon_sym_false] = ACTIONS(2486), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2486), + [sym_super] = ACTIONS(2486), + [sym_crate] = ACTIONS(2486), + [sym_metavariable] = ACTIONS(2484), + [sym__raw_string_literal_start] = ACTIONS(2484), + [sym_float_literal] = ACTIONS(2484), }, [STATE(667)] = { [sym_line_comment] = STATE(667), [sym_block_comment] = STATE(667), - [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_STAR] = 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(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = 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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2488), + [sym_identifier] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2488), + [anon_sym_macro_rules_BANG] = ACTIONS(2488), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_LBRACK] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(2488), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_STAR] = ACTIONS(2488), + [anon_sym_u8] = ACTIONS(2490), + [anon_sym_i8] = ACTIONS(2490), + [anon_sym_u16] = ACTIONS(2490), + [anon_sym_i16] = ACTIONS(2490), + [anon_sym_u32] = ACTIONS(2490), + [anon_sym_i32] = ACTIONS(2490), + [anon_sym_u64] = ACTIONS(2490), + [anon_sym_i64] = ACTIONS(2490), + [anon_sym_u128] = ACTIONS(2490), + [anon_sym_i128] = ACTIONS(2490), + [anon_sym_isize] = ACTIONS(2490), + [anon_sym_usize] = ACTIONS(2490), + [anon_sym_f32] = ACTIONS(2490), + [anon_sym_f64] = ACTIONS(2490), + [anon_sym_bool] = ACTIONS(2490), + [anon_sym_str] = ACTIONS(2490), + [anon_sym_char] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2488), + [anon_sym_BANG] = ACTIONS(2488), + [anon_sym_AMP] = ACTIONS(2488), + [anon_sym_PIPE] = ACTIONS(2488), + [anon_sym_LT] = ACTIONS(2488), + [anon_sym_DOT_DOT] = ACTIONS(2488), + [anon_sym_COLON_COLON] = ACTIONS(2488), + [anon_sym_POUND] = ACTIONS(2488), + [anon_sym_SQUOTE] = ACTIONS(2490), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_become] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_fn] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_gen] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_impl] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_mod] = ACTIONS(2490), + [anon_sym_pub] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_trait] = ACTIONS(2490), + [anon_sym_type] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_unsafe] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_raw] = ACTIONS(2490), + [anon_sym_yield] = ACTIONS(2490), + [anon_sym_move] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [sym_integer_literal] = ACTIONS(2488), + [aux_sym_string_literal_token1] = ACTIONS(2488), + [sym_char_literal] = ACTIONS(2488), + [anon_sym_true] = ACTIONS(2490), + [anon_sym_false] = ACTIONS(2490), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2490), + [sym_super] = ACTIONS(2490), + [sym_crate] = ACTIONS(2490), + [sym_metavariable] = ACTIONS(2488), + [sym__raw_string_literal_start] = ACTIONS(2488), + [sym_float_literal] = ACTIONS(2488), }, [STATE(668)] = { [sym_line_comment] = STATE(668), [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2621), - [sym_identifier] = ACTIONS(2623), - [anon_sym_SEMI] = ACTIONS(2621), - [anon_sym_macro_rules_BANG] = ACTIONS(2621), - [anon_sym_LPAREN] = ACTIONS(2621), - [anon_sym_LBRACK] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(2621), - [anon_sym_RBRACE] = ACTIONS(2621), - [anon_sym_STAR] = ACTIONS(2621), - [anon_sym_u8] = ACTIONS(2623), - [anon_sym_i8] = ACTIONS(2623), - [anon_sym_u16] = ACTIONS(2623), - [anon_sym_i16] = ACTIONS(2623), - [anon_sym_u32] = ACTIONS(2623), - [anon_sym_i32] = ACTIONS(2623), - [anon_sym_u64] = ACTIONS(2623), - [anon_sym_i64] = ACTIONS(2623), - [anon_sym_u128] = ACTIONS(2623), - [anon_sym_i128] = ACTIONS(2623), - [anon_sym_isize] = ACTIONS(2623), - [anon_sym_usize] = ACTIONS(2623), - [anon_sym_f32] = ACTIONS(2623), - [anon_sym_f64] = ACTIONS(2623), - [anon_sym_bool] = ACTIONS(2623), - [anon_sym_str] = ACTIONS(2623), - [anon_sym_char] = ACTIONS(2623), - [anon_sym_DASH] = ACTIONS(2621), - [anon_sym_BANG] = ACTIONS(2621), - [anon_sym_AMP] = ACTIONS(2621), - [anon_sym_PIPE] = ACTIONS(2621), - [anon_sym_LT] = ACTIONS(2621), - [anon_sym_DOT_DOT] = ACTIONS(2621), - [anon_sym_COLON_COLON] = ACTIONS(2621), - [anon_sym_POUND] = ACTIONS(2621), - [anon_sym_SQUOTE] = ACTIONS(2623), - [anon_sym_async] = ACTIONS(2623), - [anon_sym_break] = ACTIONS(2623), - [anon_sym_const] = ACTIONS(2623), - [anon_sym_continue] = ACTIONS(2623), - [anon_sym_default] = ACTIONS(2623), - [anon_sym_enum] = ACTIONS(2623), - [anon_sym_fn] = ACTIONS(2623), - [anon_sym_for] = ACTIONS(2623), - [anon_sym_gen] = ACTIONS(2623), - [anon_sym_if] = ACTIONS(2623), - [anon_sym_impl] = ACTIONS(2623), - [anon_sym_let] = ACTIONS(2623), - [anon_sym_loop] = ACTIONS(2623), - [anon_sym_match] = ACTIONS(2623), - [anon_sym_mod] = ACTIONS(2623), - [anon_sym_pub] = ACTIONS(2623), - [anon_sym_return] = ACTIONS(2623), - [anon_sym_static] = ACTIONS(2623), - [anon_sym_struct] = ACTIONS(2623), - [anon_sym_trait] = ACTIONS(2623), - [anon_sym_type] = ACTIONS(2623), - [anon_sym_union] = ACTIONS(2623), - [anon_sym_unsafe] = ACTIONS(2623), - [anon_sym_use] = ACTIONS(2623), - [anon_sym_while] = ACTIONS(2623), - [anon_sym_extern] = ACTIONS(2623), - [anon_sym_raw] = ACTIONS(2623), - [anon_sym_yield] = ACTIONS(2623), - [anon_sym_move] = ACTIONS(2623), - [anon_sym_try] = ACTIONS(2623), - [sym_integer_literal] = ACTIONS(2621), - [aux_sym_string_literal_token1] = ACTIONS(2621), - [sym_char_literal] = ACTIONS(2621), - [anon_sym_true] = ACTIONS(2623), - [anon_sym_false] = ACTIONS(2623), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2623), - [sym_super] = ACTIONS(2623), - [sym_crate] = ACTIONS(2623), - [sym_metavariable] = ACTIONS(2621), - [sym__raw_string_literal_start] = ACTIONS(2621), - [sym_float_literal] = ACTIONS(2621), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym_macro_rules_BANG] = ACTIONS(2492), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_LBRACK] = ACTIONS(2492), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_u8] = ACTIONS(2494), + [anon_sym_i8] = ACTIONS(2494), + [anon_sym_u16] = ACTIONS(2494), + [anon_sym_i16] = ACTIONS(2494), + [anon_sym_u32] = ACTIONS(2494), + [anon_sym_i32] = ACTIONS(2494), + [anon_sym_u64] = ACTIONS(2494), + [anon_sym_i64] = ACTIONS(2494), + [anon_sym_u128] = ACTIONS(2494), + [anon_sym_i128] = ACTIONS(2494), + [anon_sym_isize] = ACTIONS(2494), + [anon_sym_usize] = ACTIONS(2494), + [anon_sym_f32] = ACTIONS(2494), + [anon_sym_f64] = ACTIONS(2494), + [anon_sym_bool] = ACTIONS(2494), + [anon_sym_str] = ACTIONS(2494), + [anon_sym_char] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_PIPE] = ACTIONS(2492), + [anon_sym_LT] = ACTIONS(2492), + [anon_sym_DOT_DOT] = ACTIONS(2492), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_POUND] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2494), + [anon_sym_async] = ACTIONS(2494), + [anon_sym_become] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2494), + [anon_sym_enum] = ACTIONS(2494), + [anon_sym_fn] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_gen] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_impl] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_mod] = ACTIONS(2494), + [anon_sym_pub] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_static] = ACTIONS(2494), + [anon_sym_struct] = ACTIONS(2494), + [anon_sym_trait] = ACTIONS(2494), + [anon_sym_type] = ACTIONS(2494), + [anon_sym_union] = ACTIONS(2494), + [anon_sym_unsafe] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_raw] = ACTIONS(2494), + [anon_sym_yield] = ACTIONS(2494), + [anon_sym_move] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [sym_integer_literal] = ACTIONS(2492), + [aux_sym_string_literal_token1] = ACTIONS(2492), + [sym_char_literal] = ACTIONS(2492), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2494), + [sym_super] = ACTIONS(2494), + [sym_crate] = ACTIONS(2494), + [sym_metavariable] = ACTIONS(2492), + [sym__raw_string_literal_start] = ACTIONS(2492), + [sym_float_literal] = ACTIONS(2492), }, [STATE(669)] = { [sym_line_comment] = STATE(669), [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2625), - [sym_identifier] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2625), - [anon_sym_macro_rules_BANG] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(2625), - [anon_sym_LBRACK] = ACTIONS(2625), - [anon_sym_LBRACE] = ACTIONS(2625), - [anon_sym_RBRACE] = ACTIONS(2625), - [anon_sym_STAR] = ACTIONS(2625), - [anon_sym_u8] = ACTIONS(2627), - [anon_sym_i8] = ACTIONS(2627), - [anon_sym_u16] = ACTIONS(2627), - [anon_sym_i16] = ACTIONS(2627), - [anon_sym_u32] = ACTIONS(2627), - [anon_sym_i32] = ACTIONS(2627), - [anon_sym_u64] = ACTIONS(2627), - [anon_sym_i64] = ACTIONS(2627), - [anon_sym_u128] = ACTIONS(2627), - [anon_sym_i128] = ACTIONS(2627), - [anon_sym_isize] = ACTIONS(2627), - [anon_sym_usize] = ACTIONS(2627), - [anon_sym_f32] = ACTIONS(2627), - [anon_sym_f64] = ACTIONS(2627), - [anon_sym_bool] = ACTIONS(2627), - [anon_sym_str] = ACTIONS(2627), - [anon_sym_char] = ACTIONS(2627), - [anon_sym_DASH] = ACTIONS(2625), - [anon_sym_BANG] = ACTIONS(2625), - [anon_sym_AMP] = ACTIONS(2625), - [anon_sym_PIPE] = ACTIONS(2625), - [anon_sym_LT] = ACTIONS(2625), - [anon_sym_DOT_DOT] = ACTIONS(2625), - [anon_sym_COLON_COLON] = ACTIONS(2625), - [anon_sym_POUND] = ACTIONS(2625), - [anon_sym_SQUOTE] = ACTIONS(2627), - [anon_sym_async] = ACTIONS(2627), - [anon_sym_break] = ACTIONS(2627), - [anon_sym_const] = ACTIONS(2627), - [anon_sym_continue] = ACTIONS(2627), - [anon_sym_default] = ACTIONS(2627), - [anon_sym_enum] = ACTIONS(2627), - [anon_sym_fn] = ACTIONS(2627), - [anon_sym_for] = ACTIONS(2627), - [anon_sym_gen] = ACTIONS(2627), - [anon_sym_if] = ACTIONS(2627), - [anon_sym_impl] = ACTIONS(2627), - [anon_sym_let] = ACTIONS(2627), - [anon_sym_loop] = ACTIONS(2627), - [anon_sym_match] = ACTIONS(2627), - [anon_sym_mod] = ACTIONS(2627), - [anon_sym_pub] = ACTIONS(2627), - [anon_sym_return] = ACTIONS(2627), - [anon_sym_static] = ACTIONS(2627), - [anon_sym_struct] = ACTIONS(2627), - [anon_sym_trait] = ACTIONS(2627), - [anon_sym_type] = ACTIONS(2627), - [anon_sym_union] = ACTIONS(2627), - [anon_sym_unsafe] = ACTIONS(2627), - [anon_sym_use] = ACTIONS(2627), - [anon_sym_while] = ACTIONS(2627), - [anon_sym_extern] = ACTIONS(2627), - [anon_sym_raw] = ACTIONS(2627), - [anon_sym_yield] = ACTIONS(2627), - [anon_sym_move] = ACTIONS(2627), - [anon_sym_try] = ACTIONS(2627), - [sym_integer_literal] = ACTIONS(2625), - [aux_sym_string_literal_token1] = ACTIONS(2625), - [sym_char_literal] = ACTIONS(2625), - [anon_sym_true] = ACTIONS(2627), - [anon_sym_false] = ACTIONS(2627), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2627), - [sym_super] = ACTIONS(2627), - [sym_crate] = ACTIONS(2627), - [sym_metavariable] = ACTIONS(2625), - [sym__raw_string_literal_start] = ACTIONS(2625), - [sym_float_literal] = ACTIONS(2625), + [ts_builtin_sym_end] = ACTIONS(2496), + [sym_identifier] = ACTIONS(2498), + [anon_sym_SEMI] = ACTIONS(2496), + [anon_sym_macro_rules_BANG] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_LBRACK] = ACTIONS(2496), + [anon_sym_LBRACE] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_STAR] = ACTIONS(2496), + [anon_sym_u8] = ACTIONS(2498), + [anon_sym_i8] = ACTIONS(2498), + [anon_sym_u16] = ACTIONS(2498), + [anon_sym_i16] = ACTIONS(2498), + [anon_sym_u32] = ACTIONS(2498), + [anon_sym_i32] = ACTIONS(2498), + [anon_sym_u64] = ACTIONS(2498), + [anon_sym_i64] = ACTIONS(2498), + [anon_sym_u128] = ACTIONS(2498), + [anon_sym_i128] = ACTIONS(2498), + [anon_sym_isize] = ACTIONS(2498), + [anon_sym_usize] = ACTIONS(2498), + [anon_sym_f32] = ACTIONS(2498), + [anon_sym_f64] = ACTIONS(2498), + [anon_sym_bool] = ACTIONS(2498), + [anon_sym_str] = ACTIONS(2498), + [anon_sym_char] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2496), + [anon_sym_BANG] = ACTIONS(2496), + [anon_sym_AMP] = ACTIONS(2496), + [anon_sym_PIPE] = ACTIONS(2496), + [anon_sym_LT] = ACTIONS(2496), + [anon_sym_DOT_DOT] = ACTIONS(2496), + [anon_sym_COLON_COLON] = ACTIONS(2496), + [anon_sym_POUND] = ACTIONS(2496), + [anon_sym_SQUOTE] = ACTIONS(2498), + [anon_sym_async] = ACTIONS(2498), + [anon_sym_become] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_default] = ACTIONS(2498), + [anon_sym_enum] = ACTIONS(2498), + [anon_sym_fn] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_gen] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_impl] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_mod] = ACTIONS(2498), + [anon_sym_pub] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(2498), + [anon_sym_struct] = ACTIONS(2498), + [anon_sym_trait] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2498), + [anon_sym_union] = ACTIONS(2498), + [anon_sym_unsafe] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_raw] = ACTIONS(2498), + [anon_sym_yield] = ACTIONS(2498), + [anon_sym_move] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [sym_integer_literal] = ACTIONS(2496), + [aux_sym_string_literal_token1] = ACTIONS(2496), + [sym_char_literal] = ACTIONS(2496), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2498), + [sym_super] = ACTIONS(2498), + [sym_crate] = ACTIONS(2498), + [sym_metavariable] = ACTIONS(2496), + [sym__raw_string_literal_start] = ACTIONS(2496), + [sym_float_literal] = ACTIONS(2496), }, [STATE(670)] = { [sym_line_comment] = STATE(670), [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2629), - [sym_identifier] = ACTIONS(2631), - [anon_sym_SEMI] = ACTIONS(2629), - [anon_sym_macro_rules_BANG] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(2629), - [anon_sym_LBRACK] = ACTIONS(2629), - [anon_sym_LBRACE] = ACTIONS(2629), - [anon_sym_RBRACE] = ACTIONS(2629), - [anon_sym_STAR] = ACTIONS(2629), - [anon_sym_u8] = ACTIONS(2631), - [anon_sym_i8] = ACTIONS(2631), - [anon_sym_u16] = ACTIONS(2631), - [anon_sym_i16] = ACTIONS(2631), - [anon_sym_u32] = ACTIONS(2631), - [anon_sym_i32] = ACTIONS(2631), - [anon_sym_u64] = ACTIONS(2631), - [anon_sym_i64] = ACTIONS(2631), - [anon_sym_u128] = ACTIONS(2631), - [anon_sym_i128] = ACTIONS(2631), - [anon_sym_isize] = ACTIONS(2631), - [anon_sym_usize] = ACTIONS(2631), - [anon_sym_f32] = ACTIONS(2631), - [anon_sym_f64] = ACTIONS(2631), - [anon_sym_bool] = ACTIONS(2631), - [anon_sym_str] = ACTIONS(2631), - [anon_sym_char] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2629), - [anon_sym_BANG] = ACTIONS(2629), - [anon_sym_AMP] = ACTIONS(2629), - [anon_sym_PIPE] = ACTIONS(2629), - [anon_sym_LT] = ACTIONS(2629), - [anon_sym_DOT_DOT] = ACTIONS(2629), - [anon_sym_COLON_COLON] = ACTIONS(2629), - [anon_sym_POUND] = ACTIONS(2629), - [anon_sym_SQUOTE] = ACTIONS(2631), - [anon_sym_async] = ACTIONS(2631), - [anon_sym_break] = ACTIONS(2631), - [anon_sym_const] = ACTIONS(2631), - [anon_sym_continue] = ACTIONS(2631), - [anon_sym_default] = ACTIONS(2631), - [anon_sym_enum] = ACTIONS(2631), - [anon_sym_fn] = ACTIONS(2631), - [anon_sym_for] = ACTIONS(2631), - [anon_sym_gen] = ACTIONS(2631), - [anon_sym_if] = ACTIONS(2631), - [anon_sym_impl] = ACTIONS(2631), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_loop] = ACTIONS(2631), - [anon_sym_match] = ACTIONS(2631), - [anon_sym_mod] = ACTIONS(2631), - [anon_sym_pub] = ACTIONS(2631), - [anon_sym_return] = ACTIONS(2631), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_struct] = ACTIONS(2631), - [anon_sym_trait] = ACTIONS(2631), - [anon_sym_type] = ACTIONS(2631), - [anon_sym_union] = ACTIONS(2631), - [anon_sym_unsafe] = ACTIONS(2631), - [anon_sym_use] = ACTIONS(2631), - [anon_sym_while] = ACTIONS(2631), - [anon_sym_extern] = ACTIONS(2631), - [anon_sym_raw] = ACTIONS(2631), - [anon_sym_yield] = ACTIONS(2631), - [anon_sym_move] = ACTIONS(2631), - [anon_sym_try] = ACTIONS(2631), - [sym_integer_literal] = ACTIONS(2629), - [aux_sym_string_literal_token1] = ACTIONS(2629), - [sym_char_literal] = ACTIONS(2629), - [anon_sym_true] = ACTIONS(2631), - [anon_sym_false] = ACTIONS(2631), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2631), - [sym_super] = ACTIONS(2631), - [sym_crate] = ACTIONS(2631), - [sym_metavariable] = ACTIONS(2629), - [sym__raw_string_literal_start] = ACTIONS(2629), - [sym_float_literal] = ACTIONS(2629), + [ts_builtin_sym_end] = ACTIONS(2500), + [sym_identifier] = ACTIONS(2502), + [anon_sym_SEMI] = ACTIONS(2500), + [anon_sym_macro_rules_BANG] = ACTIONS(2500), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_LBRACK] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2500), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_STAR] = ACTIONS(2500), + [anon_sym_u8] = ACTIONS(2502), + [anon_sym_i8] = ACTIONS(2502), + [anon_sym_u16] = ACTIONS(2502), + [anon_sym_i16] = ACTIONS(2502), + [anon_sym_u32] = ACTIONS(2502), + [anon_sym_i32] = ACTIONS(2502), + [anon_sym_u64] = ACTIONS(2502), + [anon_sym_i64] = ACTIONS(2502), + [anon_sym_u128] = ACTIONS(2502), + [anon_sym_i128] = ACTIONS(2502), + [anon_sym_isize] = ACTIONS(2502), + [anon_sym_usize] = ACTIONS(2502), + [anon_sym_f32] = ACTIONS(2502), + [anon_sym_f64] = ACTIONS(2502), + [anon_sym_bool] = ACTIONS(2502), + [anon_sym_str] = ACTIONS(2502), + [anon_sym_char] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2500), + [anon_sym_BANG] = ACTIONS(2500), + [anon_sym_AMP] = ACTIONS(2500), + [anon_sym_PIPE] = ACTIONS(2500), + [anon_sym_LT] = ACTIONS(2500), + [anon_sym_DOT_DOT] = ACTIONS(2500), + [anon_sym_COLON_COLON] = ACTIONS(2500), + [anon_sym_POUND] = ACTIONS(2500), + [anon_sym_SQUOTE] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(2502), + [anon_sym_become] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_default] = ACTIONS(2502), + [anon_sym_enum] = ACTIONS(2502), + [anon_sym_fn] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_gen] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_impl] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_mod] = ACTIONS(2502), + [anon_sym_pub] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_static] = ACTIONS(2502), + [anon_sym_struct] = ACTIONS(2502), + [anon_sym_trait] = ACTIONS(2502), + [anon_sym_type] = ACTIONS(2502), + [anon_sym_union] = ACTIONS(2502), + [anon_sym_unsafe] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_raw] = ACTIONS(2502), + [anon_sym_yield] = ACTIONS(2502), + [anon_sym_move] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [sym_integer_literal] = ACTIONS(2500), + [aux_sym_string_literal_token1] = ACTIONS(2500), + [sym_char_literal] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2502), + [anon_sym_false] = ACTIONS(2502), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2502), + [sym_super] = ACTIONS(2502), + [sym_crate] = ACTIONS(2502), + [sym_metavariable] = ACTIONS(2500), + [sym__raw_string_literal_start] = ACTIONS(2500), + [sym_float_literal] = ACTIONS(2500), }, [STATE(671)] = { [sym_line_comment] = STATE(671), [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), + [ts_builtin_sym_end] = ACTIONS(2504), + [sym_identifier] = ACTIONS(2506), + [anon_sym_SEMI] = ACTIONS(2504), + [anon_sym_macro_rules_BANG] = ACTIONS(2504), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_LBRACK] = ACTIONS(2504), + [anon_sym_LBRACE] = ACTIONS(2504), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(2504), + [anon_sym_u8] = ACTIONS(2506), + [anon_sym_i8] = ACTIONS(2506), + [anon_sym_u16] = ACTIONS(2506), + [anon_sym_i16] = ACTIONS(2506), + [anon_sym_u32] = ACTIONS(2506), + [anon_sym_i32] = ACTIONS(2506), + [anon_sym_u64] = ACTIONS(2506), + [anon_sym_i64] = ACTIONS(2506), + [anon_sym_u128] = ACTIONS(2506), + [anon_sym_i128] = ACTIONS(2506), + [anon_sym_isize] = ACTIONS(2506), + [anon_sym_usize] = ACTIONS(2506), + [anon_sym_f32] = ACTIONS(2506), + [anon_sym_f64] = ACTIONS(2506), + [anon_sym_bool] = ACTIONS(2506), + [anon_sym_str] = ACTIONS(2506), + [anon_sym_char] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(2504), + [anon_sym_AMP] = ACTIONS(2504), + [anon_sym_PIPE] = ACTIONS(2504), + [anon_sym_LT] = ACTIONS(2504), + [anon_sym_DOT_DOT] = ACTIONS(2504), + [anon_sym_COLON_COLON] = ACTIONS(2504), + [anon_sym_POUND] = ACTIONS(2504), + [anon_sym_SQUOTE] = ACTIONS(2506), + [anon_sym_async] = ACTIONS(2506), + [anon_sym_become] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_default] = ACTIONS(2506), + [anon_sym_enum] = ACTIONS(2506), + [anon_sym_fn] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_gen] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_impl] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_mod] = ACTIONS(2506), + [anon_sym_pub] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_static] = ACTIONS(2506), + [anon_sym_struct] = ACTIONS(2506), + [anon_sym_trait] = ACTIONS(2506), + [anon_sym_type] = ACTIONS(2506), + [anon_sym_union] = ACTIONS(2506), + [anon_sym_unsafe] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_raw] = ACTIONS(2506), + [anon_sym_yield] = ACTIONS(2506), + [anon_sym_move] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [sym_integer_literal] = ACTIONS(2504), + [aux_sym_string_literal_token1] = ACTIONS(2504), + [sym_char_literal] = ACTIONS(2504), + [anon_sym_true] = ACTIONS(2506), + [anon_sym_false] = ACTIONS(2506), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2506), + [sym_super] = ACTIONS(2506), + [sym_crate] = ACTIONS(2506), + [sym_metavariable] = ACTIONS(2504), + [sym__raw_string_literal_start] = ACTIONS(2504), + [sym_float_literal] = ACTIONS(2504), }, [STATE(672)] = { [sym_line_comment] = STATE(672), [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2633), - [sym_identifier] = ACTIONS(2635), - [anon_sym_SEMI] = ACTIONS(2633), - [anon_sym_macro_rules_BANG] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(2633), - [anon_sym_RBRACE] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2633), - [anon_sym_u8] = ACTIONS(2635), - [anon_sym_i8] = ACTIONS(2635), - [anon_sym_u16] = ACTIONS(2635), - [anon_sym_i16] = ACTIONS(2635), - [anon_sym_u32] = ACTIONS(2635), - [anon_sym_i32] = ACTIONS(2635), - [anon_sym_u64] = ACTIONS(2635), - [anon_sym_i64] = ACTIONS(2635), - [anon_sym_u128] = ACTIONS(2635), - [anon_sym_i128] = ACTIONS(2635), - [anon_sym_isize] = ACTIONS(2635), - [anon_sym_usize] = ACTIONS(2635), - [anon_sym_f32] = ACTIONS(2635), - [anon_sym_f64] = ACTIONS(2635), - [anon_sym_bool] = ACTIONS(2635), - [anon_sym_str] = ACTIONS(2635), - [anon_sym_char] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2633), - [anon_sym_BANG] = ACTIONS(2633), - [anon_sym_AMP] = ACTIONS(2633), - [anon_sym_PIPE] = ACTIONS(2633), - [anon_sym_LT] = ACTIONS(2633), - [anon_sym_DOT_DOT] = ACTIONS(2633), - [anon_sym_COLON_COLON] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2633), - [anon_sym_SQUOTE] = ACTIONS(2635), - [anon_sym_async] = ACTIONS(2635), - [anon_sym_break] = ACTIONS(2635), - [anon_sym_const] = ACTIONS(2635), - [anon_sym_continue] = ACTIONS(2635), - [anon_sym_default] = ACTIONS(2635), - [anon_sym_enum] = ACTIONS(2635), - [anon_sym_fn] = ACTIONS(2635), - [anon_sym_for] = ACTIONS(2635), - [anon_sym_gen] = ACTIONS(2635), - [anon_sym_if] = ACTIONS(2635), - [anon_sym_impl] = ACTIONS(2635), - [anon_sym_let] = ACTIONS(2635), - [anon_sym_loop] = ACTIONS(2635), - [anon_sym_match] = ACTIONS(2635), - [anon_sym_mod] = ACTIONS(2635), - [anon_sym_pub] = ACTIONS(2635), - [anon_sym_return] = ACTIONS(2635), - [anon_sym_static] = ACTIONS(2635), - [anon_sym_struct] = ACTIONS(2635), - [anon_sym_trait] = ACTIONS(2635), - [anon_sym_type] = ACTIONS(2635), - [anon_sym_union] = ACTIONS(2635), - [anon_sym_unsafe] = ACTIONS(2635), - [anon_sym_use] = ACTIONS(2635), - [anon_sym_while] = ACTIONS(2635), - [anon_sym_extern] = ACTIONS(2635), - [anon_sym_raw] = ACTIONS(2635), - [anon_sym_yield] = ACTIONS(2635), - [anon_sym_move] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [sym_integer_literal] = ACTIONS(2633), - [aux_sym_string_literal_token1] = ACTIONS(2633), - [sym_char_literal] = ACTIONS(2633), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2635), - [sym_super] = ACTIONS(2635), - [sym_crate] = ACTIONS(2635), - [sym_metavariable] = ACTIONS(2633), - [sym__raw_string_literal_start] = ACTIONS(2633), - [sym_float_literal] = ACTIONS(2633), + [ts_builtin_sym_end] = ACTIONS(2508), + [sym_identifier] = ACTIONS(2510), + [anon_sym_SEMI] = ACTIONS(2508), + [anon_sym_macro_rules_BANG] = ACTIONS(2508), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2508), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_STAR] = ACTIONS(2508), + [anon_sym_u8] = ACTIONS(2510), + [anon_sym_i8] = ACTIONS(2510), + [anon_sym_u16] = ACTIONS(2510), + [anon_sym_i16] = ACTIONS(2510), + [anon_sym_u32] = ACTIONS(2510), + [anon_sym_i32] = ACTIONS(2510), + [anon_sym_u64] = ACTIONS(2510), + [anon_sym_i64] = ACTIONS(2510), + [anon_sym_u128] = ACTIONS(2510), + [anon_sym_i128] = ACTIONS(2510), + [anon_sym_isize] = ACTIONS(2510), + [anon_sym_usize] = ACTIONS(2510), + [anon_sym_f32] = ACTIONS(2510), + [anon_sym_f64] = ACTIONS(2510), + [anon_sym_bool] = ACTIONS(2510), + [anon_sym_str] = ACTIONS(2510), + [anon_sym_char] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2508), + [anon_sym_BANG] = ACTIONS(2508), + [anon_sym_AMP] = ACTIONS(2508), + [anon_sym_PIPE] = ACTIONS(2508), + [anon_sym_LT] = ACTIONS(2508), + [anon_sym_DOT_DOT] = ACTIONS(2508), + [anon_sym_COLON_COLON] = ACTIONS(2508), + [anon_sym_POUND] = ACTIONS(2508), + [anon_sym_SQUOTE] = ACTIONS(2510), + [anon_sym_async] = ACTIONS(2510), + [anon_sym_become] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_default] = ACTIONS(2510), + [anon_sym_enum] = ACTIONS(2510), + [anon_sym_fn] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_gen] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_impl] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_mod] = ACTIONS(2510), + [anon_sym_pub] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_static] = ACTIONS(2510), + [anon_sym_struct] = ACTIONS(2510), + [anon_sym_trait] = ACTIONS(2510), + [anon_sym_type] = ACTIONS(2510), + [anon_sym_union] = ACTIONS(2510), + [anon_sym_unsafe] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_raw] = ACTIONS(2510), + [anon_sym_yield] = ACTIONS(2510), + [anon_sym_move] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [sym_integer_literal] = ACTIONS(2508), + [aux_sym_string_literal_token1] = ACTIONS(2508), + [sym_char_literal] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2510), + [sym_super] = ACTIONS(2510), + [sym_crate] = ACTIONS(2510), + [sym_metavariable] = ACTIONS(2508), + [sym__raw_string_literal_start] = ACTIONS(2508), + [sym_float_literal] = ACTIONS(2508), }, [STATE(673)] = { [sym_line_comment] = STATE(673), [sym_block_comment] = STATE(673), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2512), + [sym_identifier] = ACTIONS(2514), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_macro_rules_BANG] = ACTIONS(2512), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_LBRACK] = ACTIONS(2512), + [anon_sym_LBRACE] = ACTIONS(2512), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_STAR] = ACTIONS(2512), + [anon_sym_u8] = ACTIONS(2514), + [anon_sym_i8] = ACTIONS(2514), + [anon_sym_u16] = ACTIONS(2514), + [anon_sym_i16] = ACTIONS(2514), + [anon_sym_u32] = ACTIONS(2514), + [anon_sym_i32] = ACTIONS(2514), + [anon_sym_u64] = ACTIONS(2514), + [anon_sym_i64] = ACTIONS(2514), + [anon_sym_u128] = ACTIONS(2514), + [anon_sym_i128] = ACTIONS(2514), + [anon_sym_isize] = ACTIONS(2514), + [anon_sym_usize] = ACTIONS(2514), + [anon_sym_f32] = ACTIONS(2514), + [anon_sym_f64] = ACTIONS(2514), + [anon_sym_bool] = ACTIONS(2514), + [anon_sym_str] = ACTIONS(2514), + [anon_sym_char] = ACTIONS(2514), + [anon_sym_DASH] = ACTIONS(2512), + [anon_sym_BANG] = ACTIONS(2512), + [anon_sym_AMP] = ACTIONS(2512), + [anon_sym_PIPE] = ACTIONS(2512), + [anon_sym_LT] = ACTIONS(2512), + [anon_sym_DOT_DOT] = ACTIONS(2512), + [anon_sym_COLON_COLON] = ACTIONS(2512), + [anon_sym_POUND] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(2514), + [anon_sym_become] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_const] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_default] = ACTIONS(2514), + [anon_sym_enum] = ACTIONS(2514), + [anon_sym_fn] = ACTIONS(2514), + [anon_sym_for] = ACTIONS(2514), + [anon_sym_gen] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_impl] = ACTIONS(2514), + [anon_sym_let] = ACTIONS(2514), + [anon_sym_loop] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_mod] = ACTIONS(2514), + [anon_sym_pub] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_struct] = ACTIONS(2514), + [anon_sym_trait] = ACTIONS(2514), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_union] = ACTIONS(2514), + [anon_sym_unsafe] = ACTIONS(2514), + [anon_sym_use] = ACTIONS(2514), + [anon_sym_while] = ACTIONS(2514), + [anon_sym_extern] = ACTIONS(2514), + [anon_sym_raw] = ACTIONS(2514), + [anon_sym_yield] = ACTIONS(2514), + [anon_sym_move] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [sym_integer_literal] = ACTIONS(2512), + [aux_sym_string_literal_token1] = ACTIONS(2512), + [sym_char_literal] = ACTIONS(2512), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2514), + [sym_super] = ACTIONS(2514), + [sym_crate] = ACTIONS(2514), + [sym_metavariable] = ACTIONS(2512), + [sym__raw_string_literal_start] = ACTIONS(2512), + [sym_float_literal] = ACTIONS(2512), }, [STATE(674)] = { [sym_line_comment] = STATE(674), [sym_block_comment] = STATE(674), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2516), + [sym_identifier] = ACTIONS(2518), + [anon_sym_SEMI] = ACTIONS(2516), + [anon_sym_macro_rules_BANG] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_STAR] = ACTIONS(2516), + [anon_sym_u8] = ACTIONS(2518), + [anon_sym_i8] = ACTIONS(2518), + [anon_sym_u16] = ACTIONS(2518), + [anon_sym_i16] = ACTIONS(2518), + [anon_sym_u32] = ACTIONS(2518), + [anon_sym_i32] = ACTIONS(2518), + [anon_sym_u64] = ACTIONS(2518), + [anon_sym_i64] = ACTIONS(2518), + [anon_sym_u128] = ACTIONS(2518), + [anon_sym_i128] = ACTIONS(2518), + [anon_sym_isize] = ACTIONS(2518), + [anon_sym_usize] = ACTIONS(2518), + [anon_sym_f32] = ACTIONS(2518), + [anon_sym_f64] = ACTIONS(2518), + [anon_sym_bool] = ACTIONS(2518), + [anon_sym_str] = ACTIONS(2518), + [anon_sym_char] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_BANG] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_LT] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2516), + [anon_sym_COLON_COLON] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(2516), + [anon_sym_SQUOTE] = ACTIONS(2518), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_become] = ACTIONS(2518), + [anon_sym_break] = ACTIONS(2518), + [anon_sym_const] = ACTIONS(2518), + [anon_sym_continue] = ACTIONS(2518), + [anon_sym_default] = ACTIONS(2518), + [anon_sym_enum] = ACTIONS(2518), + [anon_sym_fn] = ACTIONS(2518), + [anon_sym_for] = ACTIONS(2518), + [anon_sym_gen] = ACTIONS(2518), + [anon_sym_if] = ACTIONS(2518), + [anon_sym_impl] = ACTIONS(2518), + [anon_sym_let] = ACTIONS(2518), + [anon_sym_loop] = ACTIONS(2518), + [anon_sym_match] = ACTIONS(2518), + [anon_sym_mod] = ACTIONS(2518), + [anon_sym_pub] = ACTIONS(2518), + [anon_sym_return] = ACTIONS(2518), + [anon_sym_static] = ACTIONS(2518), + [anon_sym_struct] = ACTIONS(2518), + [anon_sym_trait] = ACTIONS(2518), + [anon_sym_type] = ACTIONS(2518), + [anon_sym_union] = ACTIONS(2518), + [anon_sym_unsafe] = ACTIONS(2518), + [anon_sym_use] = ACTIONS(2518), + [anon_sym_while] = ACTIONS(2518), + [anon_sym_extern] = ACTIONS(2518), + [anon_sym_raw] = ACTIONS(2518), + [anon_sym_yield] = ACTIONS(2518), + [anon_sym_move] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2518), + [sym_integer_literal] = ACTIONS(2516), + [aux_sym_string_literal_token1] = ACTIONS(2516), + [sym_char_literal] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2518), + [sym_super] = ACTIONS(2518), + [sym_crate] = ACTIONS(2518), + [sym_metavariable] = ACTIONS(2516), + [sym__raw_string_literal_start] = ACTIONS(2516), + [sym_float_literal] = ACTIONS(2516), }, [STATE(675)] = { [sym_line_comment] = STATE(675), [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_gen] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_raw] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym__raw_string_literal_start] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), + [ts_builtin_sym_end] = ACTIONS(2520), + [sym_identifier] = ACTIONS(2522), + [anon_sym_SEMI] = ACTIONS(2520), + [anon_sym_macro_rules_BANG] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_LBRACK] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_STAR] = ACTIONS(2520), + [anon_sym_u8] = ACTIONS(2522), + [anon_sym_i8] = ACTIONS(2522), + [anon_sym_u16] = ACTIONS(2522), + [anon_sym_i16] = ACTIONS(2522), + [anon_sym_u32] = ACTIONS(2522), + [anon_sym_i32] = ACTIONS(2522), + [anon_sym_u64] = ACTIONS(2522), + [anon_sym_i64] = ACTIONS(2522), + [anon_sym_u128] = ACTIONS(2522), + [anon_sym_i128] = ACTIONS(2522), + [anon_sym_isize] = ACTIONS(2522), + [anon_sym_usize] = ACTIONS(2522), + [anon_sym_f32] = ACTIONS(2522), + [anon_sym_f64] = ACTIONS(2522), + [anon_sym_bool] = ACTIONS(2522), + [anon_sym_str] = ACTIONS(2522), + [anon_sym_char] = ACTIONS(2522), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_BANG] = ACTIONS(2520), + [anon_sym_AMP] = ACTIONS(2520), + [anon_sym_PIPE] = ACTIONS(2520), + [anon_sym_LT] = ACTIONS(2520), + [anon_sym_DOT_DOT] = ACTIONS(2520), + [anon_sym_COLON_COLON] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(2520), + [anon_sym_SQUOTE] = ACTIONS(2522), + [anon_sym_async] = ACTIONS(2522), + [anon_sym_become] = ACTIONS(2522), + [anon_sym_break] = ACTIONS(2522), + [anon_sym_const] = ACTIONS(2522), + [anon_sym_continue] = ACTIONS(2522), + [anon_sym_default] = ACTIONS(2522), + [anon_sym_enum] = ACTIONS(2522), + [anon_sym_fn] = ACTIONS(2522), + [anon_sym_for] = ACTIONS(2522), + [anon_sym_gen] = ACTIONS(2522), + [anon_sym_if] = ACTIONS(2522), + [anon_sym_impl] = ACTIONS(2522), + [anon_sym_let] = ACTIONS(2522), + [anon_sym_loop] = ACTIONS(2522), + [anon_sym_match] = ACTIONS(2522), + [anon_sym_mod] = ACTIONS(2522), + [anon_sym_pub] = ACTIONS(2522), + [anon_sym_return] = ACTIONS(2522), + [anon_sym_static] = ACTIONS(2522), + [anon_sym_struct] = ACTIONS(2522), + [anon_sym_trait] = ACTIONS(2522), + [anon_sym_type] = ACTIONS(2522), + [anon_sym_union] = ACTIONS(2522), + [anon_sym_unsafe] = ACTIONS(2522), + [anon_sym_use] = ACTIONS(2522), + [anon_sym_while] = ACTIONS(2522), + [anon_sym_extern] = ACTIONS(2522), + [anon_sym_raw] = ACTIONS(2522), + [anon_sym_yield] = ACTIONS(2522), + [anon_sym_move] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2522), + [sym_integer_literal] = ACTIONS(2520), + [aux_sym_string_literal_token1] = ACTIONS(2520), + [sym_char_literal] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2522), + [sym_super] = ACTIONS(2522), + [sym_crate] = ACTIONS(2522), + [sym_metavariable] = ACTIONS(2520), + [sym__raw_string_literal_start] = ACTIONS(2520), + [sym_float_literal] = ACTIONS(2520), }, [STATE(676)] = { [sym_line_comment] = STATE(676), [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_gen] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_raw] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(2524), + [sym_identifier] = ACTIONS(2526), + [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_macro_rules_BANG] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_LBRACK] = ACTIONS(2524), + [anon_sym_LBRACE] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_STAR] = ACTIONS(2524), + [anon_sym_u8] = ACTIONS(2526), + [anon_sym_i8] = ACTIONS(2526), + [anon_sym_u16] = ACTIONS(2526), + [anon_sym_i16] = ACTIONS(2526), + [anon_sym_u32] = ACTIONS(2526), + [anon_sym_i32] = ACTIONS(2526), + [anon_sym_u64] = ACTIONS(2526), + [anon_sym_i64] = ACTIONS(2526), + [anon_sym_u128] = ACTIONS(2526), + [anon_sym_i128] = ACTIONS(2526), + [anon_sym_isize] = ACTIONS(2526), + [anon_sym_usize] = ACTIONS(2526), + [anon_sym_f32] = ACTIONS(2526), + [anon_sym_f64] = ACTIONS(2526), + [anon_sym_bool] = ACTIONS(2526), + [anon_sym_str] = ACTIONS(2526), + [anon_sym_char] = ACTIONS(2526), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_BANG] = ACTIONS(2524), + [anon_sym_AMP] = ACTIONS(2524), + [anon_sym_PIPE] = ACTIONS(2524), + [anon_sym_LT] = ACTIONS(2524), + [anon_sym_DOT_DOT] = ACTIONS(2524), + [anon_sym_COLON_COLON] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(2524), + [anon_sym_SQUOTE] = ACTIONS(2526), + [anon_sym_async] = ACTIONS(2526), + [anon_sym_become] = ACTIONS(2526), + [anon_sym_break] = ACTIONS(2526), + [anon_sym_const] = ACTIONS(2526), + [anon_sym_continue] = ACTIONS(2526), + [anon_sym_default] = ACTIONS(2526), + [anon_sym_enum] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2526), + [anon_sym_for] = ACTIONS(2526), + [anon_sym_gen] = ACTIONS(2526), + [anon_sym_if] = ACTIONS(2526), + [anon_sym_impl] = ACTIONS(2526), + [anon_sym_let] = ACTIONS(2526), + [anon_sym_loop] = ACTIONS(2526), + [anon_sym_match] = ACTIONS(2526), + [anon_sym_mod] = ACTIONS(2526), + [anon_sym_pub] = ACTIONS(2526), + [anon_sym_return] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(2526), + [anon_sym_struct] = ACTIONS(2526), + [anon_sym_trait] = ACTIONS(2526), + [anon_sym_type] = ACTIONS(2526), + [anon_sym_union] = ACTIONS(2526), + [anon_sym_unsafe] = ACTIONS(2526), + [anon_sym_use] = ACTIONS(2526), + [anon_sym_while] = ACTIONS(2526), + [anon_sym_extern] = ACTIONS(2526), + [anon_sym_raw] = ACTIONS(2526), + [anon_sym_yield] = ACTIONS(2526), + [anon_sym_move] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2526), + [sym_integer_literal] = ACTIONS(2524), + [aux_sym_string_literal_token1] = ACTIONS(2524), + [sym_char_literal] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2526), + [sym_super] = ACTIONS(2526), + [sym_crate] = ACTIONS(2526), + [sym_metavariable] = ACTIONS(2524), + [sym__raw_string_literal_start] = ACTIONS(2524), + [sym_float_literal] = ACTIONS(2524), }, [STATE(677)] = { [sym_line_comment] = STATE(677), [sym_block_comment] = STATE(677), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [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_become] = 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_gen] = 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_raw] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), }, [STATE(678)] = { [sym_line_comment] = STATE(678), [sym_block_comment] = STATE(678), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2532), + [sym_identifier] = ACTIONS(2534), + [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_macro_rules_BANG] = ACTIONS(2532), + [anon_sym_LPAREN] = ACTIONS(2532), + [anon_sym_LBRACK] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2532), + [anon_sym_RBRACE] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2532), + [anon_sym_u8] = ACTIONS(2534), + [anon_sym_i8] = ACTIONS(2534), + [anon_sym_u16] = ACTIONS(2534), + [anon_sym_i16] = ACTIONS(2534), + [anon_sym_u32] = ACTIONS(2534), + [anon_sym_i32] = ACTIONS(2534), + [anon_sym_u64] = ACTIONS(2534), + [anon_sym_i64] = ACTIONS(2534), + [anon_sym_u128] = ACTIONS(2534), + [anon_sym_i128] = ACTIONS(2534), + [anon_sym_isize] = ACTIONS(2534), + [anon_sym_usize] = ACTIONS(2534), + [anon_sym_f32] = ACTIONS(2534), + [anon_sym_f64] = ACTIONS(2534), + [anon_sym_bool] = ACTIONS(2534), + [anon_sym_str] = ACTIONS(2534), + [anon_sym_char] = ACTIONS(2534), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_BANG] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2532), + [anon_sym_PIPE] = ACTIONS(2532), + [anon_sym_LT] = ACTIONS(2532), + [anon_sym_DOT_DOT] = ACTIONS(2532), + [anon_sym_COLON_COLON] = ACTIONS(2532), + [anon_sym_POUND] = ACTIONS(2532), + [anon_sym_SQUOTE] = ACTIONS(2534), + [anon_sym_async] = ACTIONS(2534), + [anon_sym_become] = ACTIONS(2534), + [anon_sym_break] = ACTIONS(2534), + [anon_sym_const] = ACTIONS(2534), + [anon_sym_continue] = ACTIONS(2534), + [anon_sym_default] = ACTIONS(2534), + [anon_sym_enum] = ACTIONS(2534), + [anon_sym_fn] = ACTIONS(2534), + [anon_sym_for] = ACTIONS(2534), + [anon_sym_gen] = ACTIONS(2534), + [anon_sym_if] = ACTIONS(2534), + [anon_sym_impl] = ACTIONS(2534), + [anon_sym_let] = ACTIONS(2534), + [anon_sym_loop] = ACTIONS(2534), + [anon_sym_match] = ACTIONS(2534), + [anon_sym_mod] = ACTIONS(2534), + [anon_sym_pub] = ACTIONS(2534), + [anon_sym_return] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(2534), + [anon_sym_struct] = ACTIONS(2534), + [anon_sym_trait] = ACTIONS(2534), + [anon_sym_type] = ACTIONS(2534), + [anon_sym_union] = ACTIONS(2534), + [anon_sym_unsafe] = ACTIONS(2534), + [anon_sym_use] = ACTIONS(2534), + [anon_sym_while] = ACTIONS(2534), + [anon_sym_extern] = ACTIONS(2534), + [anon_sym_raw] = ACTIONS(2534), + [anon_sym_yield] = ACTIONS(2534), + [anon_sym_move] = ACTIONS(2534), + [anon_sym_try] = ACTIONS(2534), + [sym_integer_literal] = ACTIONS(2532), + [aux_sym_string_literal_token1] = ACTIONS(2532), + [sym_char_literal] = ACTIONS(2532), + [anon_sym_true] = ACTIONS(2534), + [anon_sym_false] = ACTIONS(2534), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2534), + [sym_super] = ACTIONS(2534), + [sym_crate] = ACTIONS(2534), + [sym_metavariable] = ACTIONS(2532), + [sym__raw_string_literal_start] = ACTIONS(2532), + [sym_float_literal] = ACTIONS(2532), }, [STATE(679)] = { [sym_line_comment] = STATE(679), [sym_block_comment] = STATE(679), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2536), + [sym_identifier] = ACTIONS(2538), + [anon_sym_SEMI] = ACTIONS(2536), + [anon_sym_macro_rules_BANG] = ACTIONS(2536), + [anon_sym_LPAREN] = ACTIONS(2536), + [anon_sym_LBRACK] = ACTIONS(2536), + [anon_sym_LBRACE] = ACTIONS(2536), + [anon_sym_RBRACE] = ACTIONS(2536), + [anon_sym_STAR] = ACTIONS(2536), + [anon_sym_u8] = ACTIONS(2538), + [anon_sym_i8] = ACTIONS(2538), + [anon_sym_u16] = ACTIONS(2538), + [anon_sym_i16] = ACTIONS(2538), + [anon_sym_u32] = ACTIONS(2538), + [anon_sym_i32] = ACTIONS(2538), + [anon_sym_u64] = ACTIONS(2538), + [anon_sym_i64] = ACTIONS(2538), + [anon_sym_u128] = ACTIONS(2538), + [anon_sym_i128] = ACTIONS(2538), + [anon_sym_isize] = ACTIONS(2538), + [anon_sym_usize] = ACTIONS(2538), + [anon_sym_f32] = ACTIONS(2538), + [anon_sym_f64] = ACTIONS(2538), + [anon_sym_bool] = ACTIONS(2538), + [anon_sym_str] = ACTIONS(2538), + [anon_sym_char] = ACTIONS(2538), + [anon_sym_DASH] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(2536), + [anon_sym_AMP] = ACTIONS(2536), + [anon_sym_PIPE] = ACTIONS(2536), + [anon_sym_LT] = ACTIONS(2536), + [anon_sym_DOT_DOT] = ACTIONS(2536), + [anon_sym_COLON_COLON] = ACTIONS(2536), + [anon_sym_POUND] = ACTIONS(2536), + [anon_sym_SQUOTE] = ACTIONS(2538), + [anon_sym_async] = ACTIONS(2538), + [anon_sym_become] = ACTIONS(2538), + [anon_sym_break] = ACTIONS(2538), + [anon_sym_const] = ACTIONS(2538), + [anon_sym_continue] = ACTIONS(2538), + [anon_sym_default] = ACTIONS(2538), + [anon_sym_enum] = ACTIONS(2538), + [anon_sym_fn] = ACTIONS(2538), + [anon_sym_for] = ACTIONS(2538), + [anon_sym_gen] = ACTIONS(2538), + [anon_sym_if] = ACTIONS(2538), + [anon_sym_impl] = ACTIONS(2538), + [anon_sym_let] = ACTIONS(2538), + [anon_sym_loop] = ACTIONS(2538), + [anon_sym_match] = ACTIONS(2538), + [anon_sym_mod] = ACTIONS(2538), + [anon_sym_pub] = ACTIONS(2538), + [anon_sym_return] = ACTIONS(2538), + [anon_sym_static] = ACTIONS(2538), + [anon_sym_struct] = ACTIONS(2538), + [anon_sym_trait] = ACTIONS(2538), + [anon_sym_type] = ACTIONS(2538), + [anon_sym_union] = ACTIONS(2538), + [anon_sym_unsafe] = ACTIONS(2538), + [anon_sym_use] = ACTIONS(2538), + [anon_sym_while] = ACTIONS(2538), + [anon_sym_extern] = ACTIONS(2538), + [anon_sym_raw] = ACTIONS(2538), + [anon_sym_yield] = ACTIONS(2538), + [anon_sym_move] = ACTIONS(2538), + [anon_sym_try] = ACTIONS(2538), + [sym_integer_literal] = ACTIONS(2536), + [aux_sym_string_literal_token1] = ACTIONS(2536), + [sym_char_literal] = ACTIONS(2536), + [anon_sym_true] = ACTIONS(2538), + [anon_sym_false] = ACTIONS(2538), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2538), + [sym_super] = ACTIONS(2538), + [sym_crate] = ACTIONS(2538), + [sym_metavariable] = ACTIONS(2536), + [sym__raw_string_literal_start] = ACTIONS(2536), + [sym_float_literal] = ACTIONS(2536), }, [STATE(680)] = { [sym_line_comment] = STATE(680), [sym_block_comment] = STATE(680), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2540), + [sym_identifier] = ACTIONS(2542), + [anon_sym_SEMI] = ACTIONS(2540), + [anon_sym_macro_rules_BANG] = ACTIONS(2540), + [anon_sym_LPAREN] = ACTIONS(2540), + [anon_sym_LBRACK] = ACTIONS(2540), + [anon_sym_LBRACE] = ACTIONS(2540), + [anon_sym_RBRACE] = ACTIONS(2540), + [anon_sym_STAR] = ACTIONS(2540), + [anon_sym_u8] = ACTIONS(2542), + [anon_sym_i8] = ACTIONS(2542), + [anon_sym_u16] = ACTIONS(2542), + [anon_sym_i16] = ACTIONS(2542), + [anon_sym_u32] = ACTIONS(2542), + [anon_sym_i32] = ACTIONS(2542), + [anon_sym_u64] = ACTIONS(2542), + [anon_sym_i64] = ACTIONS(2542), + [anon_sym_u128] = ACTIONS(2542), + [anon_sym_i128] = ACTIONS(2542), + [anon_sym_isize] = ACTIONS(2542), + [anon_sym_usize] = ACTIONS(2542), + [anon_sym_f32] = ACTIONS(2542), + [anon_sym_f64] = ACTIONS(2542), + [anon_sym_bool] = ACTIONS(2542), + [anon_sym_str] = ACTIONS(2542), + [anon_sym_char] = ACTIONS(2542), + [anon_sym_DASH] = ACTIONS(2540), + [anon_sym_BANG] = ACTIONS(2540), + [anon_sym_AMP] = ACTIONS(2540), + [anon_sym_PIPE] = ACTIONS(2540), + [anon_sym_LT] = ACTIONS(2540), + [anon_sym_DOT_DOT] = ACTIONS(2540), + [anon_sym_COLON_COLON] = ACTIONS(2540), + [anon_sym_POUND] = ACTIONS(2540), + [anon_sym_SQUOTE] = ACTIONS(2542), + [anon_sym_async] = ACTIONS(2542), + [anon_sym_become] = ACTIONS(2542), + [anon_sym_break] = ACTIONS(2542), + [anon_sym_const] = ACTIONS(2542), + [anon_sym_continue] = ACTIONS(2542), + [anon_sym_default] = ACTIONS(2542), + [anon_sym_enum] = ACTIONS(2542), + [anon_sym_fn] = ACTIONS(2542), + [anon_sym_for] = ACTIONS(2542), + [anon_sym_gen] = ACTIONS(2542), + [anon_sym_if] = ACTIONS(2542), + [anon_sym_impl] = ACTIONS(2542), + [anon_sym_let] = ACTIONS(2542), + [anon_sym_loop] = ACTIONS(2542), + [anon_sym_match] = ACTIONS(2542), + [anon_sym_mod] = ACTIONS(2542), + [anon_sym_pub] = ACTIONS(2542), + [anon_sym_return] = ACTIONS(2542), + [anon_sym_static] = ACTIONS(2542), + [anon_sym_struct] = ACTIONS(2542), + [anon_sym_trait] = ACTIONS(2542), + [anon_sym_type] = ACTIONS(2542), + [anon_sym_union] = ACTIONS(2542), + [anon_sym_unsafe] = ACTIONS(2542), + [anon_sym_use] = ACTIONS(2542), + [anon_sym_while] = ACTIONS(2542), + [anon_sym_extern] = ACTIONS(2542), + [anon_sym_raw] = ACTIONS(2542), + [anon_sym_yield] = ACTIONS(2542), + [anon_sym_move] = ACTIONS(2542), + [anon_sym_try] = ACTIONS(2542), + [sym_integer_literal] = ACTIONS(2540), + [aux_sym_string_literal_token1] = ACTIONS(2540), + [sym_char_literal] = ACTIONS(2540), + [anon_sym_true] = ACTIONS(2542), + [anon_sym_false] = ACTIONS(2542), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2542), + [sym_super] = ACTIONS(2542), + [sym_crate] = ACTIONS(2542), + [sym_metavariable] = ACTIONS(2540), + [sym__raw_string_literal_start] = ACTIONS(2540), + [sym_float_literal] = ACTIONS(2540), }, [STATE(681)] = { [sym_line_comment] = STATE(681), [sym_block_comment] = STATE(681), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2544), + [sym_identifier] = ACTIONS(2546), + [anon_sym_SEMI] = ACTIONS(2544), + [anon_sym_macro_rules_BANG] = ACTIONS(2544), + [anon_sym_LPAREN] = ACTIONS(2544), + [anon_sym_LBRACK] = ACTIONS(2544), + [anon_sym_LBRACE] = ACTIONS(2544), + [anon_sym_RBRACE] = ACTIONS(2544), + [anon_sym_STAR] = ACTIONS(2544), + [anon_sym_u8] = ACTIONS(2546), + [anon_sym_i8] = ACTIONS(2546), + [anon_sym_u16] = ACTIONS(2546), + [anon_sym_i16] = ACTIONS(2546), + [anon_sym_u32] = ACTIONS(2546), + [anon_sym_i32] = ACTIONS(2546), + [anon_sym_u64] = ACTIONS(2546), + [anon_sym_i64] = ACTIONS(2546), + [anon_sym_u128] = ACTIONS(2546), + [anon_sym_i128] = ACTIONS(2546), + [anon_sym_isize] = ACTIONS(2546), + [anon_sym_usize] = ACTIONS(2546), + [anon_sym_f32] = ACTIONS(2546), + [anon_sym_f64] = ACTIONS(2546), + [anon_sym_bool] = ACTIONS(2546), + [anon_sym_str] = ACTIONS(2546), + [anon_sym_char] = ACTIONS(2546), + [anon_sym_DASH] = ACTIONS(2544), + [anon_sym_BANG] = ACTIONS(2544), + [anon_sym_AMP] = ACTIONS(2544), + [anon_sym_PIPE] = ACTIONS(2544), + [anon_sym_LT] = ACTIONS(2544), + [anon_sym_DOT_DOT] = ACTIONS(2544), + [anon_sym_COLON_COLON] = ACTIONS(2544), + [anon_sym_POUND] = ACTIONS(2544), + [anon_sym_SQUOTE] = ACTIONS(2546), + [anon_sym_async] = ACTIONS(2546), + [anon_sym_become] = ACTIONS(2546), + [anon_sym_break] = ACTIONS(2546), + [anon_sym_const] = ACTIONS(2546), + [anon_sym_continue] = ACTIONS(2546), + [anon_sym_default] = ACTIONS(2546), + [anon_sym_enum] = ACTIONS(2546), + [anon_sym_fn] = ACTIONS(2546), + [anon_sym_for] = ACTIONS(2546), + [anon_sym_gen] = ACTIONS(2546), + [anon_sym_if] = ACTIONS(2546), + [anon_sym_impl] = ACTIONS(2546), + [anon_sym_let] = ACTIONS(2546), + [anon_sym_loop] = ACTIONS(2546), + [anon_sym_match] = ACTIONS(2546), + [anon_sym_mod] = ACTIONS(2546), + [anon_sym_pub] = ACTIONS(2546), + [anon_sym_return] = ACTIONS(2546), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_struct] = ACTIONS(2546), + [anon_sym_trait] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_union] = ACTIONS(2546), + [anon_sym_unsafe] = ACTIONS(2546), + [anon_sym_use] = ACTIONS(2546), + [anon_sym_while] = ACTIONS(2546), + [anon_sym_extern] = ACTIONS(2546), + [anon_sym_raw] = ACTIONS(2546), + [anon_sym_yield] = ACTIONS(2546), + [anon_sym_move] = ACTIONS(2546), + [anon_sym_try] = ACTIONS(2546), + [sym_integer_literal] = ACTIONS(2544), + [aux_sym_string_literal_token1] = ACTIONS(2544), + [sym_char_literal] = ACTIONS(2544), + [anon_sym_true] = ACTIONS(2546), + [anon_sym_false] = ACTIONS(2546), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2546), + [sym_super] = ACTIONS(2546), + [sym_crate] = ACTIONS(2546), + [sym_metavariable] = ACTIONS(2544), + [sym__raw_string_literal_start] = ACTIONS(2544), + [sym_float_literal] = ACTIONS(2544), }, [STATE(682)] = { [sym_line_comment] = STATE(682), [sym_block_comment] = STATE(682), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2548), + [sym_identifier] = ACTIONS(2550), + [anon_sym_SEMI] = ACTIONS(2548), + [anon_sym_macro_rules_BANG] = ACTIONS(2548), + [anon_sym_LPAREN] = ACTIONS(2548), + [anon_sym_LBRACK] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2548), + [anon_sym_RBRACE] = ACTIONS(2548), + [anon_sym_STAR] = ACTIONS(2548), + [anon_sym_u8] = ACTIONS(2550), + [anon_sym_i8] = ACTIONS(2550), + [anon_sym_u16] = ACTIONS(2550), + [anon_sym_i16] = ACTIONS(2550), + [anon_sym_u32] = ACTIONS(2550), + [anon_sym_i32] = ACTIONS(2550), + [anon_sym_u64] = ACTIONS(2550), + [anon_sym_i64] = ACTIONS(2550), + [anon_sym_u128] = ACTIONS(2550), + [anon_sym_i128] = ACTIONS(2550), + [anon_sym_isize] = ACTIONS(2550), + [anon_sym_usize] = ACTIONS(2550), + [anon_sym_f32] = ACTIONS(2550), + [anon_sym_f64] = ACTIONS(2550), + [anon_sym_bool] = ACTIONS(2550), + [anon_sym_str] = ACTIONS(2550), + [anon_sym_char] = ACTIONS(2550), + [anon_sym_DASH] = ACTIONS(2548), + [anon_sym_BANG] = ACTIONS(2548), + [anon_sym_AMP] = ACTIONS(2548), + [anon_sym_PIPE] = ACTIONS(2548), + [anon_sym_LT] = ACTIONS(2548), + [anon_sym_DOT_DOT] = ACTIONS(2548), + [anon_sym_COLON_COLON] = ACTIONS(2548), + [anon_sym_POUND] = ACTIONS(2548), + [anon_sym_SQUOTE] = ACTIONS(2550), + [anon_sym_async] = ACTIONS(2550), + [anon_sym_become] = ACTIONS(2550), + [anon_sym_break] = ACTIONS(2550), + [anon_sym_const] = ACTIONS(2550), + [anon_sym_continue] = ACTIONS(2550), + [anon_sym_default] = ACTIONS(2550), + [anon_sym_enum] = ACTIONS(2550), + [anon_sym_fn] = ACTIONS(2550), + [anon_sym_for] = ACTIONS(2550), + [anon_sym_gen] = ACTIONS(2550), + [anon_sym_if] = ACTIONS(2550), + [anon_sym_impl] = ACTIONS(2550), + [anon_sym_let] = ACTIONS(2550), + [anon_sym_loop] = ACTIONS(2550), + [anon_sym_match] = ACTIONS(2550), + [anon_sym_mod] = ACTIONS(2550), + [anon_sym_pub] = ACTIONS(2550), + [anon_sym_return] = ACTIONS(2550), + [anon_sym_static] = ACTIONS(2550), + [anon_sym_struct] = ACTIONS(2550), + [anon_sym_trait] = ACTIONS(2550), + [anon_sym_type] = ACTIONS(2550), + [anon_sym_union] = ACTIONS(2550), + [anon_sym_unsafe] = ACTIONS(2550), + [anon_sym_use] = ACTIONS(2550), + [anon_sym_while] = ACTIONS(2550), + [anon_sym_extern] = ACTIONS(2550), + [anon_sym_raw] = ACTIONS(2550), + [anon_sym_yield] = ACTIONS(2550), + [anon_sym_move] = ACTIONS(2550), + [anon_sym_try] = ACTIONS(2550), + [sym_integer_literal] = ACTIONS(2548), + [aux_sym_string_literal_token1] = ACTIONS(2548), + [sym_char_literal] = ACTIONS(2548), + [anon_sym_true] = ACTIONS(2550), + [anon_sym_false] = ACTIONS(2550), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2550), + [sym_super] = ACTIONS(2550), + [sym_crate] = ACTIONS(2550), + [sym_metavariable] = ACTIONS(2548), + [sym__raw_string_literal_start] = ACTIONS(2548), + [sym_float_literal] = ACTIONS(2548), }, [STATE(683)] = { [sym_line_comment] = STATE(683), [sym_block_comment] = STATE(683), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2552), + [sym_identifier] = ACTIONS(2554), + [anon_sym_SEMI] = ACTIONS(2552), + [anon_sym_macro_rules_BANG] = ACTIONS(2552), + [anon_sym_LPAREN] = ACTIONS(2552), + [anon_sym_LBRACK] = ACTIONS(2552), + [anon_sym_LBRACE] = ACTIONS(2552), + [anon_sym_RBRACE] = ACTIONS(2552), + [anon_sym_STAR] = ACTIONS(2552), + [anon_sym_u8] = ACTIONS(2554), + [anon_sym_i8] = ACTIONS(2554), + [anon_sym_u16] = ACTIONS(2554), + [anon_sym_i16] = ACTIONS(2554), + [anon_sym_u32] = ACTIONS(2554), + [anon_sym_i32] = ACTIONS(2554), + [anon_sym_u64] = ACTIONS(2554), + [anon_sym_i64] = ACTIONS(2554), + [anon_sym_u128] = ACTIONS(2554), + [anon_sym_i128] = ACTIONS(2554), + [anon_sym_isize] = ACTIONS(2554), + [anon_sym_usize] = ACTIONS(2554), + [anon_sym_f32] = ACTIONS(2554), + [anon_sym_f64] = ACTIONS(2554), + [anon_sym_bool] = ACTIONS(2554), + [anon_sym_str] = ACTIONS(2554), + [anon_sym_char] = ACTIONS(2554), + [anon_sym_DASH] = ACTIONS(2552), + [anon_sym_BANG] = ACTIONS(2552), + [anon_sym_AMP] = ACTIONS(2552), + [anon_sym_PIPE] = ACTIONS(2552), + [anon_sym_LT] = ACTIONS(2552), + [anon_sym_DOT_DOT] = ACTIONS(2552), + [anon_sym_COLON_COLON] = ACTIONS(2552), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_SQUOTE] = ACTIONS(2554), + [anon_sym_async] = ACTIONS(2554), + [anon_sym_become] = ACTIONS(2554), + [anon_sym_break] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2554), + [anon_sym_continue] = ACTIONS(2554), + [anon_sym_default] = ACTIONS(2554), + [anon_sym_enum] = ACTIONS(2554), + [anon_sym_fn] = ACTIONS(2554), + [anon_sym_for] = ACTIONS(2554), + [anon_sym_gen] = ACTIONS(2554), + [anon_sym_if] = ACTIONS(2554), + [anon_sym_impl] = ACTIONS(2554), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_loop] = ACTIONS(2554), + [anon_sym_match] = ACTIONS(2554), + [anon_sym_mod] = ACTIONS(2554), + [anon_sym_pub] = ACTIONS(2554), + [anon_sym_return] = ACTIONS(2554), + [anon_sym_static] = ACTIONS(2554), + [anon_sym_struct] = ACTIONS(2554), + [anon_sym_trait] = ACTIONS(2554), + [anon_sym_type] = ACTIONS(2554), + [anon_sym_union] = ACTIONS(2554), + [anon_sym_unsafe] = ACTIONS(2554), + [anon_sym_use] = ACTIONS(2554), + [anon_sym_while] = ACTIONS(2554), + [anon_sym_extern] = ACTIONS(2554), + [anon_sym_raw] = ACTIONS(2554), + [anon_sym_yield] = ACTIONS(2554), + [anon_sym_move] = ACTIONS(2554), + [anon_sym_try] = ACTIONS(2554), + [sym_integer_literal] = ACTIONS(2552), + [aux_sym_string_literal_token1] = ACTIONS(2552), + [sym_char_literal] = ACTIONS(2552), + [anon_sym_true] = ACTIONS(2554), + [anon_sym_false] = ACTIONS(2554), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2554), + [sym_super] = ACTIONS(2554), + [sym_crate] = ACTIONS(2554), + [sym_metavariable] = ACTIONS(2552), + [sym__raw_string_literal_start] = ACTIONS(2552), + [sym_float_literal] = ACTIONS(2552), }, [STATE(684)] = { [sym_line_comment] = STATE(684), [sym_block_comment] = STATE(684), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2556), + [sym_identifier] = ACTIONS(2558), + [anon_sym_SEMI] = ACTIONS(2556), + [anon_sym_macro_rules_BANG] = ACTIONS(2556), + [anon_sym_LPAREN] = ACTIONS(2556), + [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_LBRACE] = ACTIONS(2556), + [anon_sym_RBRACE] = ACTIONS(2556), + [anon_sym_STAR] = ACTIONS(2556), + [anon_sym_u8] = ACTIONS(2558), + [anon_sym_i8] = ACTIONS(2558), + [anon_sym_u16] = ACTIONS(2558), + [anon_sym_i16] = ACTIONS(2558), + [anon_sym_u32] = ACTIONS(2558), + [anon_sym_i32] = ACTIONS(2558), + [anon_sym_u64] = ACTIONS(2558), + [anon_sym_i64] = ACTIONS(2558), + [anon_sym_u128] = ACTIONS(2558), + [anon_sym_i128] = ACTIONS(2558), + [anon_sym_isize] = ACTIONS(2558), + [anon_sym_usize] = ACTIONS(2558), + [anon_sym_f32] = ACTIONS(2558), + [anon_sym_f64] = ACTIONS(2558), + [anon_sym_bool] = ACTIONS(2558), + [anon_sym_str] = ACTIONS(2558), + [anon_sym_char] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(2556), + [anon_sym_AMP] = ACTIONS(2556), + [anon_sym_PIPE] = ACTIONS(2556), + [anon_sym_LT] = ACTIONS(2556), + [anon_sym_DOT_DOT] = ACTIONS(2556), + [anon_sym_COLON_COLON] = ACTIONS(2556), + [anon_sym_POUND] = ACTIONS(2556), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_async] = ACTIONS(2558), + [anon_sym_become] = ACTIONS(2558), + [anon_sym_break] = ACTIONS(2558), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_continue] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2558), + [anon_sym_enum] = ACTIONS(2558), + [anon_sym_fn] = ACTIONS(2558), + [anon_sym_for] = ACTIONS(2558), + [anon_sym_gen] = ACTIONS(2558), + [anon_sym_if] = ACTIONS(2558), + [anon_sym_impl] = ACTIONS(2558), + [anon_sym_let] = ACTIONS(2558), + [anon_sym_loop] = ACTIONS(2558), + [anon_sym_match] = ACTIONS(2558), + [anon_sym_mod] = ACTIONS(2558), + [anon_sym_pub] = ACTIONS(2558), + [anon_sym_return] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2558), + [anon_sym_struct] = ACTIONS(2558), + [anon_sym_trait] = ACTIONS(2558), + [anon_sym_type] = ACTIONS(2558), + [anon_sym_union] = ACTIONS(2558), + [anon_sym_unsafe] = ACTIONS(2558), + [anon_sym_use] = ACTIONS(2558), + [anon_sym_while] = ACTIONS(2558), + [anon_sym_extern] = ACTIONS(2558), + [anon_sym_raw] = ACTIONS(2558), + [anon_sym_yield] = ACTIONS(2558), + [anon_sym_move] = ACTIONS(2558), + [anon_sym_try] = ACTIONS(2558), + [sym_integer_literal] = ACTIONS(2556), + [aux_sym_string_literal_token1] = ACTIONS(2556), + [sym_char_literal] = ACTIONS(2556), + [anon_sym_true] = ACTIONS(2558), + [anon_sym_false] = ACTIONS(2558), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2558), + [sym_super] = ACTIONS(2558), + [sym_crate] = ACTIONS(2558), + [sym_metavariable] = ACTIONS(2556), + [sym__raw_string_literal_start] = ACTIONS(2556), + [sym_float_literal] = ACTIONS(2556), }, [STATE(685)] = { [sym_line_comment] = STATE(685), [sym_block_comment] = STATE(685), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2560), + [sym_identifier] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2560), + [anon_sym_macro_rules_BANG] = ACTIONS(2560), + [anon_sym_LPAREN] = ACTIONS(2560), + [anon_sym_LBRACK] = ACTIONS(2560), + [anon_sym_LBRACE] = ACTIONS(2560), + [anon_sym_RBRACE] = ACTIONS(2560), + [anon_sym_STAR] = ACTIONS(2560), + [anon_sym_u8] = ACTIONS(2562), + [anon_sym_i8] = ACTIONS(2562), + [anon_sym_u16] = ACTIONS(2562), + [anon_sym_i16] = ACTIONS(2562), + [anon_sym_u32] = ACTIONS(2562), + [anon_sym_i32] = ACTIONS(2562), + [anon_sym_u64] = ACTIONS(2562), + [anon_sym_i64] = ACTIONS(2562), + [anon_sym_u128] = ACTIONS(2562), + [anon_sym_i128] = ACTIONS(2562), + [anon_sym_isize] = ACTIONS(2562), + [anon_sym_usize] = ACTIONS(2562), + [anon_sym_f32] = ACTIONS(2562), + [anon_sym_f64] = ACTIONS(2562), + [anon_sym_bool] = ACTIONS(2562), + [anon_sym_str] = ACTIONS(2562), + [anon_sym_char] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2560), + [anon_sym_BANG] = ACTIONS(2560), + [anon_sym_AMP] = ACTIONS(2560), + [anon_sym_PIPE] = ACTIONS(2560), + [anon_sym_LT] = ACTIONS(2560), + [anon_sym_DOT_DOT] = ACTIONS(2560), + [anon_sym_COLON_COLON] = ACTIONS(2560), + [anon_sym_POUND] = ACTIONS(2560), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2562), + [anon_sym_become] = ACTIONS(2562), + [anon_sym_break] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2562), + [anon_sym_continue] = ACTIONS(2562), + [anon_sym_default] = ACTIONS(2562), + [anon_sym_enum] = ACTIONS(2562), + [anon_sym_fn] = ACTIONS(2562), + [anon_sym_for] = ACTIONS(2562), + [anon_sym_gen] = ACTIONS(2562), + [anon_sym_if] = ACTIONS(2562), + [anon_sym_impl] = ACTIONS(2562), + [anon_sym_let] = ACTIONS(2562), + [anon_sym_loop] = ACTIONS(2562), + [anon_sym_match] = ACTIONS(2562), + [anon_sym_mod] = ACTIONS(2562), + [anon_sym_pub] = ACTIONS(2562), + [anon_sym_return] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_struct] = ACTIONS(2562), + [anon_sym_trait] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_union] = ACTIONS(2562), + [anon_sym_unsafe] = ACTIONS(2562), + [anon_sym_use] = ACTIONS(2562), + [anon_sym_while] = ACTIONS(2562), + [anon_sym_extern] = ACTIONS(2562), + [anon_sym_raw] = ACTIONS(2562), + [anon_sym_yield] = ACTIONS(2562), + [anon_sym_move] = ACTIONS(2562), + [anon_sym_try] = ACTIONS(2562), + [sym_integer_literal] = ACTIONS(2560), + [aux_sym_string_literal_token1] = ACTIONS(2560), + [sym_char_literal] = ACTIONS(2560), + [anon_sym_true] = ACTIONS(2562), + [anon_sym_false] = ACTIONS(2562), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2562), + [sym_super] = ACTIONS(2562), + [sym_crate] = ACTIONS(2562), + [sym_metavariable] = ACTIONS(2560), + [sym__raw_string_literal_start] = ACTIONS(2560), + [sym_float_literal] = ACTIONS(2560), }, [STATE(686)] = { [sym_line_comment] = STATE(686), [sym_block_comment] = STATE(686), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2564), + [sym_identifier] = ACTIONS(2566), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_macro_rules_BANG] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2564), + [anon_sym_LBRACK] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(2564), + [anon_sym_RBRACE] = ACTIONS(2564), + [anon_sym_STAR] = ACTIONS(2564), + [anon_sym_u8] = ACTIONS(2566), + [anon_sym_i8] = ACTIONS(2566), + [anon_sym_u16] = ACTIONS(2566), + [anon_sym_i16] = ACTIONS(2566), + [anon_sym_u32] = ACTIONS(2566), + [anon_sym_i32] = ACTIONS(2566), + [anon_sym_u64] = ACTIONS(2566), + [anon_sym_i64] = ACTIONS(2566), + [anon_sym_u128] = ACTIONS(2566), + [anon_sym_i128] = ACTIONS(2566), + [anon_sym_isize] = ACTIONS(2566), + [anon_sym_usize] = ACTIONS(2566), + [anon_sym_f32] = ACTIONS(2566), + [anon_sym_f64] = ACTIONS(2566), + [anon_sym_bool] = ACTIONS(2566), + [anon_sym_str] = ACTIONS(2566), + [anon_sym_char] = ACTIONS(2566), + [anon_sym_DASH] = ACTIONS(2564), + [anon_sym_BANG] = ACTIONS(2564), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_PIPE] = ACTIONS(2564), + [anon_sym_LT] = ACTIONS(2564), + [anon_sym_DOT_DOT] = ACTIONS(2564), + [anon_sym_COLON_COLON] = ACTIONS(2564), + [anon_sym_POUND] = ACTIONS(2564), + [anon_sym_SQUOTE] = ACTIONS(2566), + [anon_sym_async] = ACTIONS(2566), + [anon_sym_become] = ACTIONS(2566), + [anon_sym_break] = ACTIONS(2566), + [anon_sym_const] = ACTIONS(2566), + [anon_sym_continue] = ACTIONS(2566), + [anon_sym_default] = ACTIONS(2566), + [anon_sym_enum] = ACTIONS(2566), + [anon_sym_fn] = ACTIONS(2566), + [anon_sym_for] = ACTIONS(2566), + [anon_sym_gen] = ACTIONS(2566), + [anon_sym_if] = ACTIONS(2566), + [anon_sym_impl] = ACTIONS(2566), + [anon_sym_let] = ACTIONS(2566), + [anon_sym_loop] = ACTIONS(2566), + [anon_sym_match] = ACTIONS(2566), + [anon_sym_mod] = ACTIONS(2566), + [anon_sym_pub] = ACTIONS(2566), + [anon_sym_return] = ACTIONS(2566), + [anon_sym_static] = ACTIONS(2566), + [anon_sym_struct] = ACTIONS(2566), + [anon_sym_trait] = ACTIONS(2566), + [anon_sym_type] = ACTIONS(2566), + [anon_sym_union] = ACTIONS(2566), + [anon_sym_unsafe] = ACTIONS(2566), + [anon_sym_use] = ACTIONS(2566), + [anon_sym_while] = ACTIONS(2566), + [anon_sym_extern] = ACTIONS(2566), + [anon_sym_raw] = ACTIONS(2566), + [anon_sym_yield] = ACTIONS(2566), + [anon_sym_move] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2566), + [sym_integer_literal] = ACTIONS(2564), + [aux_sym_string_literal_token1] = ACTIONS(2564), + [sym_char_literal] = ACTIONS(2564), + [anon_sym_true] = ACTIONS(2566), + [anon_sym_false] = ACTIONS(2566), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2566), + [sym_super] = ACTIONS(2566), + [sym_crate] = ACTIONS(2566), + [sym_metavariable] = ACTIONS(2564), + [sym__raw_string_literal_start] = ACTIONS(2564), + [sym_float_literal] = ACTIONS(2564), }, [STATE(687)] = { [sym_line_comment] = STATE(687), [sym_block_comment] = STATE(687), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2568), + [sym_identifier] = ACTIONS(2570), + [anon_sym_SEMI] = ACTIONS(2568), + [anon_sym_macro_rules_BANG] = ACTIONS(2568), + [anon_sym_LPAREN] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_RBRACE] = ACTIONS(2568), + [anon_sym_STAR] = ACTIONS(2568), + [anon_sym_u8] = ACTIONS(2570), + [anon_sym_i8] = ACTIONS(2570), + [anon_sym_u16] = ACTIONS(2570), + [anon_sym_i16] = ACTIONS(2570), + [anon_sym_u32] = ACTIONS(2570), + [anon_sym_i32] = ACTIONS(2570), + [anon_sym_u64] = ACTIONS(2570), + [anon_sym_i64] = ACTIONS(2570), + [anon_sym_u128] = ACTIONS(2570), + [anon_sym_i128] = ACTIONS(2570), + [anon_sym_isize] = ACTIONS(2570), + [anon_sym_usize] = ACTIONS(2570), + [anon_sym_f32] = ACTIONS(2570), + [anon_sym_f64] = ACTIONS(2570), + [anon_sym_bool] = ACTIONS(2570), + [anon_sym_str] = ACTIONS(2570), + [anon_sym_char] = ACTIONS(2570), + [anon_sym_DASH] = ACTIONS(2568), + [anon_sym_BANG] = ACTIONS(2568), + [anon_sym_AMP] = ACTIONS(2568), + [anon_sym_PIPE] = ACTIONS(2568), + [anon_sym_LT] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2568), + [anon_sym_COLON_COLON] = ACTIONS(2568), + [anon_sym_POUND] = ACTIONS(2568), + [anon_sym_SQUOTE] = ACTIONS(2570), + [anon_sym_async] = ACTIONS(2570), + [anon_sym_become] = ACTIONS(2570), + [anon_sym_break] = ACTIONS(2570), + [anon_sym_const] = ACTIONS(2570), + [anon_sym_continue] = ACTIONS(2570), + [anon_sym_default] = ACTIONS(2570), + [anon_sym_enum] = ACTIONS(2570), + [anon_sym_fn] = ACTIONS(2570), + [anon_sym_for] = ACTIONS(2570), + [anon_sym_gen] = ACTIONS(2570), + [anon_sym_if] = ACTIONS(2570), + [anon_sym_impl] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2570), + [anon_sym_loop] = ACTIONS(2570), + [anon_sym_match] = ACTIONS(2570), + [anon_sym_mod] = ACTIONS(2570), + [anon_sym_pub] = ACTIONS(2570), + [anon_sym_return] = ACTIONS(2570), + [anon_sym_static] = ACTIONS(2570), + [anon_sym_struct] = ACTIONS(2570), + [anon_sym_trait] = ACTIONS(2570), + [anon_sym_type] = ACTIONS(2570), + [anon_sym_union] = ACTIONS(2570), + [anon_sym_unsafe] = ACTIONS(2570), + [anon_sym_use] = ACTIONS(2570), + [anon_sym_while] = ACTIONS(2570), + [anon_sym_extern] = ACTIONS(2570), + [anon_sym_raw] = ACTIONS(2570), + [anon_sym_yield] = ACTIONS(2570), + [anon_sym_move] = ACTIONS(2570), + [anon_sym_try] = ACTIONS(2570), + [sym_integer_literal] = ACTIONS(2568), + [aux_sym_string_literal_token1] = ACTIONS(2568), + [sym_char_literal] = ACTIONS(2568), + [anon_sym_true] = ACTIONS(2570), + [anon_sym_false] = ACTIONS(2570), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2570), + [sym_super] = ACTIONS(2570), + [sym_crate] = ACTIONS(2570), + [sym_metavariable] = ACTIONS(2568), + [sym__raw_string_literal_start] = ACTIONS(2568), + [sym_float_literal] = ACTIONS(2568), }, [STATE(688)] = { [sym_line_comment] = STATE(688), [sym_block_comment] = STATE(688), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2572), + [sym_identifier] = ACTIONS(2574), + [anon_sym_SEMI] = ACTIONS(2572), + [anon_sym_macro_rules_BANG] = ACTIONS(2572), + [anon_sym_LPAREN] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_u8] = ACTIONS(2574), + [anon_sym_i8] = ACTIONS(2574), + [anon_sym_u16] = ACTIONS(2574), + [anon_sym_i16] = ACTIONS(2574), + [anon_sym_u32] = ACTIONS(2574), + [anon_sym_i32] = ACTIONS(2574), + [anon_sym_u64] = ACTIONS(2574), + [anon_sym_i64] = ACTIONS(2574), + [anon_sym_u128] = ACTIONS(2574), + [anon_sym_i128] = ACTIONS(2574), + [anon_sym_isize] = ACTIONS(2574), + [anon_sym_usize] = ACTIONS(2574), + [anon_sym_f32] = ACTIONS(2574), + [anon_sym_f64] = ACTIONS(2574), + [anon_sym_bool] = ACTIONS(2574), + [anon_sym_str] = ACTIONS(2574), + [anon_sym_char] = ACTIONS(2574), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_DOT_DOT] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2572), + [anon_sym_POUND] = ACTIONS(2572), + [anon_sym_SQUOTE] = ACTIONS(2574), + [anon_sym_async] = ACTIONS(2574), + [anon_sym_become] = ACTIONS(2574), + [anon_sym_break] = ACTIONS(2574), + [anon_sym_const] = ACTIONS(2574), + [anon_sym_continue] = ACTIONS(2574), + [anon_sym_default] = ACTIONS(2574), + [anon_sym_enum] = ACTIONS(2574), + [anon_sym_fn] = ACTIONS(2574), + [anon_sym_for] = ACTIONS(2574), + [anon_sym_gen] = ACTIONS(2574), + [anon_sym_if] = ACTIONS(2574), + [anon_sym_impl] = ACTIONS(2574), + [anon_sym_let] = ACTIONS(2574), + [anon_sym_loop] = ACTIONS(2574), + [anon_sym_match] = ACTIONS(2574), + [anon_sym_mod] = ACTIONS(2574), + [anon_sym_pub] = ACTIONS(2574), + [anon_sym_return] = ACTIONS(2574), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_struct] = ACTIONS(2574), + [anon_sym_trait] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_union] = ACTIONS(2574), + [anon_sym_unsafe] = ACTIONS(2574), + [anon_sym_use] = ACTIONS(2574), + [anon_sym_while] = ACTIONS(2574), + [anon_sym_extern] = ACTIONS(2574), + [anon_sym_raw] = ACTIONS(2574), + [anon_sym_yield] = ACTIONS(2574), + [anon_sym_move] = ACTIONS(2574), + [anon_sym_try] = ACTIONS(2574), + [sym_integer_literal] = ACTIONS(2572), + [aux_sym_string_literal_token1] = ACTIONS(2572), + [sym_char_literal] = ACTIONS(2572), + [anon_sym_true] = ACTIONS(2574), + [anon_sym_false] = ACTIONS(2574), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2574), + [sym_super] = ACTIONS(2574), + [sym_crate] = ACTIONS(2574), + [sym_metavariable] = ACTIONS(2572), + [sym__raw_string_literal_start] = ACTIONS(2572), + [sym_float_literal] = ACTIONS(2572), }, [STATE(689)] = { [sym_line_comment] = STATE(689), [sym_block_comment] = STATE(689), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2576), + [sym_identifier] = ACTIONS(2578), + [anon_sym_SEMI] = ACTIONS(2576), + [anon_sym_macro_rules_BANG] = ACTIONS(2576), + [anon_sym_LPAREN] = ACTIONS(2576), + [anon_sym_LBRACK] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(2576), + [anon_sym_RBRACE] = ACTIONS(2576), + [anon_sym_STAR] = ACTIONS(2576), + [anon_sym_u8] = ACTIONS(2578), + [anon_sym_i8] = ACTIONS(2578), + [anon_sym_u16] = ACTIONS(2578), + [anon_sym_i16] = ACTIONS(2578), + [anon_sym_u32] = ACTIONS(2578), + [anon_sym_i32] = ACTIONS(2578), + [anon_sym_u64] = ACTIONS(2578), + [anon_sym_i64] = ACTIONS(2578), + [anon_sym_u128] = ACTIONS(2578), + [anon_sym_i128] = ACTIONS(2578), + [anon_sym_isize] = ACTIONS(2578), + [anon_sym_usize] = ACTIONS(2578), + [anon_sym_f32] = ACTIONS(2578), + [anon_sym_f64] = ACTIONS(2578), + [anon_sym_bool] = ACTIONS(2578), + [anon_sym_str] = ACTIONS(2578), + [anon_sym_char] = ACTIONS(2578), + [anon_sym_DASH] = ACTIONS(2576), + [anon_sym_BANG] = ACTIONS(2576), + [anon_sym_AMP] = ACTIONS(2576), + [anon_sym_PIPE] = ACTIONS(2576), + [anon_sym_LT] = ACTIONS(2576), + [anon_sym_DOT_DOT] = ACTIONS(2576), + [anon_sym_COLON_COLON] = ACTIONS(2576), + [anon_sym_POUND] = ACTIONS(2576), + [anon_sym_SQUOTE] = ACTIONS(2578), + [anon_sym_async] = ACTIONS(2578), + [anon_sym_become] = ACTIONS(2578), + [anon_sym_break] = ACTIONS(2578), + [anon_sym_const] = ACTIONS(2578), + [anon_sym_continue] = ACTIONS(2578), + [anon_sym_default] = ACTIONS(2578), + [anon_sym_enum] = ACTIONS(2578), + [anon_sym_fn] = ACTIONS(2578), + [anon_sym_for] = ACTIONS(2578), + [anon_sym_gen] = ACTIONS(2578), + [anon_sym_if] = ACTIONS(2578), + [anon_sym_impl] = ACTIONS(2578), + [anon_sym_let] = ACTIONS(2578), + [anon_sym_loop] = ACTIONS(2578), + [anon_sym_match] = ACTIONS(2578), + [anon_sym_mod] = ACTIONS(2578), + [anon_sym_pub] = ACTIONS(2578), + [anon_sym_return] = ACTIONS(2578), + [anon_sym_static] = ACTIONS(2578), + [anon_sym_struct] = ACTIONS(2578), + [anon_sym_trait] = ACTIONS(2578), + [anon_sym_type] = ACTIONS(2578), + [anon_sym_union] = ACTIONS(2578), + [anon_sym_unsafe] = ACTIONS(2578), + [anon_sym_use] = ACTIONS(2578), + [anon_sym_while] = ACTIONS(2578), + [anon_sym_extern] = ACTIONS(2578), + [anon_sym_raw] = ACTIONS(2578), + [anon_sym_yield] = ACTIONS(2578), + [anon_sym_move] = ACTIONS(2578), + [anon_sym_try] = ACTIONS(2578), + [sym_integer_literal] = ACTIONS(2576), + [aux_sym_string_literal_token1] = ACTIONS(2576), + [sym_char_literal] = ACTIONS(2576), + [anon_sym_true] = ACTIONS(2578), + [anon_sym_false] = ACTIONS(2578), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2578), + [sym_super] = ACTIONS(2578), + [sym_crate] = ACTIONS(2578), + [sym_metavariable] = ACTIONS(2576), + [sym__raw_string_literal_start] = ACTIONS(2576), + [sym_float_literal] = ACTIONS(2576), }, [STATE(690)] = { [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2580), + [sym_identifier] = ACTIONS(2582), + [anon_sym_SEMI] = ACTIONS(2580), + [anon_sym_macro_rules_BANG] = ACTIONS(2580), + [anon_sym_LPAREN] = ACTIONS(2580), + [anon_sym_LBRACK] = ACTIONS(2580), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_STAR] = ACTIONS(2580), + [anon_sym_u8] = ACTIONS(2582), + [anon_sym_i8] = ACTIONS(2582), + [anon_sym_u16] = ACTIONS(2582), + [anon_sym_i16] = ACTIONS(2582), + [anon_sym_u32] = ACTIONS(2582), + [anon_sym_i32] = ACTIONS(2582), + [anon_sym_u64] = ACTIONS(2582), + [anon_sym_i64] = ACTIONS(2582), + [anon_sym_u128] = ACTIONS(2582), + [anon_sym_i128] = ACTIONS(2582), + [anon_sym_isize] = ACTIONS(2582), + [anon_sym_usize] = ACTIONS(2582), + [anon_sym_f32] = ACTIONS(2582), + [anon_sym_f64] = ACTIONS(2582), + [anon_sym_bool] = ACTIONS(2582), + [anon_sym_str] = ACTIONS(2582), + [anon_sym_char] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2580), + [anon_sym_BANG] = ACTIONS(2580), + [anon_sym_AMP] = ACTIONS(2580), + [anon_sym_PIPE] = ACTIONS(2580), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_DOT_DOT] = ACTIONS(2580), + [anon_sym_COLON_COLON] = ACTIONS(2580), + [anon_sym_POUND] = ACTIONS(2580), + [anon_sym_SQUOTE] = ACTIONS(2582), + [anon_sym_async] = ACTIONS(2582), + [anon_sym_become] = ACTIONS(2582), + [anon_sym_break] = ACTIONS(2582), + [anon_sym_const] = ACTIONS(2582), + [anon_sym_continue] = ACTIONS(2582), + [anon_sym_default] = ACTIONS(2582), + [anon_sym_enum] = ACTIONS(2582), + [anon_sym_fn] = ACTIONS(2582), + [anon_sym_for] = ACTIONS(2582), + [anon_sym_gen] = ACTIONS(2582), + [anon_sym_if] = ACTIONS(2582), + [anon_sym_impl] = ACTIONS(2582), + [anon_sym_let] = ACTIONS(2582), + [anon_sym_loop] = ACTIONS(2582), + [anon_sym_match] = ACTIONS(2582), + [anon_sym_mod] = ACTIONS(2582), + [anon_sym_pub] = ACTIONS(2582), + [anon_sym_return] = ACTIONS(2582), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2582), + [anon_sym_trait] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_union] = ACTIONS(2582), + [anon_sym_unsafe] = ACTIONS(2582), + [anon_sym_use] = ACTIONS(2582), + [anon_sym_while] = ACTIONS(2582), + [anon_sym_extern] = ACTIONS(2582), + [anon_sym_raw] = ACTIONS(2582), + [anon_sym_yield] = ACTIONS(2582), + [anon_sym_move] = ACTIONS(2582), + [anon_sym_try] = ACTIONS(2582), + [sym_integer_literal] = ACTIONS(2580), + [aux_sym_string_literal_token1] = ACTIONS(2580), + [sym_char_literal] = ACTIONS(2580), + [anon_sym_true] = ACTIONS(2582), + [anon_sym_false] = ACTIONS(2582), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2582), + [sym_super] = ACTIONS(2582), + [sym_crate] = ACTIONS(2582), + [sym_metavariable] = ACTIONS(2580), + [sym__raw_string_literal_start] = ACTIONS(2580), + [sym_float_literal] = ACTIONS(2580), }, [STATE(691)] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2584), + [sym_identifier] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(2584), + [anon_sym_macro_rules_BANG] = ACTIONS(2584), + [anon_sym_LPAREN] = ACTIONS(2584), + [anon_sym_LBRACK] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(2584), + [anon_sym_RBRACE] = ACTIONS(2584), + [anon_sym_STAR] = ACTIONS(2584), + [anon_sym_u8] = ACTIONS(2586), + [anon_sym_i8] = ACTIONS(2586), + [anon_sym_u16] = ACTIONS(2586), + [anon_sym_i16] = ACTIONS(2586), + [anon_sym_u32] = ACTIONS(2586), + [anon_sym_i32] = ACTIONS(2586), + [anon_sym_u64] = ACTIONS(2586), + [anon_sym_i64] = ACTIONS(2586), + [anon_sym_u128] = ACTIONS(2586), + [anon_sym_i128] = ACTIONS(2586), + [anon_sym_isize] = ACTIONS(2586), + [anon_sym_usize] = ACTIONS(2586), + [anon_sym_f32] = ACTIONS(2586), + [anon_sym_f64] = ACTIONS(2586), + [anon_sym_bool] = ACTIONS(2586), + [anon_sym_str] = ACTIONS(2586), + [anon_sym_char] = ACTIONS(2586), + [anon_sym_DASH] = ACTIONS(2584), + [anon_sym_BANG] = ACTIONS(2584), + [anon_sym_AMP] = ACTIONS(2584), + [anon_sym_PIPE] = ACTIONS(2584), + [anon_sym_LT] = ACTIONS(2584), + [anon_sym_DOT_DOT] = ACTIONS(2584), + [anon_sym_COLON_COLON] = ACTIONS(2584), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_SQUOTE] = ACTIONS(2586), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_become] = ACTIONS(2586), + [anon_sym_break] = ACTIONS(2586), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_continue] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2586), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_fn] = ACTIONS(2586), + [anon_sym_for] = ACTIONS(2586), + [anon_sym_gen] = ACTIONS(2586), + [anon_sym_if] = ACTIONS(2586), + [anon_sym_impl] = ACTIONS(2586), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_loop] = ACTIONS(2586), + [anon_sym_match] = ACTIONS(2586), + [anon_sym_mod] = ACTIONS(2586), + [anon_sym_pub] = ACTIONS(2586), + [anon_sym_return] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_struct] = ACTIONS(2586), + [anon_sym_trait] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_union] = ACTIONS(2586), + [anon_sym_unsafe] = ACTIONS(2586), + [anon_sym_use] = ACTIONS(2586), + [anon_sym_while] = ACTIONS(2586), + [anon_sym_extern] = ACTIONS(2586), + [anon_sym_raw] = ACTIONS(2586), + [anon_sym_yield] = ACTIONS(2586), + [anon_sym_move] = ACTIONS(2586), + [anon_sym_try] = ACTIONS(2586), + [sym_integer_literal] = ACTIONS(2584), + [aux_sym_string_literal_token1] = ACTIONS(2584), + [sym_char_literal] = ACTIONS(2584), + [anon_sym_true] = ACTIONS(2586), + [anon_sym_false] = ACTIONS(2586), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2586), + [sym_super] = ACTIONS(2586), + [sym_crate] = ACTIONS(2586), + [sym_metavariable] = ACTIONS(2584), + [sym__raw_string_literal_start] = ACTIONS(2584), + [sym_float_literal] = ACTIONS(2584), }, [STATE(692)] = { [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2588), + [sym_identifier] = ACTIONS(2590), + [anon_sym_SEMI] = ACTIONS(2588), + [anon_sym_macro_rules_BANG] = ACTIONS(2588), + [anon_sym_LPAREN] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_STAR] = ACTIONS(2588), + [anon_sym_u8] = ACTIONS(2590), + [anon_sym_i8] = ACTIONS(2590), + [anon_sym_u16] = ACTIONS(2590), + [anon_sym_i16] = ACTIONS(2590), + [anon_sym_u32] = ACTIONS(2590), + [anon_sym_i32] = ACTIONS(2590), + [anon_sym_u64] = ACTIONS(2590), + [anon_sym_i64] = ACTIONS(2590), + [anon_sym_u128] = ACTIONS(2590), + [anon_sym_i128] = ACTIONS(2590), + [anon_sym_isize] = ACTIONS(2590), + [anon_sym_usize] = ACTIONS(2590), + [anon_sym_f32] = ACTIONS(2590), + [anon_sym_f64] = ACTIONS(2590), + [anon_sym_bool] = ACTIONS(2590), + [anon_sym_str] = ACTIONS(2590), + [anon_sym_char] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2588), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_AMP] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2588), + [anon_sym_DOT_DOT] = ACTIONS(2588), + [anon_sym_COLON_COLON] = ACTIONS(2588), + [anon_sym_POUND] = ACTIONS(2588), + [anon_sym_SQUOTE] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_become] = ACTIONS(2590), + [anon_sym_break] = ACTIONS(2590), + [anon_sym_const] = ACTIONS(2590), + [anon_sym_continue] = ACTIONS(2590), + [anon_sym_default] = ACTIONS(2590), + [anon_sym_enum] = ACTIONS(2590), + [anon_sym_fn] = ACTIONS(2590), + [anon_sym_for] = ACTIONS(2590), + [anon_sym_gen] = ACTIONS(2590), + [anon_sym_if] = ACTIONS(2590), + [anon_sym_impl] = ACTIONS(2590), + [anon_sym_let] = ACTIONS(2590), + [anon_sym_loop] = ACTIONS(2590), + [anon_sym_match] = ACTIONS(2590), + [anon_sym_mod] = ACTIONS(2590), + [anon_sym_pub] = ACTIONS(2590), + [anon_sym_return] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(2590), + [anon_sym_struct] = ACTIONS(2590), + [anon_sym_trait] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_union] = ACTIONS(2590), + [anon_sym_unsafe] = ACTIONS(2590), + [anon_sym_use] = ACTIONS(2590), + [anon_sym_while] = ACTIONS(2590), + [anon_sym_extern] = ACTIONS(2590), + [anon_sym_raw] = ACTIONS(2590), + [anon_sym_yield] = ACTIONS(2590), + [anon_sym_move] = ACTIONS(2590), + [anon_sym_try] = ACTIONS(2590), + [sym_integer_literal] = ACTIONS(2588), + [aux_sym_string_literal_token1] = ACTIONS(2588), + [sym_char_literal] = ACTIONS(2588), + [anon_sym_true] = ACTIONS(2590), + [anon_sym_false] = ACTIONS(2590), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2590), + [sym_super] = ACTIONS(2590), + [sym_crate] = ACTIONS(2590), + [sym_metavariable] = ACTIONS(2588), + [sym__raw_string_literal_start] = ACTIONS(2588), + [sym_float_literal] = ACTIONS(2588), }, [STATE(693)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3293), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(694)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [aux_sym_declaration_list_repeat1] = STATE(701), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2594), + [sym_identifier] = ACTIONS(2596), + [anon_sym_SEMI] = ACTIONS(2594), + [anon_sym_macro_rules_BANG] = ACTIONS(2594), + [anon_sym_LPAREN] = ACTIONS(2594), + [anon_sym_LBRACK] = ACTIONS(2594), + [anon_sym_LBRACE] = ACTIONS(2594), + [anon_sym_RBRACE] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(2594), + [anon_sym_u8] = ACTIONS(2596), + [anon_sym_i8] = ACTIONS(2596), + [anon_sym_u16] = ACTIONS(2596), + [anon_sym_i16] = ACTIONS(2596), + [anon_sym_u32] = ACTIONS(2596), + [anon_sym_i32] = ACTIONS(2596), + [anon_sym_u64] = ACTIONS(2596), + [anon_sym_i64] = ACTIONS(2596), + [anon_sym_u128] = ACTIONS(2596), + [anon_sym_i128] = ACTIONS(2596), + [anon_sym_isize] = ACTIONS(2596), + [anon_sym_usize] = ACTIONS(2596), + [anon_sym_f32] = ACTIONS(2596), + [anon_sym_f64] = ACTIONS(2596), + [anon_sym_bool] = ACTIONS(2596), + [anon_sym_str] = ACTIONS(2596), + [anon_sym_char] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2594), + [anon_sym_BANG] = ACTIONS(2594), + [anon_sym_AMP] = ACTIONS(2594), + [anon_sym_PIPE] = ACTIONS(2594), + [anon_sym_LT] = ACTIONS(2594), + [anon_sym_DOT_DOT] = ACTIONS(2594), + [anon_sym_COLON_COLON] = ACTIONS(2594), + [anon_sym_POUND] = ACTIONS(2594), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_become] = ACTIONS(2596), + [anon_sym_break] = ACTIONS(2596), + [anon_sym_const] = ACTIONS(2596), + [anon_sym_continue] = ACTIONS(2596), + [anon_sym_default] = ACTIONS(2596), + [anon_sym_enum] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), + [anon_sym_for] = ACTIONS(2596), + [anon_sym_gen] = ACTIONS(2596), + [anon_sym_if] = ACTIONS(2596), + [anon_sym_impl] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_loop] = ACTIONS(2596), + [anon_sym_match] = ACTIONS(2596), + [anon_sym_mod] = ACTIONS(2596), + [anon_sym_pub] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_struct] = ACTIONS(2596), + [anon_sym_trait] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_union] = ACTIONS(2596), + [anon_sym_unsafe] = ACTIONS(2596), + [anon_sym_use] = ACTIONS(2596), + [anon_sym_while] = ACTIONS(2596), + [anon_sym_extern] = ACTIONS(2596), + [anon_sym_raw] = ACTIONS(2596), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_move] = ACTIONS(2596), + [anon_sym_try] = ACTIONS(2596), + [sym_integer_literal] = ACTIONS(2594), + [aux_sym_string_literal_token1] = ACTIONS(2594), + [sym_char_literal] = ACTIONS(2594), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_crate] = ACTIONS(2596), + [sym_metavariable] = ACTIONS(2594), + [sym__raw_string_literal_start] = ACTIONS(2594), + [sym_float_literal] = ACTIONS(2594), }, [STATE(695)] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2598), + [sym_identifier] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2598), + [anon_sym_macro_rules_BANG] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2598), + [anon_sym_RBRACE] = ACTIONS(2598), + [anon_sym_STAR] = ACTIONS(2598), + [anon_sym_u8] = ACTIONS(2600), + [anon_sym_i8] = ACTIONS(2600), + [anon_sym_u16] = ACTIONS(2600), + [anon_sym_i16] = ACTIONS(2600), + [anon_sym_u32] = ACTIONS(2600), + [anon_sym_i32] = ACTIONS(2600), + [anon_sym_u64] = ACTIONS(2600), + [anon_sym_i64] = ACTIONS(2600), + [anon_sym_u128] = ACTIONS(2600), + [anon_sym_i128] = ACTIONS(2600), + [anon_sym_isize] = ACTIONS(2600), + [anon_sym_usize] = ACTIONS(2600), + [anon_sym_f32] = ACTIONS(2600), + [anon_sym_f64] = ACTIONS(2600), + [anon_sym_bool] = ACTIONS(2600), + [anon_sym_str] = ACTIONS(2600), + [anon_sym_char] = ACTIONS(2600), + [anon_sym_DASH] = ACTIONS(2598), + [anon_sym_BANG] = ACTIONS(2598), + [anon_sym_AMP] = ACTIONS(2598), + [anon_sym_PIPE] = ACTIONS(2598), + [anon_sym_LT] = ACTIONS(2598), + [anon_sym_DOT_DOT] = ACTIONS(2598), + [anon_sym_COLON_COLON] = ACTIONS(2598), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_SQUOTE] = ACTIONS(2600), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_become] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2600), + [anon_sym_const] = ACTIONS(2600), + [anon_sym_continue] = ACTIONS(2600), + [anon_sym_default] = ACTIONS(2600), + [anon_sym_enum] = ACTIONS(2600), + [anon_sym_fn] = ACTIONS(2600), + [anon_sym_for] = ACTIONS(2600), + [anon_sym_gen] = ACTIONS(2600), + [anon_sym_if] = ACTIONS(2600), + [anon_sym_impl] = ACTIONS(2600), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_loop] = ACTIONS(2600), + [anon_sym_match] = ACTIONS(2600), + [anon_sym_mod] = ACTIONS(2600), + [anon_sym_pub] = ACTIONS(2600), + [anon_sym_return] = ACTIONS(2600), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_struct] = ACTIONS(2600), + [anon_sym_trait] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_union] = ACTIONS(2600), + [anon_sym_unsafe] = ACTIONS(2600), + [anon_sym_use] = ACTIONS(2600), + [anon_sym_while] = ACTIONS(2600), + [anon_sym_extern] = ACTIONS(2600), + [anon_sym_raw] = ACTIONS(2600), + [anon_sym_yield] = ACTIONS(2600), + [anon_sym_move] = ACTIONS(2600), + [anon_sym_try] = ACTIONS(2600), + [sym_integer_literal] = ACTIONS(2598), + [aux_sym_string_literal_token1] = ACTIONS(2598), + [sym_char_literal] = ACTIONS(2598), + [anon_sym_true] = ACTIONS(2600), + [anon_sym_false] = ACTIONS(2600), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2600), + [sym_super] = ACTIONS(2600), + [sym_crate] = ACTIONS(2600), + [sym_metavariable] = ACTIONS(2598), + [sym__raw_string_literal_start] = ACTIONS(2598), + [sym_float_literal] = ACTIONS(2598), }, [STATE(696)] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2602), + [sym_identifier] = ACTIONS(2604), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_macro_rules_BANG] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2602), + [anon_sym_LBRACK] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(2602), + [anon_sym_RBRACE] = ACTIONS(2602), + [anon_sym_STAR] = ACTIONS(2602), + [anon_sym_u8] = ACTIONS(2604), + [anon_sym_i8] = ACTIONS(2604), + [anon_sym_u16] = ACTIONS(2604), + [anon_sym_i16] = ACTIONS(2604), + [anon_sym_u32] = ACTIONS(2604), + [anon_sym_i32] = ACTIONS(2604), + [anon_sym_u64] = ACTIONS(2604), + [anon_sym_i64] = ACTIONS(2604), + [anon_sym_u128] = ACTIONS(2604), + [anon_sym_i128] = ACTIONS(2604), + [anon_sym_isize] = ACTIONS(2604), + [anon_sym_usize] = ACTIONS(2604), + [anon_sym_f32] = ACTIONS(2604), + [anon_sym_f64] = ACTIONS(2604), + [anon_sym_bool] = ACTIONS(2604), + [anon_sym_str] = ACTIONS(2604), + [anon_sym_char] = ACTIONS(2604), + [anon_sym_DASH] = ACTIONS(2602), + [anon_sym_BANG] = ACTIONS(2602), + [anon_sym_AMP] = ACTIONS(2602), + [anon_sym_PIPE] = ACTIONS(2602), + [anon_sym_LT] = ACTIONS(2602), + [anon_sym_DOT_DOT] = ACTIONS(2602), + [anon_sym_COLON_COLON] = ACTIONS(2602), + [anon_sym_POUND] = ACTIONS(2602), + [anon_sym_SQUOTE] = ACTIONS(2604), + [anon_sym_async] = ACTIONS(2604), + [anon_sym_become] = ACTIONS(2604), + [anon_sym_break] = ACTIONS(2604), + [anon_sym_const] = ACTIONS(2604), + [anon_sym_continue] = ACTIONS(2604), + [anon_sym_default] = ACTIONS(2604), + [anon_sym_enum] = ACTIONS(2604), + [anon_sym_fn] = ACTIONS(2604), + [anon_sym_for] = ACTIONS(2604), + [anon_sym_gen] = ACTIONS(2604), + [anon_sym_if] = ACTIONS(2604), + [anon_sym_impl] = ACTIONS(2604), + [anon_sym_let] = ACTIONS(2604), + [anon_sym_loop] = ACTIONS(2604), + [anon_sym_match] = ACTIONS(2604), + [anon_sym_mod] = ACTIONS(2604), + [anon_sym_pub] = ACTIONS(2604), + [anon_sym_return] = ACTIONS(2604), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_struct] = ACTIONS(2604), + [anon_sym_trait] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_union] = ACTIONS(2604), + [anon_sym_unsafe] = ACTIONS(2604), + [anon_sym_use] = ACTIONS(2604), + [anon_sym_while] = ACTIONS(2604), + [anon_sym_extern] = ACTIONS(2604), + [anon_sym_raw] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2604), + [anon_sym_move] = ACTIONS(2604), + [anon_sym_try] = ACTIONS(2604), + [sym_integer_literal] = ACTIONS(2602), + [aux_sym_string_literal_token1] = ACTIONS(2602), + [sym_char_literal] = ACTIONS(2602), + [anon_sym_true] = ACTIONS(2604), + [anon_sym_false] = ACTIONS(2604), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2604), + [sym_super] = ACTIONS(2604), + [sym_crate] = ACTIONS(2604), + [sym_metavariable] = ACTIONS(2602), + [sym__raw_string_literal_start] = ACTIONS(2602), + [sym_float_literal] = ACTIONS(2602), }, [STATE(697)] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2606), + [sym_identifier] = ACTIONS(2608), + [anon_sym_SEMI] = ACTIONS(2606), + [anon_sym_macro_rules_BANG] = ACTIONS(2606), + [anon_sym_LPAREN] = ACTIONS(2606), + [anon_sym_LBRACK] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2606), + [anon_sym_RBRACE] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(2606), + [anon_sym_u8] = ACTIONS(2608), + [anon_sym_i8] = ACTIONS(2608), + [anon_sym_u16] = ACTIONS(2608), + [anon_sym_i16] = ACTIONS(2608), + [anon_sym_u32] = ACTIONS(2608), + [anon_sym_i32] = ACTIONS(2608), + [anon_sym_u64] = ACTIONS(2608), + [anon_sym_i64] = ACTIONS(2608), + [anon_sym_u128] = ACTIONS(2608), + [anon_sym_i128] = ACTIONS(2608), + [anon_sym_isize] = ACTIONS(2608), + [anon_sym_usize] = ACTIONS(2608), + [anon_sym_f32] = ACTIONS(2608), + [anon_sym_f64] = ACTIONS(2608), + [anon_sym_bool] = ACTIONS(2608), + [anon_sym_str] = ACTIONS(2608), + [anon_sym_char] = ACTIONS(2608), + [anon_sym_DASH] = ACTIONS(2606), + [anon_sym_BANG] = ACTIONS(2606), + [anon_sym_AMP] = ACTIONS(2606), + [anon_sym_PIPE] = ACTIONS(2606), + [anon_sym_LT] = ACTIONS(2606), + [anon_sym_DOT_DOT] = ACTIONS(2606), + [anon_sym_COLON_COLON] = ACTIONS(2606), + [anon_sym_POUND] = ACTIONS(2606), + [anon_sym_SQUOTE] = ACTIONS(2608), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_become] = ACTIONS(2608), + [anon_sym_break] = ACTIONS(2608), + [anon_sym_const] = ACTIONS(2608), + [anon_sym_continue] = ACTIONS(2608), + [anon_sym_default] = ACTIONS(2608), + [anon_sym_enum] = ACTIONS(2608), + [anon_sym_fn] = ACTIONS(2608), + [anon_sym_for] = ACTIONS(2608), + [anon_sym_gen] = ACTIONS(2608), + [anon_sym_if] = ACTIONS(2608), + [anon_sym_impl] = ACTIONS(2608), + [anon_sym_let] = ACTIONS(2608), + [anon_sym_loop] = ACTIONS(2608), + [anon_sym_match] = ACTIONS(2608), + [anon_sym_mod] = ACTIONS(2608), + [anon_sym_pub] = ACTIONS(2608), + [anon_sym_return] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2608), + [anon_sym_struct] = ACTIONS(2608), + [anon_sym_trait] = ACTIONS(2608), + [anon_sym_type] = ACTIONS(2608), + [anon_sym_union] = ACTIONS(2608), + [anon_sym_unsafe] = ACTIONS(2608), + [anon_sym_use] = ACTIONS(2608), + [anon_sym_while] = ACTIONS(2608), + [anon_sym_extern] = ACTIONS(2608), + [anon_sym_raw] = ACTIONS(2608), + [anon_sym_yield] = ACTIONS(2608), + [anon_sym_move] = ACTIONS(2608), + [anon_sym_try] = ACTIONS(2608), + [sym_integer_literal] = ACTIONS(2606), + [aux_sym_string_literal_token1] = ACTIONS(2606), + [sym_char_literal] = ACTIONS(2606), + [anon_sym_true] = ACTIONS(2608), + [anon_sym_false] = ACTIONS(2608), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2608), + [sym_super] = ACTIONS(2608), + [sym_crate] = ACTIONS(2608), + [sym_metavariable] = ACTIONS(2606), + [sym__raw_string_literal_start] = ACTIONS(2606), + [sym_float_literal] = ACTIONS(2606), }, [STATE(698)] = { [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2610), + [sym_identifier] = ACTIONS(2612), + [anon_sym_SEMI] = ACTIONS(2610), + [anon_sym_macro_rules_BANG] = ACTIONS(2610), + [anon_sym_LPAREN] = ACTIONS(2610), + [anon_sym_LBRACK] = ACTIONS(2610), + [anon_sym_LBRACE] = ACTIONS(2610), + [anon_sym_RBRACE] = ACTIONS(2610), + [anon_sym_STAR] = ACTIONS(2610), + [anon_sym_u8] = ACTIONS(2612), + [anon_sym_i8] = ACTIONS(2612), + [anon_sym_u16] = ACTIONS(2612), + [anon_sym_i16] = ACTIONS(2612), + [anon_sym_u32] = ACTIONS(2612), + [anon_sym_i32] = ACTIONS(2612), + [anon_sym_u64] = ACTIONS(2612), + [anon_sym_i64] = ACTIONS(2612), + [anon_sym_u128] = ACTIONS(2612), + [anon_sym_i128] = ACTIONS(2612), + [anon_sym_isize] = ACTIONS(2612), + [anon_sym_usize] = ACTIONS(2612), + [anon_sym_f32] = ACTIONS(2612), + [anon_sym_f64] = ACTIONS(2612), + [anon_sym_bool] = ACTIONS(2612), + [anon_sym_str] = ACTIONS(2612), + [anon_sym_char] = ACTIONS(2612), + [anon_sym_DASH] = ACTIONS(2610), + [anon_sym_BANG] = ACTIONS(2610), + [anon_sym_AMP] = ACTIONS(2610), + [anon_sym_PIPE] = ACTIONS(2610), + [anon_sym_LT] = ACTIONS(2610), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_COLON_COLON] = ACTIONS(2610), + [anon_sym_POUND] = ACTIONS(2610), + [anon_sym_SQUOTE] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2612), + [anon_sym_become] = ACTIONS(2612), + [anon_sym_break] = ACTIONS(2612), + [anon_sym_const] = ACTIONS(2612), + [anon_sym_continue] = ACTIONS(2612), + [anon_sym_default] = ACTIONS(2612), + [anon_sym_enum] = ACTIONS(2612), + [anon_sym_fn] = ACTIONS(2612), + [anon_sym_for] = ACTIONS(2612), + [anon_sym_gen] = ACTIONS(2612), + [anon_sym_if] = ACTIONS(2612), + [anon_sym_impl] = ACTIONS(2612), + [anon_sym_let] = ACTIONS(2612), + [anon_sym_loop] = ACTIONS(2612), + [anon_sym_match] = ACTIONS(2612), + [anon_sym_mod] = ACTIONS(2612), + [anon_sym_pub] = ACTIONS(2612), + [anon_sym_return] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_struct] = ACTIONS(2612), + [anon_sym_trait] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_union] = ACTIONS(2612), + [anon_sym_unsafe] = ACTIONS(2612), + [anon_sym_use] = ACTIONS(2612), + [anon_sym_while] = ACTIONS(2612), + [anon_sym_extern] = ACTIONS(2612), + [anon_sym_raw] = ACTIONS(2612), + [anon_sym_yield] = ACTIONS(2612), + [anon_sym_move] = ACTIONS(2612), + [anon_sym_try] = ACTIONS(2612), + [sym_integer_literal] = ACTIONS(2610), + [aux_sym_string_literal_token1] = ACTIONS(2610), + [sym_char_literal] = ACTIONS(2610), + [anon_sym_true] = ACTIONS(2612), + [anon_sym_false] = ACTIONS(2612), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2612), + [sym_super] = ACTIONS(2612), + [sym_crate] = ACTIONS(2612), + [sym_metavariable] = ACTIONS(2610), + [sym__raw_string_literal_start] = ACTIONS(2610), + [sym_float_literal] = ACTIONS(2610), }, [STATE(699)] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2614), + [sym_identifier] = ACTIONS(2616), + [anon_sym_SEMI] = ACTIONS(2614), + [anon_sym_macro_rules_BANG] = ACTIONS(2614), + [anon_sym_LPAREN] = ACTIONS(2614), + [anon_sym_LBRACK] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(2614), + [anon_sym_RBRACE] = ACTIONS(2614), + [anon_sym_STAR] = ACTIONS(2614), + [anon_sym_u8] = ACTIONS(2616), + [anon_sym_i8] = ACTIONS(2616), + [anon_sym_u16] = ACTIONS(2616), + [anon_sym_i16] = ACTIONS(2616), + [anon_sym_u32] = ACTIONS(2616), + [anon_sym_i32] = ACTIONS(2616), + [anon_sym_u64] = ACTIONS(2616), + [anon_sym_i64] = ACTIONS(2616), + [anon_sym_u128] = ACTIONS(2616), + [anon_sym_i128] = ACTIONS(2616), + [anon_sym_isize] = ACTIONS(2616), + [anon_sym_usize] = ACTIONS(2616), + [anon_sym_f32] = ACTIONS(2616), + [anon_sym_f64] = ACTIONS(2616), + [anon_sym_bool] = ACTIONS(2616), + [anon_sym_str] = ACTIONS(2616), + [anon_sym_char] = ACTIONS(2616), + [anon_sym_DASH] = ACTIONS(2614), + [anon_sym_BANG] = ACTIONS(2614), + [anon_sym_AMP] = ACTIONS(2614), + [anon_sym_PIPE] = ACTIONS(2614), + [anon_sym_LT] = ACTIONS(2614), + [anon_sym_DOT_DOT] = ACTIONS(2614), + [anon_sym_COLON_COLON] = ACTIONS(2614), + [anon_sym_POUND] = ACTIONS(2614), + [anon_sym_SQUOTE] = ACTIONS(2616), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_become] = ACTIONS(2616), + [anon_sym_break] = ACTIONS(2616), + [anon_sym_const] = ACTIONS(2616), + [anon_sym_continue] = ACTIONS(2616), + [anon_sym_default] = ACTIONS(2616), + [anon_sym_enum] = ACTIONS(2616), + [anon_sym_fn] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2616), + [anon_sym_gen] = ACTIONS(2616), + [anon_sym_if] = ACTIONS(2616), + [anon_sym_impl] = ACTIONS(2616), + [anon_sym_let] = ACTIONS(2616), + [anon_sym_loop] = ACTIONS(2616), + [anon_sym_match] = ACTIONS(2616), + [anon_sym_mod] = ACTIONS(2616), + [anon_sym_pub] = ACTIONS(2616), + [anon_sym_return] = ACTIONS(2616), + [anon_sym_static] = ACTIONS(2616), + [anon_sym_struct] = ACTIONS(2616), + [anon_sym_trait] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2616), + [anon_sym_union] = ACTIONS(2616), + [anon_sym_unsafe] = ACTIONS(2616), + [anon_sym_use] = ACTIONS(2616), + [anon_sym_while] = ACTIONS(2616), + [anon_sym_extern] = ACTIONS(2616), + [anon_sym_raw] = ACTIONS(2616), + [anon_sym_yield] = ACTIONS(2616), + [anon_sym_move] = ACTIONS(2616), + [anon_sym_try] = ACTIONS(2616), + [sym_integer_literal] = ACTIONS(2614), + [aux_sym_string_literal_token1] = ACTIONS(2614), + [sym_char_literal] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2616), + [sym_super] = ACTIONS(2616), + [sym_crate] = ACTIONS(2616), + [sym_metavariable] = ACTIONS(2614), + [sym__raw_string_literal_start] = ACTIONS(2614), + [sym_float_literal] = ACTIONS(2614), }, [STATE(700)] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2618), + [sym_identifier] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2618), + [anon_sym_macro_rules_BANG] = ACTIONS(2618), + [anon_sym_LPAREN] = ACTIONS(2618), + [anon_sym_LBRACK] = ACTIONS(2618), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_RBRACE] = ACTIONS(2618), + [anon_sym_STAR] = ACTIONS(2618), + [anon_sym_u8] = ACTIONS(2620), + [anon_sym_i8] = ACTIONS(2620), + [anon_sym_u16] = ACTIONS(2620), + [anon_sym_i16] = ACTIONS(2620), + [anon_sym_u32] = ACTIONS(2620), + [anon_sym_i32] = ACTIONS(2620), + [anon_sym_u64] = ACTIONS(2620), + [anon_sym_i64] = ACTIONS(2620), + [anon_sym_u128] = ACTIONS(2620), + [anon_sym_i128] = ACTIONS(2620), + [anon_sym_isize] = ACTIONS(2620), + [anon_sym_usize] = ACTIONS(2620), + [anon_sym_f32] = ACTIONS(2620), + [anon_sym_f64] = ACTIONS(2620), + [anon_sym_bool] = ACTIONS(2620), + [anon_sym_str] = ACTIONS(2620), + [anon_sym_char] = ACTIONS(2620), + [anon_sym_DASH] = ACTIONS(2618), + [anon_sym_BANG] = ACTIONS(2618), + [anon_sym_AMP] = ACTIONS(2618), + [anon_sym_PIPE] = ACTIONS(2618), + [anon_sym_LT] = ACTIONS(2618), + [anon_sym_DOT_DOT] = ACTIONS(2618), + [anon_sym_COLON_COLON] = ACTIONS(2618), + [anon_sym_POUND] = ACTIONS(2618), + [anon_sym_SQUOTE] = ACTIONS(2620), + [anon_sym_async] = ACTIONS(2620), + [anon_sym_become] = ACTIONS(2620), + [anon_sym_break] = ACTIONS(2620), + [anon_sym_const] = ACTIONS(2620), + [anon_sym_continue] = ACTIONS(2620), + [anon_sym_default] = ACTIONS(2620), + [anon_sym_enum] = ACTIONS(2620), + [anon_sym_fn] = ACTIONS(2620), + [anon_sym_for] = ACTIONS(2620), + [anon_sym_gen] = ACTIONS(2620), + [anon_sym_if] = ACTIONS(2620), + [anon_sym_impl] = ACTIONS(2620), + [anon_sym_let] = ACTIONS(2620), + [anon_sym_loop] = ACTIONS(2620), + [anon_sym_match] = ACTIONS(2620), + [anon_sym_mod] = ACTIONS(2620), + [anon_sym_pub] = ACTIONS(2620), + [anon_sym_return] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2620), + [anon_sym_struct] = ACTIONS(2620), + [anon_sym_trait] = ACTIONS(2620), + [anon_sym_type] = ACTIONS(2620), + [anon_sym_union] = ACTIONS(2620), + [anon_sym_unsafe] = ACTIONS(2620), + [anon_sym_use] = ACTIONS(2620), + [anon_sym_while] = ACTIONS(2620), + [anon_sym_extern] = ACTIONS(2620), + [anon_sym_raw] = ACTIONS(2620), + [anon_sym_yield] = ACTIONS(2620), + [anon_sym_move] = ACTIONS(2620), + [anon_sym_try] = ACTIONS(2620), + [sym_integer_literal] = ACTIONS(2618), + [aux_sym_string_literal_token1] = ACTIONS(2618), + [sym_char_literal] = ACTIONS(2618), + [anon_sym_true] = ACTIONS(2620), + [anon_sym_false] = ACTIONS(2620), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2620), + [sym_super] = ACTIONS(2620), + [sym_crate] = ACTIONS(2620), + [sym_metavariable] = ACTIONS(2618), + [sym__raw_string_literal_start] = ACTIONS(2618), + [sym_float_literal] = ACTIONS(2618), }, [STATE(701)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2622), + [sym_identifier] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_macro_rules_BANG] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2622), + [anon_sym_LBRACK] = ACTIONS(2622), + [anon_sym_LBRACE] = ACTIONS(2622), + [anon_sym_RBRACE] = ACTIONS(2622), + [anon_sym_STAR] = ACTIONS(2622), + [anon_sym_u8] = ACTIONS(2624), + [anon_sym_i8] = ACTIONS(2624), + [anon_sym_u16] = ACTIONS(2624), + [anon_sym_i16] = ACTIONS(2624), + [anon_sym_u32] = ACTIONS(2624), + [anon_sym_i32] = ACTIONS(2624), + [anon_sym_u64] = ACTIONS(2624), + [anon_sym_i64] = ACTIONS(2624), + [anon_sym_u128] = ACTIONS(2624), + [anon_sym_i128] = ACTIONS(2624), + [anon_sym_isize] = ACTIONS(2624), + [anon_sym_usize] = ACTIONS(2624), + [anon_sym_f32] = ACTIONS(2624), + [anon_sym_f64] = ACTIONS(2624), + [anon_sym_bool] = ACTIONS(2624), + [anon_sym_str] = ACTIONS(2624), + [anon_sym_char] = ACTIONS(2624), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_BANG] = ACTIONS(2622), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_DOT_DOT] = ACTIONS(2622), + [anon_sym_COLON_COLON] = ACTIONS(2622), + [anon_sym_POUND] = ACTIONS(2622), + [anon_sym_SQUOTE] = ACTIONS(2624), + [anon_sym_async] = ACTIONS(2624), + [anon_sym_become] = ACTIONS(2624), + [anon_sym_break] = ACTIONS(2624), + [anon_sym_const] = ACTIONS(2624), + [anon_sym_continue] = ACTIONS(2624), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_enum] = ACTIONS(2624), + [anon_sym_fn] = ACTIONS(2624), + [anon_sym_for] = ACTIONS(2624), + [anon_sym_gen] = ACTIONS(2624), + [anon_sym_if] = ACTIONS(2624), + [anon_sym_impl] = ACTIONS(2624), + [anon_sym_let] = ACTIONS(2624), + [anon_sym_loop] = ACTIONS(2624), + [anon_sym_match] = ACTIONS(2624), + [anon_sym_mod] = ACTIONS(2624), + [anon_sym_pub] = ACTIONS(2624), + [anon_sym_return] = ACTIONS(2624), + [anon_sym_static] = ACTIONS(2624), + [anon_sym_struct] = ACTIONS(2624), + [anon_sym_trait] = ACTIONS(2624), + [anon_sym_type] = ACTIONS(2624), + [anon_sym_union] = ACTIONS(2624), + [anon_sym_unsafe] = ACTIONS(2624), + [anon_sym_use] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2624), + [anon_sym_extern] = ACTIONS(2624), + [anon_sym_raw] = ACTIONS(2624), + [anon_sym_yield] = ACTIONS(2624), + [anon_sym_move] = ACTIONS(2624), + [anon_sym_try] = ACTIONS(2624), + [sym_integer_literal] = ACTIONS(2622), + [aux_sym_string_literal_token1] = ACTIONS(2622), + [sym_char_literal] = ACTIONS(2622), + [anon_sym_true] = ACTIONS(2624), + [anon_sym_false] = ACTIONS(2624), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2624), + [sym_super] = ACTIONS(2624), + [sym_crate] = ACTIONS(2624), + [sym_metavariable] = ACTIONS(2622), + [sym__raw_string_literal_start] = ACTIONS(2622), + [sym_float_literal] = ACTIONS(2622), }, [STATE(702)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3293), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_macro_rules_BANG] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_u8] = ACTIONS(2743), - [anon_sym_i8] = ACTIONS(2743), - [anon_sym_u16] = ACTIONS(2743), - [anon_sym_i16] = ACTIONS(2743), - [anon_sym_u32] = ACTIONS(2743), - [anon_sym_i32] = ACTIONS(2743), - [anon_sym_u64] = ACTIONS(2743), - [anon_sym_i64] = ACTIONS(2743), - [anon_sym_u128] = ACTIONS(2743), - [anon_sym_i128] = ACTIONS(2743), - [anon_sym_isize] = ACTIONS(2743), - [anon_sym_usize] = ACTIONS(2743), - [anon_sym_f32] = ACTIONS(2743), - [anon_sym_f64] = ACTIONS(2743), - [anon_sym_bool] = ACTIONS(2743), - [anon_sym_str] = ACTIONS(2743), - [anon_sym_char] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_DOT_DOT] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_async] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_gen] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_impl] = ACTIONS(2743), - [anon_sym_let] = ACTIONS(2743), - [anon_sym_loop] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2743), - [anon_sym_mod] = ACTIONS(2743), - [anon_sym_pub] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_trait] = ACTIONS(2743), - [anon_sym_type] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_unsafe] = ACTIONS(2743), - [anon_sym_use] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym_raw] = ACTIONS(2743), - [anon_sym_yield] = ACTIONS(2743), - [anon_sym_move] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [sym_integer_literal] = ACTIONS(2741), - [aux_sym_string_literal_token1] = ACTIONS(2741), - [sym_char_literal] = ACTIONS(2741), - [anon_sym_true] = ACTIONS(2743), - [anon_sym_false] = ACTIONS(2743), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2743), - [sym_super] = ACTIONS(2743), - [sym_crate] = ACTIONS(2743), - [sym_metavariable] = ACTIONS(2741), - [sym__raw_string_literal_start] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(2626), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_macro_rules_BANG] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_u8] = ACTIONS(2747), - [anon_sym_i8] = ACTIONS(2747), - [anon_sym_u16] = ACTIONS(2747), - [anon_sym_i16] = ACTIONS(2747), - [anon_sym_u32] = ACTIONS(2747), - [anon_sym_i32] = ACTIONS(2747), - [anon_sym_u64] = ACTIONS(2747), - [anon_sym_i64] = ACTIONS(2747), - [anon_sym_u128] = ACTIONS(2747), - [anon_sym_i128] = ACTIONS(2747), - [anon_sym_isize] = ACTIONS(2747), - [anon_sym_usize] = ACTIONS(2747), - [anon_sym_f32] = ACTIONS(2747), - [anon_sym_f64] = ACTIONS(2747), - [anon_sym_bool] = ACTIONS(2747), - [anon_sym_str] = ACTIONS(2747), - [anon_sym_char] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_DOT_DOT] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_async] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_gen] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_impl] = ACTIONS(2747), - [anon_sym_let] = ACTIONS(2747), - [anon_sym_loop] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_mod] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_trait] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_use] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym_raw] = ACTIONS(2747), - [anon_sym_yield] = ACTIONS(2747), - [anon_sym_move] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [sym_integer_literal] = ACTIONS(2745), - [aux_sym_string_literal_token1] = ACTIONS(2745), - [sym_char_literal] = ACTIONS(2745), - [anon_sym_true] = ACTIONS(2747), - [anon_sym_false] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2747), - [sym_super] = ACTIONS(2747), - [sym_crate] = ACTIONS(2747), - [sym_metavariable] = ACTIONS(2745), - [sym__raw_string_literal_start] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), + [ts_builtin_sym_end] = ACTIONS(2628), + [sym_identifier] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2628), + [anon_sym_macro_rules_BANG] = ACTIONS(2628), + [anon_sym_LPAREN] = ACTIONS(2628), + [anon_sym_LBRACK] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2628), + [anon_sym_RBRACE] = ACTIONS(2628), + [anon_sym_STAR] = ACTIONS(2628), + [anon_sym_u8] = ACTIONS(2630), + [anon_sym_i8] = ACTIONS(2630), + [anon_sym_u16] = ACTIONS(2630), + [anon_sym_i16] = ACTIONS(2630), + [anon_sym_u32] = ACTIONS(2630), + [anon_sym_i32] = ACTIONS(2630), + [anon_sym_u64] = ACTIONS(2630), + [anon_sym_i64] = ACTIONS(2630), + [anon_sym_u128] = ACTIONS(2630), + [anon_sym_i128] = ACTIONS(2630), + [anon_sym_isize] = ACTIONS(2630), + [anon_sym_usize] = ACTIONS(2630), + [anon_sym_f32] = ACTIONS(2630), + [anon_sym_f64] = ACTIONS(2630), + [anon_sym_bool] = ACTIONS(2630), + [anon_sym_str] = ACTIONS(2630), + [anon_sym_char] = ACTIONS(2630), + [anon_sym_DASH] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(2628), + [anon_sym_AMP] = ACTIONS(2628), + [anon_sym_PIPE] = ACTIONS(2628), + [anon_sym_LT] = ACTIONS(2628), + [anon_sym_DOT_DOT] = ACTIONS(2628), + [anon_sym_COLON_COLON] = ACTIONS(2628), + [anon_sym_POUND] = ACTIONS(2628), + [anon_sym_SQUOTE] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_become] = ACTIONS(2630), + [anon_sym_break] = ACTIONS(2630), + [anon_sym_const] = ACTIONS(2630), + [anon_sym_continue] = ACTIONS(2630), + [anon_sym_default] = ACTIONS(2630), + [anon_sym_enum] = ACTIONS(2630), + [anon_sym_fn] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2630), + [anon_sym_gen] = ACTIONS(2630), + [anon_sym_if] = ACTIONS(2630), + [anon_sym_impl] = ACTIONS(2630), + [anon_sym_let] = ACTIONS(2630), + [anon_sym_loop] = ACTIONS(2630), + [anon_sym_match] = ACTIONS(2630), + [anon_sym_mod] = ACTIONS(2630), + [anon_sym_pub] = ACTIONS(2630), + [anon_sym_return] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(2630), + [anon_sym_struct] = ACTIONS(2630), + [anon_sym_trait] = ACTIONS(2630), + [anon_sym_type] = ACTIONS(2630), + [anon_sym_union] = ACTIONS(2630), + [anon_sym_unsafe] = ACTIONS(2630), + [anon_sym_use] = ACTIONS(2630), + [anon_sym_while] = ACTIONS(2630), + [anon_sym_extern] = ACTIONS(2630), + [anon_sym_raw] = ACTIONS(2630), + [anon_sym_yield] = ACTIONS(2630), + [anon_sym_move] = ACTIONS(2630), + [anon_sym_try] = ACTIONS(2630), + [sym_integer_literal] = ACTIONS(2628), + [aux_sym_string_literal_token1] = ACTIONS(2628), + [sym_char_literal] = ACTIONS(2628), + [anon_sym_true] = ACTIONS(2630), + [anon_sym_false] = ACTIONS(2630), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2630), + [sym_super] = ACTIONS(2630), + [sym_crate] = ACTIONS(2630), + [sym_metavariable] = ACTIONS(2628), + [sym__raw_string_literal_start] = ACTIONS(2628), + [sym_float_literal] = ACTIONS(2628), }, [STATE(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_macro_rules_BANG] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_u8] = ACTIONS(2751), - [anon_sym_i8] = ACTIONS(2751), - [anon_sym_u16] = ACTIONS(2751), - [anon_sym_i16] = ACTIONS(2751), - [anon_sym_u32] = ACTIONS(2751), - [anon_sym_i32] = ACTIONS(2751), - [anon_sym_u64] = ACTIONS(2751), - [anon_sym_i64] = ACTIONS(2751), - [anon_sym_u128] = ACTIONS(2751), - [anon_sym_i128] = ACTIONS(2751), - [anon_sym_isize] = ACTIONS(2751), - [anon_sym_usize] = ACTIONS(2751), - [anon_sym_f32] = ACTIONS(2751), - [anon_sym_f64] = ACTIONS(2751), - [anon_sym_bool] = ACTIONS(2751), - [anon_sym_str] = ACTIONS(2751), - [anon_sym_char] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_async] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_fn] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_gen] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_impl] = ACTIONS(2751), - [anon_sym_let] = ACTIONS(2751), - [anon_sym_loop] = ACTIONS(2751), - [anon_sym_match] = ACTIONS(2751), - [anon_sym_mod] = ACTIONS(2751), - [anon_sym_pub] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_trait] = ACTIONS(2751), - [anon_sym_type] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_unsafe] = ACTIONS(2751), - [anon_sym_use] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym_raw] = ACTIONS(2751), - [anon_sym_yield] = ACTIONS(2751), - [anon_sym_move] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [sym_integer_literal] = ACTIONS(2749), - [aux_sym_string_literal_token1] = ACTIONS(2749), - [sym_char_literal] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(2751), - [anon_sym_false] = ACTIONS(2751), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2751), - [sym_super] = ACTIONS(2751), - [sym_crate] = ACTIONS(2751), - [sym_metavariable] = ACTIONS(2749), - [sym__raw_string_literal_start] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), + [ts_builtin_sym_end] = ACTIONS(2632), + [sym_identifier] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_macro_rules_BANG] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2632), + [anon_sym_LBRACK] = ACTIONS(2632), + [anon_sym_LBRACE] = ACTIONS(2632), + [anon_sym_RBRACE] = ACTIONS(2632), + [anon_sym_STAR] = ACTIONS(2632), + [anon_sym_u8] = ACTIONS(2634), + [anon_sym_i8] = ACTIONS(2634), + [anon_sym_u16] = ACTIONS(2634), + [anon_sym_i16] = ACTIONS(2634), + [anon_sym_u32] = ACTIONS(2634), + [anon_sym_i32] = ACTIONS(2634), + [anon_sym_u64] = ACTIONS(2634), + [anon_sym_i64] = ACTIONS(2634), + [anon_sym_u128] = ACTIONS(2634), + [anon_sym_i128] = ACTIONS(2634), + [anon_sym_isize] = ACTIONS(2634), + [anon_sym_usize] = ACTIONS(2634), + [anon_sym_f32] = ACTIONS(2634), + [anon_sym_f64] = ACTIONS(2634), + [anon_sym_bool] = ACTIONS(2634), + [anon_sym_str] = ACTIONS(2634), + [anon_sym_char] = ACTIONS(2634), + [anon_sym_DASH] = ACTIONS(2632), + [anon_sym_BANG] = ACTIONS(2632), + [anon_sym_AMP] = ACTIONS(2632), + [anon_sym_PIPE] = ACTIONS(2632), + [anon_sym_LT] = ACTIONS(2632), + [anon_sym_DOT_DOT] = ACTIONS(2632), + [anon_sym_COLON_COLON] = ACTIONS(2632), + [anon_sym_POUND] = ACTIONS(2632), + [anon_sym_SQUOTE] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(2634), + [anon_sym_become] = ACTIONS(2634), + [anon_sym_break] = ACTIONS(2634), + [anon_sym_const] = ACTIONS(2634), + [anon_sym_continue] = ACTIONS(2634), + [anon_sym_default] = ACTIONS(2634), + [anon_sym_enum] = ACTIONS(2634), + [anon_sym_fn] = ACTIONS(2634), + [anon_sym_for] = ACTIONS(2634), + [anon_sym_gen] = ACTIONS(2634), + [anon_sym_if] = ACTIONS(2634), + [anon_sym_impl] = ACTIONS(2634), + [anon_sym_let] = ACTIONS(2634), + [anon_sym_loop] = ACTIONS(2634), + [anon_sym_match] = ACTIONS(2634), + [anon_sym_mod] = ACTIONS(2634), + [anon_sym_pub] = ACTIONS(2634), + [anon_sym_return] = ACTIONS(2634), + [anon_sym_static] = ACTIONS(2634), + [anon_sym_struct] = ACTIONS(2634), + [anon_sym_trait] = ACTIONS(2634), + [anon_sym_type] = ACTIONS(2634), + [anon_sym_union] = ACTIONS(2634), + [anon_sym_unsafe] = ACTIONS(2634), + [anon_sym_use] = ACTIONS(2634), + [anon_sym_while] = ACTIONS(2634), + [anon_sym_extern] = ACTIONS(2634), + [anon_sym_raw] = ACTIONS(2634), + [anon_sym_yield] = ACTIONS(2634), + [anon_sym_move] = ACTIONS(2634), + [anon_sym_try] = ACTIONS(2634), + [sym_integer_literal] = ACTIONS(2632), + [aux_sym_string_literal_token1] = ACTIONS(2632), + [sym_char_literal] = ACTIONS(2632), + [anon_sym_true] = ACTIONS(2634), + [anon_sym_false] = ACTIONS(2634), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_crate] = ACTIONS(2634), + [sym_metavariable] = ACTIONS(2632), + [sym__raw_string_literal_start] = ACTIONS(2632), + [sym_float_literal] = ACTIONS(2632), }, [STATE(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_macro_rules_BANG] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_u8] = ACTIONS(2755), - [anon_sym_i8] = ACTIONS(2755), - [anon_sym_u16] = ACTIONS(2755), - [anon_sym_i16] = ACTIONS(2755), - [anon_sym_u32] = ACTIONS(2755), - [anon_sym_i32] = ACTIONS(2755), - [anon_sym_u64] = ACTIONS(2755), - [anon_sym_i64] = ACTIONS(2755), - [anon_sym_u128] = ACTIONS(2755), - [anon_sym_i128] = ACTIONS(2755), - [anon_sym_isize] = ACTIONS(2755), - [anon_sym_usize] = ACTIONS(2755), - [anon_sym_f32] = ACTIONS(2755), - [anon_sym_f64] = ACTIONS(2755), - [anon_sym_bool] = ACTIONS(2755), - [anon_sym_str] = ACTIONS(2755), - [anon_sym_char] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_DOT_DOT] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_POUND] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_async] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_fn] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_gen] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_impl] = ACTIONS(2755), - [anon_sym_let] = ACTIONS(2755), - [anon_sym_loop] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2755), - [anon_sym_mod] = ACTIONS(2755), - [anon_sym_pub] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_trait] = ACTIONS(2755), - [anon_sym_type] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_unsafe] = ACTIONS(2755), - [anon_sym_use] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym_raw] = ACTIONS(2755), - [anon_sym_yield] = ACTIONS(2755), - [anon_sym_move] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [sym_integer_literal] = ACTIONS(2753), - [aux_sym_string_literal_token1] = ACTIONS(2753), - [sym_char_literal] = ACTIONS(2753), - [anon_sym_true] = ACTIONS(2755), - [anon_sym_false] = ACTIONS(2755), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2755), - [sym_super] = ACTIONS(2755), - [sym_crate] = ACTIONS(2755), - [sym_metavariable] = ACTIONS(2753), - [sym__raw_string_literal_start] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2753), + [ts_builtin_sym_end] = ACTIONS(2636), + [sym_identifier] = ACTIONS(2638), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_macro_rules_BANG] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2636), + [anon_sym_LBRACK] = ACTIONS(2636), + [anon_sym_LBRACE] = ACTIONS(2636), + [anon_sym_RBRACE] = ACTIONS(2636), + [anon_sym_STAR] = ACTIONS(2636), + [anon_sym_u8] = ACTIONS(2638), + [anon_sym_i8] = ACTIONS(2638), + [anon_sym_u16] = ACTIONS(2638), + [anon_sym_i16] = ACTIONS(2638), + [anon_sym_u32] = ACTIONS(2638), + [anon_sym_i32] = ACTIONS(2638), + [anon_sym_u64] = ACTIONS(2638), + [anon_sym_i64] = ACTIONS(2638), + [anon_sym_u128] = ACTIONS(2638), + [anon_sym_i128] = ACTIONS(2638), + [anon_sym_isize] = ACTIONS(2638), + [anon_sym_usize] = ACTIONS(2638), + [anon_sym_f32] = ACTIONS(2638), + [anon_sym_f64] = ACTIONS(2638), + [anon_sym_bool] = ACTIONS(2638), + [anon_sym_str] = ACTIONS(2638), + [anon_sym_char] = ACTIONS(2638), + [anon_sym_DASH] = ACTIONS(2636), + [anon_sym_BANG] = ACTIONS(2636), + [anon_sym_AMP] = ACTIONS(2636), + [anon_sym_PIPE] = ACTIONS(2636), + [anon_sym_LT] = ACTIONS(2636), + [anon_sym_DOT_DOT] = ACTIONS(2636), + [anon_sym_COLON_COLON] = ACTIONS(2636), + [anon_sym_POUND] = ACTIONS(2636), + [anon_sym_SQUOTE] = ACTIONS(2638), + [anon_sym_async] = ACTIONS(2638), + [anon_sym_become] = ACTIONS(2638), + [anon_sym_break] = ACTIONS(2638), + [anon_sym_const] = ACTIONS(2638), + [anon_sym_continue] = ACTIONS(2638), + [anon_sym_default] = ACTIONS(2638), + [anon_sym_enum] = ACTIONS(2638), + [anon_sym_fn] = ACTIONS(2638), + [anon_sym_for] = ACTIONS(2638), + [anon_sym_gen] = ACTIONS(2638), + [anon_sym_if] = ACTIONS(2638), + [anon_sym_impl] = ACTIONS(2638), + [anon_sym_let] = ACTIONS(2638), + [anon_sym_loop] = ACTIONS(2638), + [anon_sym_match] = ACTIONS(2638), + [anon_sym_mod] = ACTIONS(2638), + [anon_sym_pub] = ACTIONS(2638), + [anon_sym_return] = ACTIONS(2638), + [anon_sym_static] = ACTIONS(2638), + [anon_sym_struct] = ACTIONS(2638), + [anon_sym_trait] = ACTIONS(2638), + [anon_sym_type] = ACTIONS(2638), + [anon_sym_union] = ACTIONS(2638), + [anon_sym_unsafe] = ACTIONS(2638), + [anon_sym_use] = ACTIONS(2638), + [anon_sym_while] = ACTIONS(2638), + [anon_sym_extern] = ACTIONS(2638), + [anon_sym_raw] = ACTIONS(2638), + [anon_sym_yield] = ACTIONS(2638), + [anon_sym_move] = ACTIONS(2638), + [anon_sym_try] = ACTIONS(2638), + [sym_integer_literal] = ACTIONS(2636), + [aux_sym_string_literal_token1] = ACTIONS(2636), + [sym_char_literal] = ACTIONS(2636), + [anon_sym_true] = ACTIONS(2638), + [anon_sym_false] = ACTIONS(2638), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2638), + [sym_super] = ACTIONS(2638), + [sym_crate] = ACTIONS(2638), + [sym_metavariable] = ACTIONS(2636), + [sym__raw_string_literal_start] = ACTIONS(2636), + [sym_float_literal] = ACTIONS(2636), }, [STATE(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2757), - [sym_identifier] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_macro_rules_BANG] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_u8] = ACTIONS(2759), - [anon_sym_i8] = ACTIONS(2759), - [anon_sym_u16] = ACTIONS(2759), - [anon_sym_i16] = ACTIONS(2759), - [anon_sym_u32] = ACTIONS(2759), - [anon_sym_i32] = ACTIONS(2759), - [anon_sym_u64] = ACTIONS(2759), - [anon_sym_i64] = ACTIONS(2759), - [anon_sym_u128] = ACTIONS(2759), - [anon_sym_i128] = ACTIONS(2759), - [anon_sym_isize] = ACTIONS(2759), - [anon_sym_usize] = ACTIONS(2759), - [anon_sym_f32] = ACTIONS(2759), - [anon_sym_f64] = ACTIONS(2759), - [anon_sym_bool] = ACTIONS(2759), - [anon_sym_str] = ACTIONS(2759), - [anon_sym_char] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_DOT_DOT] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_async] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_fn] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_gen] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_impl] = ACTIONS(2759), - [anon_sym_let] = ACTIONS(2759), - [anon_sym_loop] = ACTIONS(2759), - [anon_sym_match] = ACTIONS(2759), - [anon_sym_mod] = ACTIONS(2759), - [anon_sym_pub] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_trait] = ACTIONS(2759), - [anon_sym_type] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_unsafe] = ACTIONS(2759), - [anon_sym_use] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym_raw] = ACTIONS(2759), - [anon_sym_yield] = ACTIONS(2759), - [anon_sym_move] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [sym_integer_literal] = ACTIONS(2757), - [aux_sym_string_literal_token1] = ACTIONS(2757), - [sym_char_literal] = ACTIONS(2757), - [anon_sym_true] = ACTIONS(2759), - [anon_sym_false] = ACTIONS(2759), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2759), - [sym_super] = ACTIONS(2759), - [sym_crate] = ACTIONS(2759), - [sym_metavariable] = ACTIONS(2757), - [sym__raw_string_literal_start] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), + [ts_builtin_sym_end] = ACTIONS(2640), + [sym_identifier] = ACTIONS(2642), + [anon_sym_SEMI] = ACTIONS(2640), + [anon_sym_macro_rules_BANG] = ACTIONS(2640), + [anon_sym_LPAREN] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACE] = ACTIONS(2640), + [anon_sym_RBRACE] = ACTIONS(2640), + [anon_sym_STAR] = ACTIONS(2640), + [anon_sym_u8] = ACTIONS(2642), + [anon_sym_i8] = ACTIONS(2642), + [anon_sym_u16] = ACTIONS(2642), + [anon_sym_i16] = ACTIONS(2642), + [anon_sym_u32] = ACTIONS(2642), + [anon_sym_i32] = ACTIONS(2642), + [anon_sym_u64] = ACTIONS(2642), + [anon_sym_i64] = ACTIONS(2642), + [anon_sym_u128] = ACTIONS(2642), + [anon_sym_i128] = ACTIONS(2642), + [anon_sym_isize] = ACTIONS(2642), + [anon_sym_usize] = ACTIONS(2642), + [anon_sym_f32] = ACTIONS(2642), + [anon_sym_f64] = ACTIONS(2642), + [anon_sym_bool] = ACTIONS(2642), + [anon_sym_str] = ACTIONS(2642), + [anon_sym_char] = ACTIONS(2642), + [anon_sym_DASH] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(2640), + [anon_sym_AMP] = ACTIONS(2640), + [anon_sym_PIPE] = ACTIONS(2640), + [anon_sym_LT] = ACTIONS(2640), + [anon_sym_DOT_DOT] = ACTIONS(2640), + [anon_sym_COLON_COLON] = ACTIONS(2640), + [anon_sym_POUND] = ACTIONS(2640), + [anon_sym_SQUOTE] = ACTIONS(2642), + [anon_sym_async] = ACTIONS(2642), + [anon_sym_become] = ACTIONS(2642), + [anon_sym_break] = ACTIONS(2642), + [anon_sym_const] = ACTIONS(2642), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_default] = ACTIONS(2642), + [anon_sym_enum] = ACTIONS(2642), + [anon_sym_fn] = ACTIONS(2642), + [anon_sym_for] = ACTIONS(2642), + [anon_sym_gen] = ACTIONS(2642), + [anon_sym_if] = ACTIONS(2642), + [anon_sym_impl] = ACTIONS(2642), + [anon_sym_let] = ACTIONS(2642), + [anon_sym_loop] = ACTIONS(2642), + [anon_sym_match] = ACTIONS(2642), + [anon_sym_mod] = ACTIONS(2642), + [anon_sym_pub] = ACTIONS(2642), + [anon_sym_return] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2642), + [anon_sym_struct] = ACTIONS(2642), + [anon_sym_trait] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_union] = ACTIONS(2642), + [anon_sym_unsafe] = ACTIONS(2642), + [anon_sym_use] = ACTIONS(2642), + [anon_sym_while] = ACTIONS(2642), + [anon_sym_extern] = ACTIONS(2642), + [anon_sym_raw] = ACTIONS(2642), + [anon_sym_yield] = ACTIONS(2642), + [anon_sym_move] = ACTIONS(2642), + [anon_sym_try] = ACTIONS(2642), + [sym_integer_literal] = ACTIONS(2640), + [aux_sym_string_literal_token1] = ACTIONS(2640), + [sym_char_literal] = ACTIONS(2640), + [anon_sym_true] = ACTIONS(2642), + [anon_sym_false] = ACTIONS(2642), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2642), + [sym_super] = ACTIONS(2642), + [sym_crate] = ACTIONS(2642), + [sym_metavariable] = ACTIONS(2640), + [sym__raw_string_literal_start] = ACTIONS(2640), + [sym_float_literal] = ACTIONS(2640), }, [STATE(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2761), - [sym_identifier] = ACTIONS(2763), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_macro_rules_BANG] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_u8] = ACTIONS(2763), - [anon_sym_i8] = ACTIONS(2763), - [anon_sym_u16] = ACTIONS(2763), - [anon_sym_i16] = ACTIONS(2763), - [anon_sym_u32] = ACTIONS(2763), - [anon_sym_i32] = ACTIONS(2763), - [anon_sym_u64] = ACTIONS(2763), - [anon_sym_i64] = ACTIONS(2763), - [anon_sym_u128] = ACTIONS(2763), - [anon_sym_i128] = ACTIONS(2763), - [anon_sym_isize] = ACTIONS(2763), - [anon_sym_usize] = ACTIONS(2763), - [anon_sym_f32] = ACTIONS(2763), - [anon_sym_f64] = ACTIONS(2763), - [anon_sym_bool] = ACTIONS(2763), - [anon_sym_str] = ACTIONS(2763), - [anon_sym_char] = ACTIONS(2763), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_DOT_DOT] = ACTIONS(2761), - [anon_sym_COLON_COLON] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_SQUOTE] = ACTIONS(2763), - [anon_sym_async] = ACTIONS(2763), - [anon_sym_break] = ACTIONS(2763), - [anon_sym_const] = ACTIONS(2763), - [anon_sym_continue] = ACTIONS(2763), - [anon_sym_default] = ACTIONS(2763), - [anon_sym_enum] = ACTIONS(2763), - [anon_sym_fn] = ACTIONS(2763), - [anon_sym_for] = ACTIONS(2763), - [anon_sym_gen] = ACTIONS(2763), - [anon_sym_if] = ACTIONS(2763), - [anon_sym_impl] = ACTIONS(2763), - [anon_sym_let] = ACTIONS(2763), - [anon_sym_loop] = ACTIONS(2763), - [anon_sym_match] = ACTIONS(2763), - [anon_sym_mod] = ACTIONS(2763), - [anon_sym_pub] = ACTIONS(2763), - [anon_sym_return] = ACTIONS(2763), - [anon_sym_static] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(2763), - [anon_sym_trait] = ACTIONS(2763), - [anon_sym_type] = ACTIONS(2763), - [anon_sym_union] = ACTIONS(2763), - [anon_sym_unsafe] = ACTIONS(2763), - [anon_sym_use] = ACTIONS(2763), - [anon_sym_while] = ACTIONS(2763), - [anon_sym_extern] = ACTIONS(2763), - [anon_sym_raw] = ACTIONS(2763), - [anon_sym_yield] = ACTIONS(2763), - [anon_sym_move] = ACTIONS(2763), - [anon_sym_try] = ACTIONS(2763), - [sym_integer_literal] = ACTIONS(2761), - [aux_sym_string_literal_token1] = ACTIONS(2761), - [sym_char_literal] = ACTIONS(2761), - [anon_sym_true] = ACTIONS(2763), - [anon_sym_false] = ACTIONS(2763), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2763), - [sym_super] = ACTIONS(2763), - [sym_crate] = ACTIONS(2763), - [sym_metavariable] = ACTIONS(2761), - [sym__raw_string_literal_start] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), + [ts_builtin_sym_end] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2646), + [anon_sym_SEMI] = ACTIONS(2644), + [anon_sym_macro_rules_BANG] = ACTIONS(2644), + [anon_sym_LPAREN] = ACTIONS(2644), + [anon_sym_LBRACK] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(2644), + [anon_sym_RBRACE] = ACTIONS(2644), + [anon_sym_STAR] = ACTIONS(2644), + [anon_sym_u8] = ACTIONS(2646), + [anon_sym_i8] = ACTIONS(2646), + [anon_sym_u16] = ACTIONS(2646), + [anon_sym_i16] = ACTIONS(2646), + [anon_sym_u32] = ACTIONS(2646), + [anon_sym_i32] = ACTIONS(2646), + [anon_sym_u64] = ACTIONS(2646), + [anon_sym_i64] = ACTIONS(2646), + [anon_sym_u128] = ACTIONS(2646), + [anon_sym_i128] = ACTIONS(2646), + [anon_sym_isize] = ACTIONS(2646), + [anon_sym_usize] = ACTIONS(2646), + [anon_sym_f32] = ACTIONS(2646), + [anon_sym_f64] = ACTIONS(2646), + [anon_sym_bool] = ACTIONS(2646), + [anon_sym_str] = ACTIONS(2646), + [anon_sym_char] = ACTIONS(2646), + [anon_sym_DASH] = ACTIONS(2644), + [anon_sym_BANG] = ACTIONS(2644), + [anon_sym_AMP] = ACTIONS(2644), + [anon_sym_PIPE] = ACTIONS(2644), + [anon_sym_LT] = ACTIONS(2644), + [anon_sym_DOT_DOT] = ACTIONS(2644), + [anon_sym_COLON_COLON] = ACTIONS(2644), + [anon_sym_POUND] = ACTIONS(2644), + [anon_sym_SQUOTE] = ACTIONS(2646), + [anon_sym_async] = ACTIONS(2646), + [anon_sym_become] = ACTIONS(2646), + [anon_sym_break] = ACTIONS(2646), + [anon_sym_const] = ACTIONS(2646), + [anon_sym_continue] = ACTIONS(2646), + [anon_sym_default] = ACTIONS(2646), + [anon_sym_enum] = ACTIONS(2646), + [anon_sym_fn] = ACTIONS(2646), + [anon_sym_for] = ACTIONS(2646), + [anon_sym_gen] = ACTIONS(2646), + [anon_sym_if] = ACTIONS(2646), + [anon_sym_impl] = ACTIONS(2646), + [anon_sym_let] = ACTIONS(2646), + [anon_sym_loop] = ACTIONS(2646), + [anon_sym_match] = ACTIONS(2646), + [anon_sym_mod] = ACTIONS(2646), + [anon_sym_pub] = ACTIONS(2646), + [anon_sym_return] = ACTIONS(2646), + [anon_sym_static] = ACTIONS(2646), + [anon_sym_struct] = ACTIONS(2646), + [anon_sym_trait] = ACTIONS(2646), + [anon_sym_type] = ACTIONS(2646), + [anon_sym_union] = ACTIONS(2646), + [anon_sym_unsafe] = ACTIONS(2646), + [anon_sym_use] = ACTIONS(2646), + [anon_sym_while] = ACTIONS(2646), + [anon_sym_extern] = ACTIONS(2646), + [anon_sym_raw] = ACTIONS(2646), + [anon_sym_yield] = ACTIONS(2646), + [anon_sym_move] = ACTIONS(2646), + [anon_sym_try] = ACTIONS(2646), + [sym_integer_literal] = ACTIONS(2644), + [aux_sym_string_literal_token1] = ACTIONS(2644), + [sym_char_literal] = ACTIONS(2644), + [anon_sym_true] = ACTIONS(2646), + [anon_sym_false] = ACTIONS(2646), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2646), + [sym_super] = ACTIONS(2646), + [sym_crate] = ACTIONS(2646), + [sym_metavariable] = ACTIONS(2644), + [sym__raw_string_literal_start] = ACTIONS(2644), + [sym_float_literal] = ACTIONS(2644), }, [STATE(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2765), - [sym_identifier] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_macro_rules_BANG] = ACTIONS(2765), - [anon_sym_LPAREN] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2765), - [anon_sym_LBRACE] = ACTIONS(2765), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_u8] = ACTIONS(2767), - [anon_sym_i8] = ACTIONS(2767), - [anon_sym_u16] = ACTIONS(2767), - [anon_sym_i16] = ACTIONS(2767), - [anon_sym_u32] = ACTIONS(2767), - [anon_sym_i32] = ACTIONS(2767), - [anon_sym_u64] = ACTIONS(2767), - [anon_sym_i64] = ACTIONS(2767), - [anon_sym_u128] = ACTIONS(2767), - [anon_sym_i128] = ACTIONS(2767), - [anon_sym_isize] = ACTIONS(2767), - [anon_sym_usize] = ACTIONS(2767), - [anon_sym_f32] = ACTIONS(2767), - [anon_sym_f64] = ACTIONS(2767), - [anon_sym_bool] = ACTIONS(2767), - [anon_sym_str] = ACTIONS(2767), - [anon_sym_char] = ACTIONS(2767), - [anon_sym_DASH] = ACTIONS(2765), - [anon_sym_BANG] = ACTIONS(2765), - [anon_sym_AMP] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_LT] = ACTIONS(2765), - [anon_sym_DOT_DOT] = ACTIONS(2765), - [anon_sym_COLON_COLON] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_SQUOTE] = ACTIONS(2767), - [anon_sym_async] = ACTIONS(2767), - [anon_sym_break] = ACTIONS(2767), - [anon_sym_const] = ACTIONS(2767), - [anon_sym_continue] = ACTIONS(2767), - [anon_sym_default] = ACTIONS(2767), - [anon_sym_enum] = ACTIONS(2767), - [anon_sym_fn] = ACTIONS(2767), - [anon_sym_for] = ACTIONS(2767), - [anon_sym_gen] = ACTIONS(2767), - [anon_sym_if] = ACTIONS(2767), - [anon_sym_impl] = ACTIONS(2767), - [anon_sym_let] = ACTIONS(2767), - [anon_sym_loop] = ACTIONS(2767), - [anon_sym_match] = ACTIONS(2767), - [anon_sym_mod] = ACTIONS(2767), - [anon_sym_pub] = ACTIONS(2767), - [anon_sym_return] = ACTIONS(2767), - [anon_sym_static] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(2767), - [anon_sym_trait] = ACTIONS(2767), - [anon_sym_type] = ACTIONS(2767), - [anon_sym_union] = ACTIONS(2767), - [anon_sym_unsafe] = ACTIONS(2767), - [anon_sym_use] = ACTIONS(2767), - [anon_sym_while] = ACTIONS(2767), - [anon_sym_extern] = ACTIONS(2767), - [anon_sym_raw] = ACTIONS(2767), - [anon_sym_yield] = ACTIONS(2767), - [anon_sym_move] = ACTIONS(2767), - [anon_sym_try] = ACTIONS(2767), - [sym_integer_literal] = ACTIONS(2765), - [aux_sym_string_literal_token1] = ACTIONS(2765), - [sym_char_literal] = ACTIONS(2765), - [anon_sym_true] = ACTIONS(2767), - [anon_sym_false] = ACTIONS(2767), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2767), - [sym_super] = ACTIONS(2767), - [sym_crate] = ACTIONS(2767), - [sym_metavariable] = ACTIONS(2765), - [sym__raw_string_literal_start] = ACTIONS(2765), - [sym_float_literal] = ACTIONS(2765), + [ts_builtin_sym_end] = ACTIONS(2648), + [sym_identifier] = ACTIONS(2650), + [anon_sym_SEMI] = ACTIONS(2648), + [anon_sym_macro_rules_BANG] = ACTIONS(2648), + [anon_sym_LPAREN] = ACTIONS(2648), + [anon_sym_LBRACK] = ACTIONS(2648), + [anon_sym_LBRACE] = ACTIONS(2648), + [anon_sym_RBRACE] = ACTIONS(2648), + [anon_sym_STAR] = ACTIONS(2648), + [anon_sym_u8] = ACTIONS(2650), + [anon_sym_i8] = ACTIONS(2650), + [anon_sym_u16] = ACTIONS(2650), + [anon_sym_i16] = ACTIONS(2650), + [anon_sym_u32] = ACTIONS(2650), + [anon_sym_i32] = ACTIONS(2650), + [anon_sym_u64] = ACTIONS(2650), + [anon_sym_i64] = ACTIONS(2650), + [anon_sym_u128] = ACTIONS(2650), + [anon_sym_i128] = ACTIONS(2650), + [anon_sym_isize] = ACTIONS(2650), + [anon_sym_usize] = ACTIONS(2650), + [anon_sym_f32] = ACTIONS(2650), + [anon_sym_f64] = ACTIONS(2650), + [anon_sym_bool] = ACTIONS(2650), + [anon_sym_str] = ACTIONS(2650), + [anon_sym_char] = ACTIONS(2650), + [anon_sym_DASH] = ACTIONS(2648), + [anon_sym_BANG] = ACTIONS(2648), + [anon_sym_AMP] = ACTIONS(2648), + [anon_sym_PIPE] = ACTIONS(2648), + [anon_sym_LT] = ACTIONS(2648), + [anon_sym_DOT_DOT] = ACTIONS(2648), + [anon_sym_COLON_COLON] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(2648), + [anon_sym_SQUOTE] = ACTIONS(2650), + [anon_sym_async] = ACTIONS(2650), + [anon_sym_become] = ACTIONS(2650), + [anon_sym_break] = ACTIONS(2650), + [anon_sym_const] = ACTIONS(2650), + [anon_sym_continue] = ACTIONS(2650), + [anon_sym_default] = ACTIONS(2650), + [anon_sym_enum] = ACTIONS(2650), + [anon_sym_fn] = ACTIONS(2650), + [anon_sym_for] = ACTIONS(2650), + [anon_sym_gen] = ACTIONS(2650), + [anon_sym_if] = ACTIONS(2650), + [anon_sym_impl] = ACTIONS(2650), + [anon_sym_let] = ACTIONS(2650), + [anon_sym_loop] = ACTIONS(2650), + [anon_sym_match] = ACTIONS(2650), + [anon_sym_mod] = ACTIONS(2650), + [anon_sym_pub] = ACTIONS(2650), + [anon_sym_return] = ACTIONS(2650), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_struct] = ACTIONS(2650), + [anon_sym_trait] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_union] = ACTIONS(2650), + [anon_sym_unsafe] = ACTIONS(2650), + [anon_sym_use] = ACTIONS(2650), + [anon_sym_while] = ACTIONS(2650), + [anon_sym_extern] = ACTIONS(2650), + [anon_sym_raw] = ACTIONS(2650), + [anon_sym_yield] = ACTIONS(2650), + [anon_sym_move] = ACTIONS(2650), + [anon_sym_try] = ACTIONS(2650), + [sym_integer_literal] = ACTIONS(2648), + [aux_sym_string_literal_token1] = ACTIONS(2648), + [sym_char_literal] = ACTIONS(2648), + [anon_sym_true] = ACTIONS(2650), + [anon_sym_false] = ACTIONS(2650), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2650), + [sym_super] = ACTIONS(2650), + [sym_crate] = ACTIONS(2650), + [sym_metavariable] = ACTIONS(2648), + [sym__raw_string_literal_start] = ACTIONS(2648), + [sym_float_literal] = ACTIONS(2648), }, [STATE(709)] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2769), - [sym_identifier] = ACTIONS(2771), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym_macro_rules_BANG] = ACTIONS(2769), - [anon_sym_LPAREN] = ACTIONS(2769), - [anon_sym_LBRACK] = ACTIONS(2769), - [anon_sym_LBRACE] = ACTIONS(2769), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_u8] = ACTIONS(2771), - [anon_sym_i8] = ACTIONS(2771), - [anon_sym_u16] = ACTIONS(2771), - [anon_sym_i16] = ACTIONS(2771), - [anon_sym_u32] = ACTIONS(2771), - [anon_sym_i32] = ACTIONS(2771), - [anon_sym_u64] = ACTIONS(2771), - [anon_sym_i64] = ACTIONS(2771), - [anon_sym_u128] = ACTIONS(2771), - [anon_sym_i128] = ACTIONS(2771), - [anon_sym_isize] = ACTIONS(2771), - [anon_sym_usize] = ACTIONS(2771), - [anon_sym_f32] = ACTIONS(2771), - [anon_sym_f64] = ACTIONS(2771), - [anon_sym_bool] = ACTIONS(2771), - [anon_sym_str] = ACTIONS(2771), - [anon_sym_char] = ACTIONS(2771), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_AMP] = ACTIONS(2769), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_DOT_DOT] = ACTIONS(2769), - [anon_sym_COLON_COLON] = ACTIONS(2769), - [anon_sym_POUND] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2771), - [anon_sym_async] = ACTIONS(2771), - [anon_sym_break] = ACTIONS(2771), - [anon_sym_const] = ACTIONS(2771), - [anon_sym_continue] = ACTIONS(2771), - [anon_sym_default] = ACTIONS(2771), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_fn] = ACTIONS(2771), - [anon_sym_for] = ACTIONS(2771), - [anon_sym_gen] = ACTIONS(2771), - [anon_sym_if] = ACTIONS(2771), - [anon_sym_impl] = ACTIONS(2771), - [anon_sym_let] = ACTIONS(2771), - [anon_sym_loop] = ACTIONS(2771), - [anon_sym_match] = ACTIONS(2771), - [anon_sym_mod] = ACTIONS(2771), - [anon_sym_pub] = ACTIONS(2771), - [anon_sym_return] = ACTIONS(2771), - [anon_sym_static] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(2771), - [anon_sym_trait] = ACTIONS(2771), - [anon_sym_type] = ACTIONS(2771), - [anon_sym_union] = ACTIONS(2771), - [anon_sym_unsafe] = ACTIONS(2771), - [anon_sym_use] = ACTIONS(2771), - [anon_sym_while] = ACTIONS(2771), - [anon_sym_extern] = ACTIONS(2771), - [anon_sym_raw] = ACTIONS(2771), - [anon_sym_yield] = ACTIONS(2771), - [anon_sym_move] = ACTIONS(2771), - [anon_sym_try] = ACTIONS(2771), - [sym_integer_literal] = ACTIONS(2769), - [aux_sym_string_literal_token1] = ACTIONS(2769), - [sym_char_literal] = ACTIONS(2769), - [anon_sym_true] = ACTIONS(2771), - [anon_sym_false] = ACTIONS(2771), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2771), - [sym_super] = ACTIONS(2771), - [sym_crate] = ACTIONS(2771), - [sym_metavariable] = ACTIONS(2769), - [sym__raw_string_literal_start] = ACTIONS(2769), - [sym_float_literal] = ACTIONS(2769), + [ts_builtin_sym_end] = ACTIONS(2652), + [sym_identifier] = ACTIONS(2654), + [anon_sym_SEMI] = ACTIONS(2652), + [anon_sym_macro_rules_BANG] = ACTIONS(2652), + [anon_sym_LPAREN] = ACTIONS(2652), + [anon_sym_LBRACK] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2652), + [anon_sym_RBRACE] = ACTIONS(2652), + [anon_sym_STAR] = ACTIONS(2652), + [anon_sym_u8] = ACTIONS(2654), + [anon_sym_i8] = ACTIONS(2654), + [anon_sym_u16] = ACTIONS(2654), + [anon_sym_i16] = ACTIONS(2654), + [anon_sym_u32] = ACTIONS(2654), + [anon_sym_i32] = ACTIONS(2654), + [anon_sym_u64] = ACTIONS(2654), + [anon_sym_i64] = ACTIONS(2654), + [anon_sym_u128] = ACTIONS(2654), + [anon_sym_i128] = ACTIONS(2654), + [anon_sym_isize] = ACTIONS(2654), + [anon_sym_usize] = ACTIONS(2654), + [anon_sym_f32] = ACTIONS(2654), + [anon_sym_f64] = ACTIONS(2654), + [anon_sym_bool] = ACTIONS(2654), + [anon_sym_str] = ACTIONS(2654), + [anon_sym_char] = ACTIONS(2654), + [anon_sym_DASH] = ACTIONS(2652), + [anon_sym_BANG] = ACTIONS(2652), + [anon_sym_AMP] = ACTIONS(2652), + [anon_sym_PIPE] = ACTIONS(2652), + [anon_sym_LT] = ACTIONS(2652), + [anon_sym_DOT_DOT] = ACTIONS(2652), + [anon_sym_COLON_COLON] = ACTIONS(2652), + [anon_sym_POUND] = ACTIONS(2652), + [anon_sym_SQUOTE] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_become] = ACTIONS(2654), + [anon_sym_break] = ACTIONS(2654), + [anon_sym_const] = ACTIONS(2654), + [anon_sym_continue] = ACTIONS(2654), + [anon_sym_default] = ACTIONS(2654), + [anon_sym_enum] = ACTIONS(2654), + [anon_sym_fn] = ACTIONS(2654), + [anon_sym_for] = ACTIONS(2654), + [anon_sym_gen] = ACTIONS(2654), + [anon_sym_if] = ACTIONS(2654), + [anon_sym_impl] = ACTIONS(2654), + [anon_sym_let] = ACTIONS(2654), + [anon_sym_loop] = ACTIONS(2654), + [anon_sym_match] = ACTIONS(2654), + [anon_sym_mod] = ACTIONS(2654), + [anon_sym_pub] = ACTIONS(2654), + [anon_sym_return] = ACTIONS(2654), + [anon_sym_static] = ACTIONS(2654), + [anon_sym_struct] = ACTIONS(2654), + [anon_sym_trait] = ACTIONS(2654), + [anon_sym_type] = ACTIONS(2654), + [anon_sym_union] = ACTIONS(2654), + [anon_sym_unsafe] = ACTIONS(2654), + [anon_sym_use] = ACTIONS(2654), + [anon_sym_while] = ACTIONS(2654), + [anon_sym_extern] = ACTIONS(2654), + [anon_sym_raw] = ACTIONS(2654), + [anon_sym_yield] = ACTIONS(2654), + [anon_sym_move] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2654), + [sym_integer_literal] = ACTIONS(2652), + [aux_sym_string_literal_token1] = ACTIONS(2652), + [sym_char_literal] = ACTIONS(2652), + [anon_sym_true] = ACTIONS(2654), + [anon_sym_false] = ACTIONS(2654), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2654), + [sym_super] = ACTIONS(2654), + [sym_crate] = ACTIONS(2654), + [sym_metavariable] = ACTIONS(2652), + [sym__raw_string_literal_start] = ACTIONS(2652), + [sym_float_literal] = ACTIONS(2652), }, [STATE(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2773), - [sym_identifier] = ACTIONS(2775), - [anon_sym_SEMI] = ACTIONS(2773), - [anon_sym_macro_rules_BANG] = ACTIONS(2773), - [anon_sym_LPAREN] = ACTIONS(2773), - [anon_sym_LBRACK] = ACTIONS(2773), - [anon_sym_LBRACE] = ACTIONS(2773), - [anon_sym_RBRACE] = ACTIONS(2773), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_u8] = ACTIONS(2775), - [anon_sym_i8] = ACTIONS(2775), - [anon_sym_u16] = ACTIONS(2775), - [anon_sym_i16] = ACTIONS(2775), - [anon_sym_u32] = ACTIONS(2775), - [anon_sym_i32] = ACTIONS(2775), - [anon_sym_u64] = ACTIONS(2775), - [anon_sym_i64] = ACTIONS(2775), - [anon_sym_u128] = ACTIONS(2775), - [anon_sym_i128] = ACTIONS(2775), - [anon_sym_isize] = ACTIONS(2775), - [anon_sym_usize] = ACTIONS(2775), - [anon_sym_f32] = ACTIONS(2775), - [anon_sym_f64] = ACTIONS(2775), - [anon_sym_bool] = ACTIONS(2775), - [anon_sym_str] = ACTIONS(2775), - [anon_sym_char] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [anon_sym_BANG] = ACTIONS(2773), - [anon_sym_AMP] = ACTIONS(2773), - [anon_sym_PIPE] = ACTIONS(2773), - [anon_sym_LT] = ACTIONS(2773), - [anon_sym_DOT_DOT] = ACTIONS(2773), - [anon_sym_COLON_COLON] = ACTIONS(2773), - [anon_sym_POUND] = ACTIONS(2773), - [anon_sym_SQUOTE] = ACTIONS(2775), - [anon_sym_async] = ACTIONS(2775), - [anon_sym_break] = ACTIONS(2775), - [anon_sym_const] = ACTIONS(2775), - [anon_sym_continue] = ACTIONS(2775), - [anon_sym_default] = ACTIONS(2775), - [anon_sym_enum] = ACTIONS(2775), - [anon_sym_fn] = ACTIONS(2775), - [anon_sym_for] = ACTIONS(2775), - [anon_sym_gen] = ACTIONS(2775), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_impl] = ACTIONS(2775), - [anon_sym_let] = ACTIONS(2775), - [anon_sym_loop] = ACTIONS(2775), - [anon_sym_match] = ACTIONS(2775), - [anon_sym_mod] = ACTIONS(2775), - [anon_sym_pub] = ACTIONS(2775), - [anon_sym_return] = ACTIONS(2775), - [anon_sym_static] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(2775), - [anon_sym_trait] = ACTIONS(2775), - [anon_sym_type] = ACTIONS(2775), - [anon_sym_union] = ACTIONS(2775), - [anon_sym_unsafe] = ACTIONS(2775), - [anon_sym_use] = ACTIONS(2775), - [anon_sym_while] = ACTIONS(2775), - [anon_sym_extern] = ACTIONS(2775), - [anon_sym_raw] = ACTIONS(2775), - [anon_sym_yield] = ACTIONS(2775), - [anon_sym_move] = ACTIONS(2775), - [anon_sym_try] = ACTIONS(2775), - [sym_integer_literal] = ACTIONS(2773), - [aux_sym_string_literal_token1] = ACTIONS(2773), - [sym_char_literal] = ACTIONS(2773), - [anon_sym_true] = ACTIONS(2775), - [anon_sym_false] = ACTIONS(2775), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2775), - [sym_super] = ACTIONS(2775), - [sym_crate] = ACTIONS(2775), - [sym_metavariable] = ACTIONS(2773), - [sym__raw_string_literal_start] = ACTIONS(2773), - [sym_float_literal] = ACTIONS(2773), + [ts_builtin_sym_end] = ACTIONS(2656), + [sym_identifier] = ACTIONS(2658), + [anon_sym_SEMI] = ACTIONS(2656), + [anon_sym_macro_rules_BANG] = ACTIONS(2656), + [anon_sym_LPAREN] = ACTIONS(2656), + [anon_sym_LBRACK] = ACTIONS(2656), + [anon_sym_LBRACE] = ACTIONS(2656), + [anon_sym_RBRACE] = ACTIONS(2656), + [anon_sym_STAR] = ACTIONS(2656), + [anon_sym_u8] = ACTIONS(2658), + [anon_sym_i8] = ACTIONS(2658), + [anon_sym_u16] = ACTIONS(2658), + [anon_sym_i16] = ACTIONS(2658), + [anon_sym_u32] = ACTIONS(2658), + [anon_sym_i32] = ACTIONS(2658), + [anon_sym_u64] = ACTIONS(2658), + [anon_sym_i64] = ACTIONS(2658), + [anon_sym_u128] = ACTIONS(2658), + [anon_sym_i128] = ACTIONS(2658), + [anon_sym_isize] = ACTIONS(2658), + [anon_sym_usize] = ACTIONS(2658), + [anon_sym_f32] = ACTIONS(2658), + [anon_sym_f64] = ACTIONS(2658), + [anon_sym_bool] = ACTIONS(2658), + [anon_sym_str] = ACTIONS(2658), + [anon_sym_char] = ACTIONS(2658), + [anon_sym_DASH] = ACTIONS(2656), + [anon_sym_BANG] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2656), + [anon_sym_PIPE] = ACTIONS(2656), + [anon_sym_LT] = ACTIONS(2656), + [anon_sym_DOT_DOT] = ACTIONS(2656), + [anon_sym_COLON_COLON] = ACTIONS(2656), + [anon_sym_POUND] = ACTIONS(2656), + [anon_sym_SQUOTE] = ACTIONS(2658), + [anon_sym_async] = ACTIONS(2658), + [anon_sym_become] = ACTIONS(2658), + [anon_sym_break] = ACTIONS(2658), + [anon_sym_const] = ACTIONS(2658), + [anon_sym_continue] = ACTIONS(2658), + [anon_sym_default] = ACTIONS(2658), + [anon_sym_enum] = ACTIONS(2658), + [anon_sym_fn] = ACTIONS(2658), + [anon_sym_for] = ACTIONS(2658), + [anon_sym_gen] = ACTIONS(2658), + [anon_sym_if] = ACTIONS(2658), + [anon_sym_impl] = ACTIONS(2658), + [anon_sym_let] = ACTIONS(2658), + [anon_sym_loop] = ACTIONS(2658), + [anon_sym_match] = ACTIONS(2658), + [anon_sym_mod] = ACTIONS(2658), + [anon_sym_pub] = ACTIONS(2658), + [anon_sym_return] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2658), + [anon_sym_struct] = ACTIONS(2658), + [anon_sym_trait] = ACTIONS(2658), + [anon_sym_type] = ACTIONS(2658), + [anon_sym_union] = ACTIONS(2658), + [anon_sym_unsafe] = ACTIONS(2658), + [anon_sym_use] = ACTIONS(2658), + [anon_sym_while] = ACTIONS(2658), + [anon_sym_extern] = ACTIONS(2658), + [anon_sym_raw] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(2658), + [anon_sym_move] = ACTIONS(2658), + [anon_sym_try] = ACTIONS(2658), + [sym_integer_literal] = ACTIONS(2656), + [aux_sym_string_literal_token1] = ACTIONS(2656), + [sym_char_literal] = ACTIONS(2656), + [anon_sym_true] = ACTIONS(2658), + [anon_sym_false] = ACTIONS(2658), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2658), + [sym_super] = ACTIONS(2658), + [sym_crate] = ACTIONS(2658), + [sym_metavariable] = ACTIONS(2656), + [sym__raw_string_literal_start] = ACTIONS(2656), + [sym_float_literal] = ACTIONS(2656), }, [STATE(711)] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2777), - [sym_identifier] = ACTIONS(2779), - [anon_sym_SEMI] = ACTIONS(2777), - [anon_sym_macro_rules_BANG] = ACTIONS(2777), - [anon_sym_LPAREN] = ACTIONS(2777), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_RBRACE] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2777), - [anon_sym_u8] = ACTIONS(2779), - [anon_sym_i8] = ACTIONS(2779), - [anon_sym_u16] = ACTIONS(2779), - [anon_sym_i16] = ACTIONS(2779), - [anon_sym_u32] = ACTIONS(2779), - [anon_sym_i32] = ACTIONS(2779), - [anon_sym_u64] = ACTIONS(2779), - [anon_sym_i64] = ACTIONS(2779), - [anon_sym_u128] = ACTIONS(2779), - [anon_sym_i128] = ACTIONS(2779), - [anon_sym_isize] = ACTIONS(2779), - [anon_sym_usize] = ACTIONS(2779), - [anon_sym_f32] = ACTIONS(2779), - [anon_sym_f64] = ACTIONS(2779), - [anon_sym_bool] = ACTIONS(2779), - [anon_sym_str] = ACTIONS(2779), - [anon_sym_char] = ACTIONS(2779), - [anon_sym_DASH] = ACTIONS(2777), - [anon_sym_BANG] = ACTIONS(2777), - [anon_sym_AMP] = ACTIONS(2777), - [anon_sym_PIPE] = ACTIONS(2777), - [anon_sym_LT] = ACTIONS(2777), - [anon_sym_DOT_DOT] = ACTIONS(2777), - [anon_sym_COLON_COLON] = ACTIONS(2777), - [anon_sym_POUND] = ACTIONS(2777), - [anon_sym_SQUOTE] = ACTIONS(2779), - [anon_sym_async] = ACTIONS(2779), - [anon_sym_break] = ACTIONS(2779), - [anon_sym_const] = ACTIONS(2779), - [anon_sym_continue] = ACTIONS(2779), - [anon_sym_default] = ACTIONS(2779), - [anon_sym_enum] = ACTIONS(2779), - [anon_sym_fn] = ACTIONS(2779), - [anon_sym_for] = ACTIONS(2779), - [anon_sym_gen] = ACTIONS(2779), - [anon_sym_if] = ACTIONS(2779), - [anon_sym_impl] = ACTIONS(2779), - [anon_sym_let] = ACTIONS(2779), - [anon_sym_loop] = ACTIONS(2779), - [anon_sym_match] = ACTIONS(2779), - [anon_sym_mod] = ACTIONS(2779), - [anon_sym_pub] = ACTIONS(2779), - [anon_sym_return] = ACTIONS(2779), - [anon_sym_static] = ACTIONS(2779), - [anon_sym_struct] = ACTIONS(2779), - [anon_sym_trait] = ACTIONS(2779), - [anon_sym_type] = ACTIONS(2779), - [anon_sym_union] = ACTIONS(2779), - [anon_sym_unsafe] = ACTIONS(2779), - [anon_sym_use] = ACTIONS(2779), - [anon_sym_while] = ACTIONS(2779), - [anon_sym_extern] = ACTIONS(2779), - [anon_sym_raw] = ACTIONS(2779), - [anon_sym_yield] = ACTIONS(2779), - [anon_sym_move] = ACTIONS(2779), - [anon_sym_try] = ACTIONS(2779), - [sym_integer_literal] = ACTIONS(2777), - [aux_sym_string_literal_token1] = ACTIONS(2777), - [sym_char_literal] = ACTIONS(2777), - [anon_sym_true] = ACTIONS(2779), - [anon_sym_false] = ACTIONS(2779), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2779), - [sym_super] = ACTIONS(2779), - [sym_crate] = ACTIONS(2779), - [sym_metavariable] = ACTIONS(2777), - [sym__raw_string_literal_start] = ACTIONS(2777), - [sym_float_literal] = ACTIONS(2777), + [ts_builtin_sym_end] = ACTIONS(2660), + [sym_identifier] = ACTIONS(2662), + [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_macro_rules_BANG] = ACTIONS(2660), + [anon_sym_LPAREN] = ACTIONS(2660), + [anon_sym_LBRACK] = ACTIONS(2660), + [anon_sym_LBRACE] = ACTIONS(2660), + [anon_sym_RBRACE] = ACTIONS(2660), + [anon_sym_STAR] = ACTIONS(2660), + [anon_sym_u8] = ACTIONS(2662), + [anon_sym_i8] = ACTIONS(2662), + [anon_sym_u16] = ACTIONS(2662), + [anon_sym_i16] = ACTIONS(2662), + [anon_sym_u32] = ACTIONS(2662), + [anon_sym_i32] = ACTIONS(2662), + [anon_sym_u64] = ACTIONS(2662), + [anon_sym_i64] = ACTIONS(2662), + [anon_sym_u128] = ACTIONS(2662), + [anon_sym_i128] = ACTIONS(2662), + [anon_sym_isize] = ACTIONS(2662), + [anon_sym_usize] = ACTIONS(2662), + [anon_sym_f32] = ACTIONS(2662), + [anon_sym_f64] = ACTIONS(2662), + [anon_sym_bool] = ACTIONS(2662), + [anon_sym_str] = ACTIONS(2662), + [anon_sym_char] = ACTIONS(2662), + [anon_sym_DASH] = ACTIONS(2660), + [anon_sym_BANG] = ACTIONS(2660), + [anon_sym_AMP] = ACTIONS(2660), + [anon_sym_PIPE] = ACTIONS(2660), + [anon_sym_LT] = ACTIONS(2660), + [anon_sym_DOT_DOT] = ACTIONS(2660), + [anon_sym_COLON_COLON] = ACTIONS(2660), + [anon_sym_POUND] = ACTIONS(2660), + [anon_sym_SQUOTE] = ACTIONS(2662), + [anon_sym_async] = ACTIONS(2662), + [anon_sym_become] = ACTIONS(2662), + [anon_sym_break] = ACTIONS(2662), + [anon_sym_const] = ACTIONS(2662), + [anon_sym_continue] = ACTIONS(2662), + [anon_sym_default] = ACTIONS(2662), + [anon_sym_enum] = ACTIONS(2662), + [anon_sym_fn] = ACTIONS(2662), + [anon_sym_for] = ACTIONS(2662), + [anon_sym_gen] = ACTIONS(2662), + [anon_sym_if] = ACTIONS(2662), + [anon_sym_impl] = ACTIONS(2662), + [anon_sym_let] = ACTIONS(2662), + [anon_sym_loop] = ACTIONS(2662), + [anon_sym_match] = ACTIONS(2662), + [anon_sym_mod] = ACTIONS(2662), + [anon_sym_pub] = ACTIONS(2662), + [anon_sym_return] = ACTIONS(2662), + [anon_sym_static] = ACTIONS(2662), + [anon_sym_struct] = ACTIONS(2662), + [anon_sym_trait] = ACTIONS(2662), + [anon_sym_type] = ACTIONS(2662), + [anon_sym_union] = ACTIONS(2662), + [anon_sym_unsafe] = ACTIONS(2662), + [anon_sym_use] = ACTIONS(2662), + [anon_sym_while] = ACTIONS(2662), + [anon_sym_extern] = ACTIONS(2662), + [anon_sym_raw] = ACTIONS(2662), + [anon_sym_yield] = ACTIONS(2662), + [anon_sym_move] = ACTIONS(2662), + [anon_sym_try] = ACTIONS(2662), + [sym_integer_literal] = ACTIONS(2660), + [aux_sym_string_literal_token1] = ACTIONS(2660), + [sym_char_literal] = ACTIONS(2660), + [anon_sym_true] = ACTIONS(2662), + [anon_sym_false] = ACTIONS(2662), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2662), + [sym_super] = ACTIONS(2662), + [sym_crate] = ACTIONS(2662), + [sym_metavariable] = ACTIONS(2660), + [sym__raw_string_literal_start] = ACTIONS(2660), + [sym_float_literal] = ACTIONS(2660), }, [STATE(712)] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2781), - [sym_identifier] = ACTIONS(2783), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_macro_rules_BANG] = ACTIONS(2781), - [anon_sym_LPAREN] = ACTIONS(2781), - [anon_sym_LBRACK] = ACTIONS(2781), - [anon_sym_LBRACE] = ACTIONS(2781), - [anon_sym_RBRACE] = ACTIONS(2781), - [anon_sym_STAR] = ACTIONS(2781), - [anon_sym_u8] = ACTIONS(2783), - [anon_sym_i8] = ACTIONS(2783), - [anon_sym_u16] = ACTIONS(2783), - [anon_sym_i16] = ACTIONS(2783), - [anon_sym_u32] = ACTIONS(2783), - [anon_sym_i32] = ACTIONS(2783), - [anon_sym_u64] = ACTIONS(2783), - [anon_sym_i64] = ACTIONS(2783), - [anon_sym_u128] = ACTIONS(2783), - [anon_sym_i128] = ACTIONS(2783), - [anon_sym_isize] = ACTIONS(2783), - [anon_sym_usize] = ACTIONS(2783), - [anon_sym_f32] = ACTIONS(2783), - [anon_sym_f64] = ACTIONS(2783), - [anon_sym_bool] = ACTIONS(2783), - [anon_sym_str] = ACTIONS(2783), - [anon_sym_char] = ACTIONS(2783), - [anon_sym_DASH] = ACTIONS(2781), - [anon_sym_BANG] = ACTIONS(2781), - [anon_sym_AMP] = ACTIONS(2781), - [anon_sym_PIPE] = ACTIONS(2781), - [anon_sym_LT] = ACTIONS(2781), - [anon_sym_DOT_DOT] = ACTIONS(2781), - [anon_sym_COLON_COLON] = ACTIONS(2781), - [anon_sym_POUND] = ACTIONS(2781), - [anon_sym_SQUOTE] = ACTIONS(2783), - [anon_sym_async] = ACTIONS(2783), - [anon_sym_break] = ACTIONS(2783), - [anon_sym_const] = ACTIONS(2783), - [anon_sym_continue] = ACTIONS(2783), - [anon_sym_default] = ACTIONS(2783), - [anon_sym_enum] = ACTIONS(2783), - [anon_sym_fn] = ACTIONS(2783), - [anon_sym_for] = ACTIONS(2783), - [anon_sym_gen] = ACTIONS(2783), - [anon_sym_if] = ACTIONS(2783), - [anon_sym_impl] = ACTIONS(2783), - [anon_sym_let] = ACTIONS(2783), - [anon_sym_loop] = ACTIONS(2783), - [anon_sym_match] = ACTIONS(2783), - [anon_sym_mod] = ACTIONS(2783), - [anon_sym_pub] = ACTIONS(2783), - [anon_sym_return] = ACTIONS(2783), - [anon_sym_static] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(2783), - [anon_sym_trait] = ACTIONS(2783), - [anon_sym_type] = ACTIONS(2783), - [anon_sym_union] = ACTIONS(2783), - [anon_sym_unsafe] = ACTIONS(2783), - [anon_sym_use] = ACTIONS(2783), - [anon_sym_while] = ACTIONS(2783), - [anon_sym_extern] = ACTIONS(2783), - [anon_sym_raw] = ACTIONS(2783), - [anon_sym_yield] = ACTIONS(2783), - [anon_sym_move] = ACTIONS(2783), - [anon_sym_try] = ACTIONS(2783), - [sym_integer_literal] = ACTIONS(2781), - [aux_sym_string_literal_token1] = ACTIONS(2781), - [sym_char_literal] = ACTIONS(2781), - [anon_sym_true] = ACTIONS(2783), - [anon_sym_false] = ACTIONS(2783), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2783), - [sym_super] = ACTIONS(2783), - [sym_crate] = ACTIONS(2783), - [sym_metavariable] = ACTIONS(2781), - [sym__raw_string_literal_start] = ACTIONS(2781), - [sym_float_literal] = ACTIONS(2781), + [ts_builtin_sym_end] = ACTIONS(2664), + [sym_identifier] = ACTIONS(2666), + [anon_sym_SEMI] = ACTIONS(2664), + [anon_sym_macro_rules_BANG] = ACTIONS(2664), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_LBRACK] = ACTIONS(2664), + [anon_sym_LBRACE] = ACTIONS(2664), + [anon_sym_RBRACE] = ACTIONS(2664), + [anon_sym_STAR] = ACTIONS(2664), + [anon_sym_u8] = ACTIONS(2666), + [anon_sym_i8] = ACTIONS(2666), + [anon_sym_u16] = ACTIONS(2666), + [anon_sym_i16] = ACTIONS(2666), + [anon_sym_u32] = ACTIONS(2666), + [anon_sym_i32] = ACTIONS(2666), + [anon_sym_u64] = ACTIONS(2666), + [anon_sym_i64] = ACTIONS(2666), + [anon_sym_u128] = ACTIONS(2666), + [anon_sym_i128] = ACTIONS(2666), + [anon_sym_isize] = ACTIONS(2666), + [anon_sym_usize] = ACTIONS(2666), + [anon_sym_f32] = ACTIONS(2666), + [anon_sym_f64] = ACTIONS(2666), + [anon_sym_bool] = ACTIONS(2666), + [anon_sym_str] = ACTIONS(2666), + [anon_sym_char] = ACTIONS(2666), + [anon_sym_DASH] = ACTIONS(2664), + [anon_sym_BANG] = ACTIONS(2664), + [anon_sym_AMP] = ACTIONS(2664), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_LT] = ACTIONS(2664), + [anon_sym_DOT_DOT] = ACTIONS(2664), + [anon_sym_COLON_COLON] = ACTIONS(2664), + [anon_sym_POUND] = ACTIONS(2664), + [anon_sym_SQUOTE] = ACTIONS(2666), + [anon_sym_async] = ACTIONS(2666), + [anon_sym_become] = ACTIONS(2666), + [anon_sym_break] = ACTIONS(2666), + [anon_sym_const] = ACTIONS(2666), + [anon_sym_continue] = ACTIONS(2666), + [anon_sym_default] = ACTIONS(2666), + [anon_sym_enum] = ACTIONS(2666), + [anon_sym_fn] = ACTIONS(2666), + [anon_sym_for] = ACTIONS(2666), + [anon_sym_gen] = ACTIONS(2666), + [anon_sym_if] = ACTIONS(2666), + [anon_sym_impl] = ACTIONS(2666), + [anon_sym_let] = ACTIONS(2666), + [anon_sym_loop] = ACTIONS(2666), + [anon_sym_match] = ACTIONS(2666), + [anon_sym_mod] = ACTIONS(2666), + [anon_sym_pub] = ACTIONS(2666), + [anon_sym_return] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_struct] = ACTIONS(2666), + [anon_sym_trait] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_union] = ACTIONS(2666), + [anon_sym_unsafe] = ACTIONS(2666), + [anon_sym_use] = ACTIONS(2666), + [anon_sym_while] = ACTIONS(2666), + [anon_sym_extern] = ACTIONS(2666), + [anon_sym_raw] = ACTIONS(2666), + [anon_sym_yield] = ACTIONS(2666), + [anon_sym_move] = ACTIONS(2666), + [anon_sym_try] = ACTIONS(2666), + [sym_integer_literal] = ACTIONS(2664), + [aux_sym_string_literal_token1] = ACTIONS(2664), + [sym_char_literal] = ACTIONS(2664), + [anon_sym_true] = ACTIONS(2666), + [anon_sym_false] = ACTIONS(2666), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2666), + [sym_super] = ACTIONS(2666), + [sym_crate] = ACTIONS(2666), + [sym_metavariable] = ACTIONS(2664), + [sym__raw_string_literal_start] = ACTIONS(2664), + [sym_float_literal] = ACTIONS(2664), }, [STATE(713)] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2785), - [sym_identifier] = ACTIONS(2787), - [anon_sym_SEMI] = ACTIONS(2785), - [anon_sym_macro_rules_BANG] = ACTIONS(2785), - [anon_sym_LPAREN] = ACTIONS(2785), - [anon_sym_LBRACK] = ACTIONS(2785), - [anon_sym_LBRACE] = ACTIONS(2785), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_STAR] = ACTIONS(2785), - [anon_sym_u8] = ACTIONS(2787), - [anon_sym_i8] = ACTIONS(2787), - [anon_sym_u16] = ACTIONS(2787), - [anon_sym_i16] = ACTIONS(2787), - [anon_sym_u32] = ACTIONS(2787), - [anon_sym_i32] = ACTIONS(2787), - [anon_sym_u64] = ACTIONS(2787), - [anon_sym_i64] = ACTIONS(2787), - [anon_sym_u128] = ACTIONS(2787), - [anon_sym_i128] = ACTIONS(2787), - [anon_sym_isize] = ACTIONS(2787), - [anon_sym_usize] = ACTIONS(2787), - [anon_sym_f32] = ACTIONS(2787), - [anon_sym_f64] = ACTIONS(2787), - [anon_sym_bool] = ACTIONS(2787), - [anon_sym_str] = ACTIONS(2787), - [anon_sym_char] = ACTIONS(2787), - [anon_sym_DASH] = ACTIONS(2785), - [anon_sym_BANG] = ACTIONS(2785), - [anon_sym_AMP] = ACTIONS(2785), - [anon_sym_PIPE] = ACTIONS(2785), - [anon_sym_LT] = ACTIONS(2785), - [anon_sym_DOT_DOT] = ACTIONS(2785), - [anon_sym_COLON_COLON] = ACTIONS(2785), - [anon_sym_POUND] = ACTIONS(2785), - [anon_sym_SQUOTE] = ACTIONS(2787), - [anon_sym_async] = ACTIONS(2787), - [anon_sym_break] = ACTIONS(2787), - [anon_sym_const] = ACTIONS(2787), - [anon_sym_continue] = ACTIONS(2787), - [anon_sym_default] = ACTIONS(2787), - [anon_sym_enum] = ACTIONS(2787), - [anon_sym_fn] = ACTIONS(2787), - [anon_sym_for] = ACTIONS(2787), - [anon_sym_gen] = ACTIONS(2787), - [anon_sym_if] = ACTIONS(2787), - [anon_sym_impl] = ACTIONS(2787), - [anon_sym_let] = ACTIONS(2787), - [anon_sym_loop] = ACTIONS(2787), - [anon_sym_match] = ACTIONS(2787), - [anon_sym_mod] = ACTIONS(2787), - [anon_sym_pub] = ACTIONS(2787), - [anon_sym_return] = ACTIONS(2787), - [anon_sym_static] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(2787), - [anon_sym_trait] = ACTIONS(2787), - [anon_sym_type] = ACTIONS(2787), - [anon_sym_union] = ACTIONS(2787), - [anon_sym_unsafe] = ACTIONS(2787), - [anon_sym_use] = ACTIONS(2787), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_extern] = ACTIONS(2787), - [anon_sym_raw] = ACTIONS(2787), - [anon_sym_yield] = ACTIONS(2787), - [anon_sym_move] = ACTIONS(2787), - [anon_sym_try] = ACTIONS(2787), - [sym_integer_literal] = ACTIONS(2785), - [aux_sym_string_literal_token1] = ACTIONS(2785), - [sym_char_literal] = ACTIONS(2785), - [anon_sym_true] = ACTIONS(2787), - [anon_sym_false] = ACTIONS(2787), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2787), - [sym_super] = ACTIONS(2787), - [sym_crate] = ACTIONS(2787), - [sym_metavariable] = ACTIONS(2785), - [sym__raw_string_literal_start] = ACTIONS(2785), - [sym_float_literal] = ACTIONS(2785), + [ts_builtin_sym_end] = ACTIONS(2668), + [sym_identifier] = ACTIONS(2670), + [anon_sym_SEMI] = ACTIONS(2668), + [anon_sym_macro_rules_BANG] = ACTIONS(2668), + [anon_sym_LPAREN] = ACTIONS(2668), + [anon_sym_LBRACK] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(2668), + [anon_sym_RBRACE] = ACTIONS(2668), + [anon_sym_STAR] = ACTIONS(2668), + [anon_sym_u8] = ACTIONS(2670), + [anon_sym_i8] = ACTIONS(2670), + [anon_sym_u16] = ACTIONS(2670), + [anon_sym_i16] = ACTIONS(2670), + [anon_sym_u32] = ACTIONS(2670), + [anon_sym_i32] = ACTIONS(2670), + [anon_sym_u64] = ACTIONS(2670), + [anon_sym_i64] = ACTIONS(2670), + [anon_sym_u128] = ACTIONS(2670), + [anon_sym_i128] = ACTIONS(2670), + [anon_sym_isize] = ACTIONS(2670), + [anon_sym_usize] = ACTIONS(2670), + [anon_sym_f32] = ACTIONS(2670), + [anon_sym_f64] = ACTIONS(2670), + [anon_sym_bool] = ACTIONS(2670), + [anon_sym_str] = ACTIONS(2670), + [anon_sym_char] = ACTIONS(2670), + [anon_sym_DASH] = ACTIONS(2668), + [anon_sym_BANG] = ACTIONS(2668), + [anon_sym_AMP] = ACTIONS(2668), + [anon_sym_PIPE] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2668), + [anon_sym_DOT_DOT] = ACTIONS(2668), + [anon_sym_COLON_COLON] = ACTIONS(2668), + [anon_sym_POUND] = ACTIONS(2668), + [anon_sym_SQUOTE] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_become] = ACTIONS(2670), + [anon_sym_break] = ACTIONS(2670), + [anon_sym_const] = ACTIONS(2670), + [anon_sym_continue] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2670), + [anon_sym_enum] = ACTIONS(2670), + [anon_sym_fn] = ACTIONS(2670), + [anon_sym_for] = ACTIONS(2670), + [anon_sym_gen] = ACTIONS(2670), + [anon_sym_if] = ACTIONS(2670), + [anon_sym_impl] = ACTIONS(2670), + [anon_sym_let] = ACTIONS(2670), + [anon_sym_loop] = ACTIONS(2670), + [anon_sym_match] = ACTIONS(2670), + [anon_sym_mod] = ACTIONS(2670), + [anon_sym_pub] = ACTIONS(2670), + [anon_sym_return] = ACTIONS(2670), + [anon_sym_static] = ACTIONS(2670), + [anon_sym_struct] = ACTIONS(2670), + [anon_sym_trait] = ACTIONS(2670), + [anon_sym_type] = ACTIONS(2670), + [anon_sym_union] = ACTIONS(2670), + [anon_sym_unsafe] = ACTIONS(2670), + [anon_sym_use] = ACTIONS(2670), + [anon_sym_while] = ACTIONS(2670), + [anon_sym_extern] = ACTIONS(2670), + [anon_sym_raw] = ACTIONS(2670), + [anon_sym_yield] = ACTIONS(2670), + [anon_sym_move] = ACTIONS(2670), + [anon_sym_try] = ACTIONS(2670), + [sym_integer_literal] = ACTIONS(2668), + [aux_sym_string_literal_token1] = ACTIONS(2668), + [sym_char_literal] = ACTIONS(2668), + [anon_sym_true] = ACTIONS(2670), + [anon_sym_false] = ACTIONS(2670), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2670), + [sym_super] = ACTIONS(2670), + [sym_crate] = ACTIONS(2670), + [sym_metavariable] = ACTIONS(2668), + [sym__raw_string_literal_start] = ACTIONS(2668), + [sym_float_literal] = ACTIONS(2668), }, [STATE(714)] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2789), - [sym_identifier] = ACTIONS(2791), - [anon_sym_SEMI] = ACTIONS(2789), - [anon_sym_macro_rules_BANG] = ACTIONS(2789), - [anon_sym_LPAREN] = ACTIONS(2789), - [anon_sym_LBRACK] = ACTIONS(2789), - [anon_sym_LBRACE] = ACTIONS(2789), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_STAR] = ACTIONS(2789), - [anon_sym_u8] = ACTIONS(2791), - [anon_sym_i8] = ACTIONS(2791), - [anon_sym_u16] = ACTIONS(2791), - [anon_sym_i16] = ACTIONS(2791), - [anon_sym_u32] = ACTIONS(2791), - [anon_sym_i32] = ACTIONS(2791), - [anon_sym_u64] = ACTIONS(2791), - [anon_sym_i64] = ACTIONS(2791), - [anon_sym_u128] = ACTIONS(2791), - [anon_sym_i128] = ACTIONS(2791), - [anon_sym_isize] = ACTIONS(2791), - [anon_sym_usize] = ACTIONS(2791), - [anon_sym_f32] = ACTIONS(2791), - [anon_sym_f64] = ACTIONS(2791), - [anon_sym_bool] = ACTIONS(2791), - [anon_sym_str] = ACTIONS(2791), - [anon_sym_char] = ACTIONS(2791), - [anon_sym_DASH] = ACTIONS(2789), - [anon_sym_BANG] = ACTIONS(2789), - [anon_sym_AMP] = ACTIONS(2789), - [anon_sym_PIPE] = ACTIONS(2789), - [anon_sym_LT] = ACTIONS(2789), - [anon_sym_DOT_DOT] = ACTIONS(2789), - [anon_sym_COLON_COLON] = ACTIONS(2789), - [anon_sym_POUND] = ACTIONS(2789), - [anon_sym_SQUOTE] = ACTIONS(2791), - [anon_sym_async] = ACTIONS(2791), - [anon_sym_break] = ACTIONS(2791), - [anon_sym_const] = ACTIONS(2791), - [anon_sym_continue] = ACTIONS(2791), - [anon_sym_default] = ACTIONS(2791), - [anon_sym_enum] = ACTIONS(2791), - [anon_sym_fn] = ACTIONS(2791), - [anon_sym_for] = ACTIONS(2791), - [anon_sym_gen] = ACTIONS(2791), - [anon_sym_if] = ACTIONS(2791), - [anon_sym_impl] = ACTIONS(2791), - [anon_sym_let] = ACTIONS(2791), - [anon_sym_loop] = ACTIONS(2791), - [anon_sym_match] = ACTIONS(2791), - [anon_sym_mod] = ACTIONS(2791), - [anon_sym_pub] = ACTIONS(2791), - [anon_sym_return] = ACTIONS(2791), - [anon_sym_static] = ACTIONS(2791), - [anon_sym_struct] = ACTIONS(2791), - [anon_sym_trait] = ACTIONS(2791), - [anon_sym_type] = ACTIONS(2791), - [anon_sym_union] = ACTIONS(2791), - [anon_sym_unsafe] = ACTIONS(2791), - [anon_sym_use] = ACTIONS(2791), - [anon_sym_while] = ACTIONS(2791), - [anon_sym_extern] = ACTIONS(2791), - [anon_sym_raw] = ACTIONS(2791), - [anon_sym_yield] = ACTIONS(2791), - [anon_sym_move] = ACTIONS(2791), - [anon_sym_try] = ACTIONS(2791), - [sym_integer_literal] = ACTIONS(2789), - [aux_sym_string_literal_token1] = ACTIONS(2789), - [sym_char_literal] = ACTIONS(2789), - [anon_sym_true] = ACTIONS(2791), - [anon_sym_false] = ACTIONS(2791), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2791), - [sym_super] = ACTIONS(2791), - [sym_crate] = ACTIONS(2791), - [sym_metavariable] = ACTIONS(2789), - [sym__raw_string_literal_start] = ACTIONS(2789), - [sym_float_literal] = ACTIONS(2789), + [ts_builtin_sym_end] = ACTIONS(2672), + [sym_identifier] = ACTIONS(2674), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym_macro_rules_BANG] = ACTIONS(2672), + [anon_sym_LPAREN] = ACTIONS(2672), + [anon_sym_LBRACK] = ACTIONS(2672), + [anon_sym_LBRACE] = ACTIONS(2672), + [anon_sym_RBRACE] = ACTIONS(2672), + [anon_sym_STAR] = ACTIONS(2672), + [anon_sym_u8] = ACTIONS(2674), + [anon_sym_i8] = ACTIONS(2674), + [anon_sym_u16] = ACTIONS(2674), + [anon_sym_i16] = ACTIONS(2674), + [anon_sym_u32] = ACTIONS(2674), + [anon_sym_i32] = ACTIONS(2674), + [anon_sym_u64] = ACTIONS(2674), + [anon_sym_i64] = ACTIONS(2674), + [anon_sym_u128] = ACTIONS(2674), + [anon_sym_i128] = ACTIONS(2674), + [anon_sym_isize] = ACTIONS(2674), + [anon_sym_usize] = ACTIONS(2674), + [anon_sym_f32] = ACTIONS(2674), + [anon_sym_f64] = ACTIONS(2674), + [anon_sym_bool] = ACTIONS(2674), + [anon_sym_str] = ACTIONS(2674), + [anon_sym_char] = ACTIONS(2674), + [anon_sym_DASH] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(2672), + [anon_sym_AMP] = ACTIONS(2672), + [anon_sym_PIPE] = ACTIONS(2672), + [anon_sym_LT] = ACTIONS(2672), + [anon_sym_DOT_DOT] = ACTIONS(2672), + [anon_sym_COLON_COLON] = ACTIONS(2672), + [anon_sym_POUND] = ACTIONS(2672), + [anon_sym_SQUOTE] = ACTIONS(2674), + [anon_sym_async] = ACTIONS(2674), + [anon_sym_become] = ACTIONS(2674), + [anon_sym_break] = ACTIONS(2674), + [anon_sym_const] = ACTIONS(2674), + [anon_sym_continue] = ACTIONS(2674), + [anon_sym_default] = ACTIONS(2674), + [anon_sym_enum] = ACTIONS(2674), + [anon_sym_fn] = ACTIONS(2674), + [anon_sym_for] = ACTIONS(2674), + [anon_sym_gen] = ACTIONS(2674), + [anon_sym_if] = ACTIONS(2674), + [anon_sym_impl] = ACTIONS(2674), + [anon_sym_let] = ACTIONS(2674), + [anon_sym_loop] = ACTIONS(2674), + [anon_sym_match] = ACTIONS(2674), + [anon_sym_mod] = ACTIONS(2674), + [anon_sym_pub] = ACTIONS(2674), + [anon_sym_return] = ACTIONS(2674), + [anon_sym_static] = ACTIONS(2674), + [anon_sym_struct] = ACTIONS(2674), + [anon_sym_trait] = ACTIONS(2674), + [anon_sym_type] = ACTIONS(2674), + [anon_sym_union] = ACTIONS(2674), + [anon_sym_unsafe] = ACTIONS(2674), + [anon_sym_use] = ACTIONS(2674), + [anon_sym_while] = ACTIONS(2674), + [anon_sym_extern] = ACTIONS(2674), + [anon_sym_raw] = ACTIONS(2674), + [anon_sym_yield] = ACTIONS(2674), + [anon_sym_move] = ACTIONS(2674), + [anon_sym_try] = ACTIONS(2674), + [sym_integer_literal] = ACTIONS(2672), + [aux_sym_string_literal_token1] = ACTIONS(2672), + [sym_char_literal] = ACTIONS(2672), + [anon_sym_true] = ACTIONS(2674), + [anon_sym_false] = ACTIONS(2674), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2674), + [sym_super] = ACTIONS(2674), + [sym_crate] = ACTIONS(2674), + [sym_metavariable] = ACTIONS(2672), + [sym__raw_string_literal_start] = ACTIONS(2672), + [sym_float_literal] = ACTIONS(2672), }, [STATE(715)] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2793), - [sym_identifier] = ACTIONS(2795), - [anon_sym_SEMI] = ACTIONS(2793), - [anon_sym_macro_rules_BANG] = ACTIONS(2793), - [anon_sym_LPAREN] = ACTIONS(2793), - [anon_sym_LBRACK] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_RBRACE] = ACTIONS(2793), - [anon_sym_STAR] = ACTIONS(2793), - [anon_sym_u8] = ACTIONS(2795), - [anon_sym_i8] = ACTIONS(2795), - [anon_sym_u16] = ACTIONS(2795), - [anon_sym_i16] = ACTIONS(2795), - [anon_sym_u32] = ACTIONS(2795), - [anon_sym_i32] = ACTIONS(2795), - [anon_sym_u64] = ACTIONS(2795), - [anon_sym_i64] = ACTIONS(2795), - [anon_sym_u128] = ACTIONS(2795), - [anon_sym_i128] = ACTIONS(2795), - [anon_sym_isize] = ACTIONS(2795), - [anon_sym_usize] = ACTIONS(2795), - [anon_sym_f32] = ACTIONS(2795), - [anon_sym_f64] = ACTIONS(2795), - [anon_sym_bool] = ACTIONS(2795), - [anon_sym_str] = ACTIONS(2795), - [anon_sym_char] = ACTIONS(2795), - [anon_sym_DASH] = ACTIONS(2793), - [anon_sym_BANG] = ACTIONS(2793), - [anon_sym_AMP] = ACTIONS(2793), - [anon_sym_PIPE] = ACTIONS(2793), - [anon_sym_LT] = ACTIONS(2793), - [anon_sym_DOT_DOT] = ACTIONS(2793), - [anon_sym_COLON_COLON] = ACTIONS(2793), - [anon_sym_POUND] = ACTIONS(2793), - [anon_sym_SQUOTE] = ACTIONS(2795), - [anon_sym_async] = ACTIONS(2795), - [anon_sym_break] = ACTIONS(2795), - [anon_sym_const] = ACTIONS(2795), - [anon_sym_continue] = ACTIONS(2795), - [anon_sym_default] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2795), - [anon_sym_fn] = ACTIONS(2795), - [anon_sym_for] = ACTIONS(2795), - [anon_sym_gen] = ACTIONS(2795), - [anon_sym_if] = ACTIONS(2795), - [anon_sym_impl] = ACTIONS(2795), - [anon_sym_let] = ACTIONS(2795), - [anon_sym_loop] = ACTIONS(2795), - [anon_sym_match] = ACTIONS(2795), - [anon_sym_mod] = ACTIONS(2795), - [anon_sym_pub] = ACTIONS(2795), - [anon_sym_return] = ACTIONS(2795), - [anon_sym_static] = ACTIONS(2795), - [anon_sym_struct] = ACTIONS(2795), - [anon_sym_trait] = ACTIONS(2795), - [anon_sym_type] = ACTIONS(2795), - [anon_sym_union] = ACTIONS(2795), - [anon_sym_unsafe] = ACTIONS(2795), - [anon_sym_use] = ACTIONS(2795), - [anon_sym_while] = ACTIONS(2795), - [anon_sym_extern] = ACTIONS(2795), - [anon_sym_raw] = ACTIONS(2795), - [anon_sym_yield] = ACTIONS(2795), - [anon_sym_move] = ACTIONS(2795), - [anon_sym_try] = ACTIONS(2795), - [sym_integer_literal] = ACTIONS(2793), - [aux_sym_string_literal_token1] = ACTIONS(2793), - [sym_char_literal] = ACTIONS(2793), - [anon_sym_true] = ACTIONS(2795), - [anon_sym_false] = ACTIONS(2795), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2795), - [sym_super] = ACTIONS(2795), - [sym_crate] = ACTIONS(2795), - [sym_metavariable] = ACTIONS(2793), - [sym__raw_string_literal_start] = ACTIONS(2793), - [sym_float_literal] = ACTIONS(2793), + [ts_builtin_sym_end] = ACTIONS(2676), + [sym_identifier] = ACTIONS(2678), + [anon_sym_SEMI] = ACTIONS(2676), + [anon_sym_macro_rules_BANG] = ACTIONS(2676), + [anon_sym_LPAREN] = ACTIONS(2676), + [anon_sym_LBRACK] = ACTIONS(2676), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2676), + [anon_sym_STAR] = ACTIONS(2676), + [anon_sym_u8] = ACTIONS(2678), + [anon_sym_i8] = ACTIONS(2678), + [anon_sym_u16] = ACTIONS(2678), + [anon_sym_i16] = ACTIONS(2678), + [anon_sym_u32] = ACTIONS(2678), + [anon_sym_i32] = ACTIONS(2678), + [anon_sym_u64] = ACTIONS(2678), + [anon_sym_i64] = ACTIONS(2678), + [anon_sym_u128] = ACTIONS(2678), + [anon_sym_i128] = ACTIONS(2678), + [anon_sym_isize] = ACTIONS(2678), + [anon_sym_usize] = ACTIONS(2678), + [anon_sym_f32] = ACTIONS(2678), + [anon_sym_f64] = ACTIONS(2678), + [anon_sym_bool] = ACTIONS(2678), + [anon_sym_str] = ACTIONS(2678), + [anon_sym_char] = ACTIONS(2678), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_BANG] = ACTIONS(2676), + [anon_sym_AMP] = ACTIONS(2676), + [anon_sym_PIPE] = ACTIONS(2676), + [anon_sym_LT] = ACTIONS(2676), + [anon_sym_DOT_DOT] = ACTIONS(2676), + [anon_sym_COLON_COLON] = ACTIONS(2676), + [anon_sym_POUND] = ACTIONS(2676), + [anon_sym_SQUOTE] = ACTIONS(2678), + [anon_sym_async] = ACTIONS(2678), + [anon_sym_become] = ACTIONS(2678), + [anon_sym_break] = ACTIONS(2678), + [anon_sym_const] = ACTIONS(2678), + [anon_sym_continue] = ACTIONS(2678), + [anon_sym_default] = ACTIONS(2678), + [anon_sym_enum] = ACTIONS(2678), + [anon_sym_fn] = ACTIONS(2678), + [anon_sym_for] = ACTIONS(2678), + [anon_sym_gen] = ACTIONS(2678), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_impl] = ACTIONS(2678), + [anon_sym_let] = ACTIONS(2678), + [anon_sym_loop] = ACTIONS(2678), + [anon_sym_match] = ACTIONS(2678), + [anon_sym_mod] = ACTIONS(2678), + [anon_sym_pub] = ACTIONS(2678), + [anon_sym_return] = ACTIONS(2678), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_struct] = ACTIONS(2678), + [anon_sym_trait] = ACTIONS(2678), + [anon_sym_type] = ACTIONS(2678), + [anon_sym_union] = ACTIONS(2678), + [anon_sym_unsafe] = ACTIONS(2678), + [anon_sym_use] = ACTIONS(2678), + [anon_sym_while] = ACTIONS(2678), + [anon_sym_extern] = ACTIONS(2678), + [anon_sym_raw] = ACTIONS(2678), + [anon_sym_yield] = ACTIONS(2678), + [anon_sym_move] = ACTIONS(2678), + [anon_sym_try] = ACTIONS(2678), + [sym_integer_literal] = ACTIONS(2676), + [aux_sym_string_literal_token1] = ACTIONS(2676), + [sym_char_literal] = ACTIONS(2676), + [anon_sym_true] = ACTIONS(2678), + [anon_sym_false] = ACTIONS(2678), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2678), + [sym_super] = ACTIONS(2678), + [sym_crate] = ACTIONS(2678), + [sym_metavariable] = ACTIONS(2676), + [sym__raw_string_literal_start] = ACTIONS(2676), + [sym_float_literal] = ACTIONS(2676), }, [STATE(716)] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2797), - [sym_identifier] = ACTIONS(2799), - [anon_sym_SEMI] = ACTIONS(2797), - [anon_sym_macro_rules_BANG] = ACTIONS(2797), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_LBRACK] = ACTIONS(2797), - [anon_sym_LBRACE] = ACTIONS(2797), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_STAR] = ACTIONS(2797), - [anon_sym_u8] = ACTIONS(2799), - [anon_sym_i8] = ACTIONS(2799), - [anon_sym_u16] = ACTIONS(2799), - [anon_sym_i16] = ACTIONS(2799), - [anon_sym_u32] = ACTIONS(2799), - [anon_sym_i32] = ACTIONS(2799), - [anon_sym_u64] = ACTIONS(2799), - [anon_sym_i64] = ACTIONS(2799), - [anon_sym_u128] = ACTIONS(2799), - [anon_sym_i128] = ACTIONS(2799), - [anon_sym_isize] = ACTIONS(2799), - [anon_sym_usize] = ACTIONS(2799), - [anon_sym_f32] = ACTIONS(2799), - [anon_sym_f64] = ACTIONS(2799), - [anon_sym_bool] = ACTIONS(2799), - [anon_sym_str] = ACTIONS(2799), - [anon_sym_char] = ACTIONS(2799), - [anon_sym_DASH] = ACTIONS(2797), - [anon_sym_BANG] = ACTIONS(2797), - [anon_sym_AMP] = ACTIONS(2797), - [anon_sym_PIPE] = ACTIONS(2797), - [anon_sym_LT] = ACTIONS(2797), - [anon_sym_DOT_DOT] = ACTIONS(2797), - [anon_sym_COLON_COLON] = ACTIONS(2797), - [anon_sym_POUND] = ACTIONS(2797), - [anon_sym_SQUOTE] = ACTIONS(2799), - [anon_sym_async] = ACTIONS(2799), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_const] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2799), - [anon_sym_default] = ACTIONS(2799), - [anon_sym_enum] = ACTIONS(2799), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_for] = ACTIONS(2799), - [anon_sym_gen] = ACTIONS(2799), - [anon_sym_if] = ACTIONS(2799), - [anon_sym_impl] = ACTIONS(2799), - [anon_sym_let] = ACTIONS(2799), - [anon_sym_loop] = ACTIONS(2799), - [anon_sym_match] = ACTIONS(2799), - [anon_sym_mod] = ACTIONS(2799), - [anon_sym_pub] = ACTIONS(2799), - [anon_sym_return] = ACTIONS(2799), - [anon_sym_static] = ACTIONS(2799), - [anon_sym_struct] = ACTIONS(2799), - [anon_sym_trait] = ACTIONS(2799), - [anon_sym_type] = ACTIONS(2799), - [anon_sym_union] = ACTIONS(2799), - [anon_sym_unsafe] = ACTIONS(2799), - [anon_sym_use] = ACTIONS(2799), - [anon_sym_while] = ACTIONS(2799), - [anon_sym_extern] = ACTIONS(2799), - [anon_sym_raw] = ACTIONS(2799), - [anon_sym_yield] = ACTIONS(2799), - [anon_sym_move] = ACTIONS(2799), - [anon_sym_try] = ACTIONS(2799), - [sym_integer_literal] = ACTIONS(2797), - [aux_sym_string_literal_token1] = ACTIONS(2797), - [sym_char_literal] = ACTIONS(2797), - [anon_sym_true] = ACTIONS(2799), - [anon_sym_false] = ACTIONS(2799), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2799), - [sym_super] = ACTIONS(2799), - [sym_crate] = ACTIONS(2799), - [sym_metavariable] = ACTIONS(2797), - [sym__raw_string_literal_start] = ACTIONS(2797), - [sym_float_literal] = ACTIONS(2797), + [ts_builtin_sym_end] = ACTIONS(2680), + [sym_identifier] = ACTIONS(2682), + [anon_sym_SEMI] = ACTIONS(2680), + [anon_sym_macro_rules_BANG] = ACTIONS(2680), + [anon_sym_LPAREN] = ACTIONS(2680), + [anon_sym_LBRACK] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_STAR] = ACTIONS(2680), + [anon_sym_u8] = ACTIONS(2682), + [anon_sym_i8] = ACTIONS(2682), + [anon_sym_u16] = ACTIONS(2682), + [anon_sym_i16] = ACTIONS(2682), + [anon_sym_u32] = ACTIONS(2682), + [anon_sym_i32] = ACTIONS(2682), + [anon_sym_u64] = ACTIONS(2682), + [anon_sym_i64] = ACTIONS(2682), + [anon_sym_u128] = ACTIONS(2682), + [anon_sym_i128] = ACTIONS(2682), + [anon_sym_isize] = ACTIONS(2682), + [anon_sym_usize] = ACTIONS(2682), + [anon_sym_f32] = ACTIONS(2682), + [anon_sym_f64] = ACTIONS(2682), + [anon_sym_bool] = ACTIONS(2682), + [anon_sym_str] = ACTIONS(2682), + [anon_sym_char] = ACTIONS(2682), + [anon_sym_DASH] = ACTIONS(2680), + [anon_sym_BANG] = ACTIONS(2680), + [anon_sym_AMP] = ACTIONS(2680), + [anon_sym_PIPE] = ACTIONS(2680), + [anon_sym_LT] = ACTIONS(2680), + [anon_sym_DOT_DOT] = ACTIONS(2680), + [anon_sym_COLON_COLON] = ACTIONS(2680), + [anon_sym_POUND] = ACTIONS(2680), + [anon_sym_SQUOTE] = ACTIONS(2682), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_become] = ACTIONS(2682), + [anon_sym_break] = ACTIONS(2682), + [anon_sym_const] = ACTIONS(2682), + [anon_sym_continue] = ACTIONS(2682), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_enum] = ACTIONS(2682), + [anon_sym_fn] = ACTIONS(2682), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_gen] = ACTIONS(2682), + [anon_sym_if] = ACTIONS(2682), + [anon_sym_impl] = ACTIONS(2682), + [anon_sym_let] = ACTIONS(2682), + [anon_sym_loop] = ACTIONS(2682), + [anon_sym_match] = ACTIONS(2682), + [anon_sym_mod] = ACTIONS(2682), + [anon_sym_pub] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2682), + [anon_sym_static] = ACTIONS(2682), + [anon_sym_struct] = ACTIONS(2682), + [anon_sym_trait] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2682), + [anon_sym_union] = ACTIONS(2682), + [anon_sym_unsafe] = ACTIONS(2682), + [anon_sym_use] = ACTIONS(2682), + [anon_sym_while] = ACTIONS(2682), + [anon_sym_extern] = ACTIONS(2682), + [anon_sym_raw] = ACTIONS(2682), + [anon_sym_yield] = ACTIONS(2682), + [anon_sym_move] = ACTIONS(2682), + [anon_sym_try] = ACTIONS(2682), + [sym_integer_literal] = ACTIONS(2680), + [aux_sym_string_literal_token1] = ACTIONS(2680), + [sym_char_literal] = ACTIONS(2680), + [anon_sym_true] = ACTIONS(2682), + [anon_sym_false] = ACTIONS(2682), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2682), + [sym_super] = ACTIONS(2682), + [sym_crate] = ACTIONS(2682), + [sym_metavariable] = ACTIONS(2680), + [sym__raw_string_literal_start] = ACTIONS(2680), + [sym_float_literal] = ACTIONS(2680), }, [STATE(717)] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2801), - [sym_identifier] = ACTIONS(2803), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_macro_rules_BANG] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_RBRACE] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2801), - [anon_sym_u8] = ACTIONS(2803), - [anon_sym_i8] = ACTIONS(2803), - [anon_sym_u16] = ACTIONS(2803), - [anon_sym_i16] = ACTIONS(2803), - [anon_sym_u32] = ACTIONS(2803), - [anon_sym_i32] = ACTIONS(2803), - [anon_sym_u64] = ACTIONS(2803), - [anon_sym_i64] = ACTIONS(2803), - [anon_sym_u128] = ACTIONS(2803), - [anon_sym_i128] = ACTIONS(2803), - [anon_sym_isize] = ACTIONS(2803), - [anon_sym_usize] = ACTIONS(2803), - [anon_sym_f32] = ACTIONS(2803), - [anon_sym_f64] = ACTIONS(2803), - [anon_sym_bool] = ACTIONS(2803), - [anon_sym_str] = ACTIONS(2803), - [anon_sym_char] = ACTIONS(2803), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_BANG] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LT] = ACTIONS(2801), - [anon_sym_DOT_DOT] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_async] = ACTIONS(2803), - [anon_sym_break] = ACTIONS(2803), - [anon_sym_const] = ACTIONS(2803), - [anon_sym_continue] = ACTIONS(2803), - [anon_sym_default] = ACTIONS(2803), - [anon_sym_enum] = ACTIONS(2803), - [anon_sym_fn] = ACTIONS(2803), - [anon_sym_for] = ACTIONS(2803), - [anon_sym_gen] = ACTIONS(2803), - [anon_sym_if] = ACTIONS(2803), - [anon_sym_impl] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2803), - [anon_sym_loop] = ACTIONS(2803), - [anon_sym_match] = ACTIONS(2803), - [anon_sym_mod] = ACTIONS(2803), - [anon_sym_pub] = ACTIONS(2803), - [anon_sym_return] = ACTIONS(2803), - [anon_sym_static] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2803), - [anon_sym_trait] = ACTIONS(2803), - [anon_sym_type] = ACTIONS(2803), - [anon_sym_union] = ACTIONS(2803), - [anon_sym_unsafe] = ACTIONS(2803), - [anon_sym_use] = ACTIONS(2803), - [anon_sym_while] = ACTIONS(2803), - [anon_sym_extern] = ACTIONS(2803), - [anon_sym_raw] = ACTIONS(2803), - [anon_sym_yield] = ACTIONS(2803), - [anon_sym_move] = ACTIONS(2803), - [anon_sym_try] = ACTIONS(2803), - [sym_integer_literal] = ACTIONS(2801), - [aux_sym_string_literal_token1] = ACTIONS(2801), - [sym_char_literal] = ACTIONS(2801), - [anon_sym_true] = ACTIONS(2803), - [anon_sym_false] = ACTIONS(2803), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2803), - [sym_super] = ACTIONS(2803), - [sym_crate] = ACTIONS(2803), - [sym_metavariable] = ACTIONS(2801), - [sym__raw_string_literal_start] = ACTIONS(2801), - [sym_float_literal] = ACTIONS(2801), + [ts_builtin_sym_end] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), + [anon_sym_SEMI] = ACTIONS(2684), + [anon_sym_macro_rules_BANG] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2684), + [anon_sym_LBRACK] = ACTIONS(2684), + [anon_sym_LBRACE] = ACTIONS(2684), + [anon_sym_RBRACE] = ACTIONS(2684), + [anon_sym_STAR] = ACTIONS(2684), + [anon_sym_u8] = ACTIONS(2686), + [anon_sym_i8] = ACTIONS(2686), + [anon_sym_u16] = ACTIONS(2686), + [anon_sym_i16] = ACTIONS(2686), + [anon_sym_u32] = ACTIONS(2686), + [anon_sym_i32] = ACTIONS(2686), + [anon_sym_u64] = ACTIONS(2686), + [anon_sym_i64] = ACTIONS(2686), + [anon_sym_u128] = ACTIONS(2686), + [anon_sym_i128] = ACTIONS(2686), + [anon_sym_isize] = ACTIONS(2686), + [anon_sym_usize] = ACTIONS(2686), + [anon_sym_f32] = ACTIONS(2686), + [anon_sym_f64] = ACTIONS(2686), + [anon_sym_bool] = ACTIONS(2686), + [anon_sym_str] = ACTIONS(2686), + [anon_sym_char] = ACTIONS(2686), + [anon_sym_DASH] = ACTIONS(2684), + [anon_sym_BANG] = ACTIONS(2684), + [anon_sym_AMP] = ACTIONS(2684), + [anon_sym_PIPE] = ACTIONS(2684), + [anon_sym_LT] = ACTIONS(2684), + [anon_sym_DOT_DOT] = ACTIONS(2684), + [anon_sym_COLON_COLON] = ACTIONS(2684), + [anon_sym_POUND] = ACTIONS(2684), + [anon_sym_SQUOTE] = ACTIONS(2686), + [anon_sym_async] = ACTIONS(2686), + [anon_sym_become] = ACTIONS(2686), + [anon_sym_break] = ACTIONS(2686), + [anon_sym_const] = ACTIONS(2686), + [anon_sym_continue] = ACTIONS(2686), + [anon_sym_default] = ACTIONS(2686), + [anon_sym_enum] = ACTIONS(2686), + [anon_sym_fn] = ACTIONS(2686), + [anon_sym_for] = ACTIONS(2686), + [anon_sym_gen] = ACTIONS(2686), + [anon_sym_if] = ACTIONS(2686), + [anon_sym_impl] = ACTIONS(2686), + [anon_sym_let] = ACTIONS(2686), + [anon_sym_loop] = ACTIONS(2686), + [anon_sym_match] = ACTIONS(2686), + [anon_sym_mod] = ACTIONS(2686), + [anon_sym_pub] = ACTIONS(2686), + [anon_sym_return] = ACTIONS(2686), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_struct] = ACTIONS(2686), + [anon_sym_trait] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_union] = ACTIONS(2686), + [anon_sym_unsafe] = ACTIONS(2686), + [anon_sym_use] = ACTIONS(2686), + [anon_sym_while] = ACTIONS(2686), + [anon_sym_extern] = ACTIONS(2686), + [anon_sym_raw] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(2686), + [anon_sym_move] = ACTIONS(2686), + [anon_sym_try] = ACTIONS(2686), + [sym_integer_literal] = ACTIONS(2684), + [aux_sym_string_literal_token1] = ACTIONS(2684), + [sym_char_literal] = ACTIONS(2684), + [anon_sym_true] = ACTIONS(2686), + [anon_sym_false] = ACTIONS(2686), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2686), + [sym_super] = ACTIONS(2686), + [sym_crate] = ACTIONS(2686), + [sym_metavariable] = ACTIONS(2684), + [sym__raw_string_literal_start] = ACTIONS(2684), + [sym_float_literal] = ACTIONS(2684), }, [STATE(718)] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(2688), + [sym_identifier] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2688), + [anon_sym_macro_rules_BANG] = ACTIONS(2688), + [anon_sym_LPAREN] = ACTIONS(2688), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(2688), + [anon_sym_RBRACE] = ACTIONS(2688), + [anon_sym_STAR] = ACTIONS(2688), + [anon_sym_u8] = ACTIONS(2690), + [anon_sym_i8] = ACTIONS(2690), + [anon_sym_u16] = ACTIONS(2690), + [anon_sym_i16] = ACTIONS(2690), + [anon_sym_u32] = ACTIONS(2690), + [anon_sym_i32] = ACTIONS(2690), + [anon_sym_u64] = ACTIONS(2690), + [anon_sym_i64] = ACTIONS(2690), + [anon_sym_u128] = ACTIONS(2690), + [anon_sym_i128] = ACTIONS(2690), + [anon_sym_isize] = ACTIONS(2690), + [anon_sym_usize] = ACTIONS(2690), + [anon_sym_f32] = ACTIONS(2690), + [anon_sym_f64] = ACTIONS(2690), + [anon_sym_bool] = ACTIONS(2690), + [anon_sym_str] = ACTIONS(2690), + [anon_sym_char] = ACTIONS(2690), + [anon_sym_DASH] = ACTIONS(2688), + [anon_sym_BANG] = ACTIONS(2688), + [anon_sym_AMP] = ACTIONS(2688), + [anon_sym_PIPE] = ACTIONS(2688), + [anon_sym_LT] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(2688), + [anon_sym_COLON_COLON] = ACTIONS(2688), + [anon_sym_POUND] = ACTIONS(2688), + [anon_sym_SQUOTE] = ACTIONS(2690), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_become] = ACTIONS(2690), + [anon_sym_break] = ACTIONS(2690), + [anon_sym_const] = ACTIONS(2690), + [anon_sym_continue] = ACTIONS(2690), + [anon_sym_default] = ACTIONS(2690), + [anon_sym_enum] = ACTIONS(2690), + [anon_sym_fn] = ACTIONS(2690), + [anon_sym_for] = ACTIONS(2690), + [anon_sym_gen] = ACTIONS(2690), + [anon_sym_if] = ACTIONS(2690), + [anon_sym_impl] = ACTIONS(2690), + [anon_sym_let] = ACTIONS(2690), + [anon_sym_loop] = ACTIONS(2690), + [anon_sym_match] = ACTIONS(2690), + [anon_sym_mod] = ACTIONS(2690), + [anon_sym_pub] = ACTIONS(2690), + [anon_sym_return] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2690), + [anon_sym_struct] = ACTIONS(2690), + [anon_sym_trait] = ACTIONS(2690), + [anon_sym_type] = ACTIONS(2690), + [anon_sym_union] = ACTIONS(2690), + [anon_sym_unsafe] = ACTIONS(2690), + [anon_sym_use] = ACTIONS(2690), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_extern] = ACTIONS(2690), + [anon_sym_raw] = ACTIONS(2690), + [anon_sym_yield] = ACTIONS(2690), + [anon_sym_move] = ACTIONS(2690), + [anon_sym_try] = ACTIONS(2690), + [sym_integer_literal] = ACTIONS(2688), + [aux_sym_string_literal_token1] = ACTIONS(2688), + [sym_char_literal] = ACTIONS(2688), + [anon_sym_true] = ACTIONS(2690), + [anon_sym_false] = ACTIONS(2690), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2690), + [sym_super] = ACTIONS(2690), + [sym_crate] = ACTIONS(2690), + [sym_metavariable] = ACTIONS(2688), + [sym__raw_string_literal_start] = ACTIONS(2688), + [sym_float_literal] = ACTIONS(2688), }, [STATE(719)] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2805), - [sym_identifier] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2805), - [anon_sym_macro_rules_BANG] = ACTIONS(2805), - [anon_sym_LPAREN] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2805), - [anon_sym_LBRACE] = ACTIONS(2805), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_STAR] = ACTIONS(2805), - [anon_sym_u8] = ACTIONS(2807), - [anon_sym_i8] = ACTIONS(2807), - [anon_sym_u16] = ACTIONS(2807), - [anon_sym_i16] = ACTIONS(2807), - [anon_sym_u32] = ACTIONS(2807), - [anon_sym_i32] = ACTIONS(2807), - [anon_sym_u64] = ACTIONS(2807), - [anon_sym_i64] = ACTIONS(2807), - [anon_sym_u128] = ACTIONS(2807), - [anon_sym_i128] = ACTIONS(2807), - [anon_sym_isize] = ACTIONS(2807), - [anon_sym_usize] = ACTIONS(2807), - [anon_sym_f32] = ACTIONS(2807), - [anon_sym_f64] = ACTIONS(2807), - [anon_sym_bool] = ACTIONS(2807), - [anon_sym_str] = ACTIONS(2807), - [anon_sym_char] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2805), - [anon_sym_BANG] = ACTIONS(2805), - [anon_sym_AMP] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2805), - [anon_sym_LT] = ACTIONS(2805), - [anon_sym_DOT_DOT] = ACTIONS(2805), - [anon_sym_COLON_COLON] = ACTIONS(2805), - [anon_sym_POUND] = ACTIONS(2805), - [anon_sym_SQUOTE] = ACTIONS(2807), - [anon_sym_async] = ACTIONS(2807), - [anon_sym_break] = ACTIONS(2807), - [anon_sym_const] = ACTIONS(2807), - [anon_sym_continue] = ACTIONS(2807), - [anon_sym_default] = ACTIONS(2807), - [anon_sym_enum] = ACTIONS(2807), - [anon_sym_fn] = ACTIONS(2807), - [anon_sym_for] = ACTIONS(2807), - [anon_sym_gen] = ACTIONS(2807), - [anon_sym_if] = ACTIONS(2807), - [anon_sym_impl] = ACTIONS(2807), - [anon_sym_let] = ACTIONS(2807), - [anon_sym_loop] = ACTIONS(2807), - [anon_sym_match] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_pub] = ACTIONS(2807), - [anon_sym_return] = ACTIONS(2807), - [anon_sym_static] = ACTIONS(2807), - [anon_sym_struct] = ACTIONS(2807), - [anon_sym_trait] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2807), - [anon_sym_union] = ACTIONS(2807), - [anon_sym_unsafe] = ACTIONS(2807), - [anon_sym_use] = ACTIONS(2807), - [anon_sym_while] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2807), - [anon_sym_raw] = ACTIONS(2807), - [anon_sym_yield] = ACTIONS(2807), - [anon_sym_move] = ACTIONS(2807), - [anon_sym_try] = ACTIONS(2807), - [sym_integer_literal] = ACTIONS(2805), - [aux_sym_string_literal_token1] = ACTIONS(2805), - [sym_char_literal] = ACTIONS(2805), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2807), - [sym_super] = ACTIONS(2807), - [sym_crate] = ACTIONS(2807), - [sym_metavariable] = ACTIONS(2805), - [sym__raw_string_literal_start] = ACTIONS(2805), - [sym_float_literal] = ACTIONS(2805), + [ts_builtin_sym_end] = ACTIONS(2692), + [sym_identifier] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2692), + [anon_sym_macro_rules_BANG] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(2692), + [anon_sym_LBRACK] = ACTIONS(2692), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_STAR] = ACTIONS(2692), + [anon_sym_u8] = ACTIONS(2694), + [anon_sym_i8] = ACTIONS(2694), + [anon_sym_u16] = ACTIONS(2694), + [anon_sym_i16] = ACTIONS(2694), + [anon_sym_u32] = ACTIONS(2694), + [anon_sym_i32] = ACTIONS(2694), + [anon_sym_u64] = ACTIONS(2694), + [anon_sym_i64] = ACTIONS(2694), + [anon_sym_u128] = ACTIONS(2694), + [anon_sym_i128] = ACTIONS(2694), + [anon_sym_isize] = ACTIONS(2694), + [anon_sym_usize] = ACTIONS(2694), + [anon_sym_f32] = ACTIONS(2694), + [anon_sym_f64] = ACTIONS(2694), + [anon_sym_bool] = ACTIONS(2694), + [anon_sym_str] = ACTIONS(2694), + [anon_sym_char] = ACTIONS(2694), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_DOT_DOT] = ACTIONS(2692), + [anon_sym_COLON_COLON] = ACTIONS(2692), + [anon_sym_POUND] = ACTIONS(2692), + [anon_sym_SQUOTE] = ACTIONS(2694), + [anon_sym_async] = ACTIONS(2694), + [anon_sym_become] = ACTIONS(2694), + [anon_sym_break] = ACTIONS(2694), + [anon_sym_const] = ACTIONS(2694), + [anon_sym_continue] = ACTIONS(2694), + [anon_sym_default] = ACTIONS(2694), + [anon_sym_enum] = ACTIONS(2694), + [anon_sym_fn] = ACTIONS(2694), + [anon_sym_for] = ACTIONS(2694), + [anon_sym_gen] = ACTIONS(2694), + [anon_sym_if] = ACTIONS(2694), + [anon_sym_impl] = ACTIONS(2694), + [anon_sym_let] = ACTIONS(2694), + [anon_sym_loop] = ACTIONS(2694), + [anon_sym_match] = ACTIONS(2694), + [anon_sym_mod] = ACTIONS(2694), + [anon_sym_pub] = ACTIONS(2694), + [anon_sym_return] = ACTIONS(2694), + [anon_sym_static] = ACTIONS(2694), + [anon_sym_struct] = ACTIONS(2694), + [anon_sym_trait] = ACTIONS(2694), + [anon_sym_type] = ACTIONS(2694), + [anon_sym_union] = ACTIONS(2694), + [anon_sym_unsafe] = ACTIONS(2694), + [anon_sym_use] = ACTIONS(2694), + [anon_sym_while] = ACTIONS(2694), + [anon_sym_extern] = ACTIONS(2694), + [anon_sym_raw] = ACTIONS(2694), + [anon_sym_yield] = ACTIONS(2694), + [anon_sym_move] = ACTIONS(2694), + [anon_sym_try] = ACTIONS(2694), + [sym_integer_literal] = ACTIONS(2692), + [aux_sym_string_literal_token1] = ACTIONS(2692), + [sym_char_literal] = ACTIONS(2692), + [anon_sym_true] = ACTIONS(2694), + [anon_sym_false] = ACTIONS(2694), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2694), + [sym_super] = ACTIONS(2694), + [sym_crate] = ACTIONS(2694), + [sym_metavariable] = ACTIONS(2692), + [sym__raw_string_literal_start] = ACTIONS(2692), + [sym_float_literal] = ACTIONS(2692), }, [STATE(720)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2696), + [sym_identifier] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2696), + [anon_sym_macro_rules_BANG] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2696), + [anon_sym_LBRACK] = ACTIONS(2696), + [anon_sym_LBRACE] = ACTIONS(2696), + [anon_sym_RBRACE] = ACTIONS(2696), + [anon_sym_STAR] = ACTIONS(2696), + [anon_sym_u8] = ACTIONS(2698), + [anon_sym_i8] = ACTIONS(2698), + [anon_sym_u16] = ACTIONS(2698), + [anon_sym_i16] = ACTIONS(2698), + [anon_sym_u32] = ACTIONS(2698), + [anon_sym_i32] = ACTIONS(2698), + [anon_sym_u64] = ACTIONS(2698), + [anon_sym_i64] = ACTIONS(2698), + [anon_sym_u128] = ACTIONS(2698), + [anon_sym_i128] = ACTIONS(2698), + [anon_sym_isize] = ACTIONS(2698), + [anon_sym_usize] = ACTIONS(2698), + [anon_sym_f32] = ACTIONS(2698), + [anon_sym_f64] = ACTIONS(2698), + [anon_sym_bool] = ACTIONS(2698), + [anon_sym_str] = ACTIONS(2698), + [anon_sym_char] = ACTIONS(2698), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(2696), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_DOT_DOT] = ACTIONS(2696), + [anon_sym_COLON_COLON] = ACTIONS(2696), + [anon_sym_POUND] = ACTIONS(2696), + [anon_sym_SQUOTE] = ACTIONS(2698), + [anon_sym_async] = ACTIONS(2698), + [anon_sym_become] = ACTIONS(2698), + [anon_sym_break] = ACTIONS(2698), + [anon_sym_const] = ACTIONS(2698), + [anon_sym_continue] = ACTIONS(2698), + [anon_sym_default] = ACTIONS(2698), + [anon_sym_enum] = ACTIONS(2698), + [anon_sym_fn] = ACTIONS(2698), + [anon_sym_for] = ACTIONS(2698), + [anon_sym_gen] = ACTIONS(2698), + [anon_sym_if] = ACTIONS(2698), + [anon_sym_impl] = ACTIONS(2698), + [anon_sym_let] = ACTIONS(2698), + [anon_sym_loop] = ACTIONS(2698), + [anon_sym_match] = ACTIONS(2698), + [anon_sym_mod] = ACTIONS(2698), + [anon_sym_pub] = ACTIONS(2698), + [anon_sym_return] = ACTIONS(2698), + [anon_sym_static] = ACTIONS(2698), + [anon_sym_struct] = ACTIONS(2698), + [anon_sym_trait] = ACTIONS(2698), + [anon_sym_type] = ACTIONS(2698), + [anon_sym_union] = ACTIONS(2698), + [anon_sym_unsafe] = ACTIONS(2698), + [anon_sym_use] = ACTIONS(2698), + [anon_sym_while] = ACTIONS(2698), + [anon_sym_extern] = ACTIONS(2698), + [anon_sym_raw] = ACTIONS(2698), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_move] = ACTIONS(2698), + [anon_sym_try] = ACTIONS(2698), + [sym_integer_literal] = ACTIONS(2696), + [aux_sym_string_literal_token1] = ACTIONS(2696), + [sym_char_literal] = ACTIONS(2696), + [anon_sym_true] = ACTIONS(2698), + [anon_sym_false] = ACTIONS(2698), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2698), + [sym_super] = ACTIONS(2698), + [sym_crate] = ACTIONS(2698), + [sym_metavariable] = ACTIONS(2696), + [sym__raw_string_literal_start] = ACTIONS(2696), + [sym_float_literal] = ACTIONS(2696), }, [STATE(721)] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2700), + [sym_identifier] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_macro_rules_BANG] = ACTIONS(2700), + [anon_sym_LPAREN] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2700), + [anon_sym_LBRACE] = ACTIONS(2700), + [anon_sym_RBRACE] = ACTIONS(2700), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_u8] = ACTIONS(2702), + [anon_sym_i8] = ACTIONS(2702), + [anon_sym_u16] = ACTIONS(2702), + [anon_sym_i16] = ACTIONS(2702), + [anon_sym_u32] = ACTIONS(2702), + [anon_sym_i32] = ACTIONS(2702), + [anon_sym_u64] = ACTIONS(2702), + [anon_sym_i64] = ACTIONS(2702), + [anon_sym_u128] = ACTIONS(2702), + [anon_sym_i128] = ACTIONS(2702), + [anon_sym_isize] = ACTIONS(2702), + [anon_sym_usize] = ACTIONS(2702), + [anon_sym_f32] = ACTIONS(2702), + [anon_sym_f64] = ACTIONS(2702), + [anon_sym_bool] = ACTIONS(2702), + [anon_sym_str] = ACTIONS(2702), + [anon_sym_char] = ACTIONS(2702), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_BANG] = ACTIONS(2700), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_DOT_DOT] = ACTIONS(2700), + [anon_sym_COLON_COLON] = ACTIONS(2700), + [anon_sym_POUND] = ACTIONS(2700), + [anon_sym_SQUOTE] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_become] = ACTIONS(2702), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_const] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2702), + [anon_sym_default] = ACTIONS(2702), + [anon_sym_enum] = ACTIONS(2702), + [anon_sym_fn] = ACTIONS(2702), + [anon_sym_for] = ACTIONS(2702), + [anon_sym_gen] = ACTIONS(2702), + [anon_sym_if] = ACTIONS(2702), + [anon_sym_impl] = ACTIONS(2702), + [anon_sym_let] = ACTIONS(2702), + [anon_sym_loop] = ACTIONS(2702), + [anon_sym_match] = ACTIONS(2702), + [anon_sym_mod] = ACTIONS(2702), + [anon_sym_pub] = ACTIONS(2702), + [anon_sym_return] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(2702), + [anon_sym_struct] = ACTIONS(2702), + [anon_sym_trait] = ACTIONS(2702), + [anon_sym_type] = ACTIONS(2702), + [anon_sym_union] = ACTIONS(2702), + [anon_sym_unsafe] = ACTIONS(2702), + [anon_sym_use] = ACTIONS(2702), + [anon_sym_while] = ACTIONS(2702), + [anon_sym_extern] = ACTIONS(2702), + [anon_sym_raw] = ACTIONS(2702), + [anon_sym_yield] = ACTIONS(2702), + [anon_sym_move] = ACTIONS(2702), + [anon_sym_try] = ACTIONS(2702), + [sym_integer_literal] = ACTIONS(2700), + [aux_sym_string_literal_token1] = ACTIONS(2700), + [sym_char_literal] = ACTIONS(2700), + [anon_sym_true] = ACTIONS(2702), + [anon_sym_false] = ACTIONS(2702), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2702), + [sym_super] = ACTIONS(2702), + [sym_crate] = ACTIONS(2702), + [sym_metavariable] = ACTIONS(2700), + [sym__raw_string_literal_start] = ACTIONS(2700), + [sym_float_literal] = ACTIONS(2700), }, [STATE(722)] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2704), + [sym_identifier] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2704), + [anon_sym_macro_rules_BANG] = ACTIONS(2704), + [anon_sym_LPAREN] = ACTIONS(2704), + [anon_sym_LBRACK] = ACTIONS(2704), + [anon_sym_LBRACE] = ACTIONS(2704), + [anon_sym_RBRACE] = ACTIONS(2704), + [anon_sym_STAR] = ACTIONS(2704), + [anon_sym_u8] = ACTIONS(2706), + [anon_sym_i8] = ACTIONS(2706), + [anon_sym_u16] = ACTIONS(2706), + [anon_sym_i16] = ACTIONS(2706), + [anon_sym_u32] = ACTIONS(2706), + [anon_sym_i32] = ACTIONS(2706), + [anon_sym_u64] = ACTIONS(2706), + [anon_sym_i64] = ACTIONS(2706), + [anon_sym_u128] = ACTIONS(2706), + [anon_sym_i128] = ACTIONS(2706), + [anon_sym_isize] = ACTIONS(2706), + [anon_sym_usize] = ACTIONS(2706), + [anon_sym_f32] = ACTIONS(2706), + [anon_sym_f64] = ACTIONS(2706), + [anon_sym_bool] = ACTIONS(2706), + [anon_sym_str] = ACTIONS(2706), + [anon_sym_char] = ACTIONS(2706), + [anon_sym_DASH] = ACTIONS(2704), + [anon_sym_BANG] = ACTIONS(2704), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_DOT_DOT] = ACTIONS(2704), + [anon_sym_COLON_COLON] = ACTIONS(2704), + [anon_sym_POUND] = ACTIONS(2704), + [anon_sym_SQUOTE] = ACTIONS(2706), + [anon_sym_async] = ACTIONS(2706), + [anon_sym_become] = ACTIONS(2706), + [anon_sym_break] = ACTIONS(2706), + [anon_sym_const] = ACTIONS(2706), + [anon_sym_continue] = ACTIONS(2706), + [anon_sym_default] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2706), + [anon_sym_fn] = ACTIONS(2706), + [anon_sym_for] = ACTIONS(2706), + [anon_sym_gen] = ACTIONS(2706), + [anon_sym_if] = ACTIONS(2706), + [anon_sym_impl] = ACTIONS(2706), + [anon_sym_let] = ACTIONS(2706), + [anon_sym_loop] = ACTIONS(2706), + [anon_sym_match] = ACTIONS(2706), + [anon_sym_mod] = ACTIONS(2706), + [anon_sym_pub] = ACTIONS(2706), + [anon_sym_return] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_struct] = ACTIONS(2706), + [anon_sym_trait] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_union] = ACTIONS(2706), + [anon_sym_unsafe] = ACTIONS(2706), + [anon_sym_use] = ACTIONS(2706), + [anon_sym_while] = ACTIONS(2706), + [anon_sym_extern] = ACTIONS(2706), + [anon_sym_raw] = ACTIONS(2706), + [anon_sym_yield] = ACTIONS(2706), + [anon_sym_move] = ACTIONS(2706), + [anon_sym_try] = ACTIONS(2706), + [sym_integer_literal] = ACTIONS(2704), + [aux_sym_string_literal_token1] = ACTIONS(2704), + [sym_char_literal] = ACTIONS(2704), + [anon_sym_true] = ACTIONS(2706), + [anon_sym_false] = ACTIONS(2706), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2706), + [sym_super] = ACTIONS(2706), + [sym_crate] = ACTIONS(2706), + [sym_metavariable] = ACTIONS(2704), + [sym__raw_string_literal_start] = ACTIONS(2704), + [sym_float_literal] = ACTIONS(2704), }, [STATE(723)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [ts_builtin_sym_end] = ACTIONS(2708), + [sym_identifier] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2708), + [anon_sym_macro_rules_BANG] = ACTIONS(2708), + [anon_sym_LPAREN] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(2708), + [anon_sym_RBRACE] = ACTIONS(2708), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_u8] = ACTIONS(2710), + [anon_sym_i8] = ACTIONS(2710), + [anon_sym_u16] = ACTIONS(2710), + [anon_sym_i16] = ACTIONS(2710), + [anon_sym_u32] = ACTIONS(2710), + [anon_sym_i32] = ACTIONS(2710), + [anon_sym_u64] = ACTIONS(2710), + [anon_sym_i64] = ACTIONS(2710), + [anon_sym_u128] = ACTIONS(2710), + [anon_sym_i128] = ACTIONS(2710), + [anon_sym_isize] = ACTIONS(2710), + [anon_sym_usize] = ACTIONS(2710), + [anon_sym_f32] = ACTIONS(2710), + [anon_sym_f64] = ACTIONS(2710), + [anon_sym_bool] = ACTIONS(2710), + [anon_sym_str] = ACTIONS(2710), + [anon_sym_char] = ACTIONS(2710), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(2708), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_DOT_DOT] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2708), + [anon_sym_POUND] = ACTIONS(2708), + [anon_sym_SQUOTE] = ACTIONS(2710), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_become] = ACTIONS(2710), + [anon_sym_break] = ACTIONS(2710), + [anon_sym_const] = ACTIONS(2710), + [anon_sym_continue] = ACTIONS(2710), + [anon_sym_default] = ACTIONS(2710), + [anon_sym_enum] = ACTIONS(2710), + [anon_sym_fn] = ACTIONS(2710), + [anon_sym_for] = ACTIONS(2710), + [anon_sym_gen] = ACTIONS(2710), + [anon_sym_if] = ACTIONS(2710), + [anon_sym_impl] = ACTIONS(2710), + [anon_sym_let] = ACTIONS(2710), + [anon_sym_loop] = ACTIONS(2710), + [anon_sym_match] = ACTIONS(2710), + [anon_sym_mod] = ACTIONS(2710), + [anon_sym_pub] = ACTIONS(2710), + [anon_sym_return] = ACTIONS(2710), + [anon_sym_static] = ACTIONS(2710), + [anon_sym_struct] = ACTIONS(2710), + [anon_sym_trait] = ACTIONS(2710), + [anon_sym_type] = ACTIONS(2710), + [anon_sym_union] = ACTIONS(2710), + [anon_sym_unsafe] = ACTIONS(2710), + [anon_sym_use] = ACTIONS(2710), + [anon_sym_while] = ACTIONS(2710), + [anon_sym_extern] = ACTIONS(2710), + [anon_sym_raw] = ACTIONS(2710), + [anon_sym_yield] = ACTIONS(2710), + [anon_sym_move] = ACTIONS(2710), + [anon_sym_try] = ACTIONS(2710), + [sym_integer_literal] = ACTIONS(2708), + [aux_sym_string_literal_token1] = ACTIONS(2708), + [sym_char_literal] = ACTIONS(2708), + [anon_sym_true] = ACTIONS(2710), + [anon_sym_false] = ACTIONS(2710), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2710), + [sym_super] = ACTIONS(2710), + [sym_crate] = ACTIONS(2710), + [sym_metavariable] = ACTIONS(2708), + [sym__raw_string_literal_start] = ACTIONS(2708), + [sym_float_literal] = ACTIONS(2708), }, [STATE(724)] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2712), + [sym_identifier] = ACTIONS(2714), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_macro_rules_BANG] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2712), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_LBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_STAR] = ACTIONS(2712), + [anon_sym_u8] = ACTIONS(2714), + [anon_sym_i8] = ACTIONS(2714), + [anon_sym_u16] = ACTIONS(2714), + [anon_sym_i16] = ACTIONS(2714), + [anon_sym_u32] = ACTIONS(2714), + [anon_sym_i32] = ACTIONS(2714), + [anon_sym_u64] = ACTIONS(2714), + [anon_sym_i64] = ACTIONS(2714), + [anon_sym_u128] = ACTIONS(2714), + [anon_sym_i128] = ACTIONS(2714), + [anon_sym_isize] = ACTIONS(2714), + [anon_sym_usize] = ACTIONS(2714), + [anon_sym_f32] = ACTIONS(2714), + [anon_sym_f64] = ACTIONS(2714), + [anon_sym_bool] = ACTIONS(2714), + [anon_sym_str] = ACTIONS(2714), + [anon_sym_char] = ACTIONS(2714), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_BANG] = ACTIONS(2712), + [anon_sym_AMP] = ACTIONS(2712), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_DOT_DOT] = ACTIONS(2712), + [anon_sym_COLON_COLON] = ACTIONS(2712), + [anon_sym_POUND] = ACTIONS(2712), + [anon_sym_SQUOTE] = ACTIONS(2714), + [anon_sym_async] = ACTIONS(2714), + [anon_sym_become] = ACTIONS(2714), + [anon_sym_break] = ACTIONS(2714), + [anon_sym_const] = ACTIONS(2714), + [anon_sym_continue] = ACTIONS(2714), + [anon_sym_default] = ACTIONS(2714), + [anon_sym_enum] = ACTIONS(2714), + [anon_sym_fn] = ACTIONS(2714), + [anon_sym_for] = ACTIONS(2714), + [anon_sym_gen] = ACTIONS(2714), + [anon_sym_if] = ACTIONS(2714), + [anon_sym_impl] = ACTIONS(2714), + [anon_sym_let] = ACTIONS(2714), + [anon_sym_loop] = ACTIONS(2714), + [anon_sym_match] = ACTIONS(2714), + [anon_sym_mod] = ACTIONS(2714), + [anon_sym_pub] = ACTIONS(2714), + [anon_sym_return] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(2714), + [anon_sym_struct] = ACTIONS(2714), + [anon_sym_trait] = ACTIONS(2714), + [anon_sym_type] = ACTIONS(2714), + [anon_sym_union] = ACTIONS(2714), + [anon_sym_unsafe] = ACTIONS(2714), + [anon_sym_use] = ACTIONS(2714), + [anon_sym_while] = ACTIONS(2714), + [anon_sym_extern] = ACTIONS(2714), + [anon_sym_raw] = ACTIONS(2714), + [anon_sym_yield] = ACTIONS(2714), + [anon_sym_move] = ACTIONS(2714), + [anon_sym_try] = ACTIONS(2714), + [sym_integer_literal] = ACTIONS(2712), + [aux_sym_string_literal_token1] = ACTIONS(2712), + [sym_char_literal] = ACTIONS(2712), + [anon_sym_true] = ACTIONS(2714), + [anon_sym_false] = ACTIONS(2714), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2714), + [sym_super] = ACTIONS(2714), + [sym_crate] = ACTIONS(2714), + [sym_metavariable] = ACTIONS(2712), + [sym__raw_string_literal_start] = ACTIONS(2712), + [sym_float_literal] = ACTIONS(2712), }, [STATE(725)] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2716), + [sym_identifier] = ACTIONS(2718), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_macro_rules_BANG] = ACTIONS(2716), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2716), + [anon_sym_u8] = ACTIONS(2718), + [anon_sym_i8] = ACTIONS(2718), + [anon_sym_u16] = ACTIONS(2718), + [anon_sym_i16] = ACTIONS(2718), + [anon_sym_u32] = ACTIONS(2718), + [anon_sym_i32] = ACTIONS(2718), + [anon_sym_u64] = ACTIONS(2718), + [anon_sym_i64] = ACTIONS(2718), + [anon_sym_u128] = ACTIONS(2718), + [anon_sym_i128] = ACTIONS(2718), + [anon_sym_isize] = ACTIONS(2718), + [anon_sym_usize] = ACTIONS(2718), + [anon_sym_f32] = ACTIONS(2718), + [anon_sym_f64] = ACTIONS(2718), + [anon_sym_bool] = ACTIONS(2718), + [anon_sym_str] = ACTIONS(2718), + [anon_sym_char] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2716), + [anon_sym_DOT_DOT] = ACTIONS(2716), + [anon_sym_COLON_COLON] = ACTIONS(2716), + [anon_sym_POUND] = ACTIONS(2716), + [anon_sym_SQUOTE] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(2718), + [anon_sym_become] = ACTIONS(2718), + [anon_sym_break] = ACTIONS(2718), + [anon_sym_const] = ACTIONS(2718), + [anon_sym_continue] = ACTIONS(2718), + [anon_sym_default] = ACTIONS(2718), + [anon_sym_enum] = ACTIONS(2718), + [anon_sym_fn] = ACTIONS(2718), + [anon_sym_for] = ACTIONS(2718), + [anon_sym_gen] = ACTIONS(2718), + [anon_sym_if] = ACTIONS(2718), + [anon_sym_impl] = ACTIONS(2718), + [anon_sym_let] = ACTIONS(2718), + [anon_sym_loop] = ACTIONS(2718), + [anon_sym_match] = ACTIONS(2718), + [anon_sym_mod] = ACTIONS(2718), + [anon_sym_pub] = ACTIONS(2718), + [anon_sym_return] = ACTIONS(2718), + [anon_sym_static] = ACTIONS(2718), + [anon_sym_struct] = ACTIONS(2718), + [anon_sym_trait] = ACTIONS(2718), + [anon_sym_type] = ACTIONS(2718), + [anon_sym_union] = ACTIONS(2718), + [anon_sym_unsafe] = ACTIONS(2718), + [anon_sym_use] = ACTIONS(2718), + [anon_sym_while] = ACTIONS(2718), + [anon_sym_extern] = ACTIONS(2718), + [anon_sym_raw] = ACTIONS(2718), + [anon_sym_yield] = ACTIONS(2718), + [anon_sym_move] = ACTIONS(2718), + [anon_sym_try] = ACTIONS(2718), + [sym_integer_literal] = ACTIONS(2716), + [aux_sym_string_literal_token1] = ACTIONS(2716), + [sym_char_literal] = ACTIONS(2716), + [anon_sym_true] = ACTIONS(2718), + [anon_sym_false] = ACTIONS(2718), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2718), + [sym_super] = ACTIONS(2718), + [sym_crate] = ACTIONS(2718), + [sym_metavariable] = ACTIONS(2716), + [sym__raw_string_literal_start] = ACTIONS(2716), + [sym_float_literal] = ACTIONS(2716), }, [STATE(726)] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2720), + [sym_identifier] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(2720), + [anon_sym_macro_rules_BANG] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(2720), + [anon_sym_LBRACK] = ACTIONS(2720), + [anon_sym_LBRACE] = ACTIONS(2720), + [anon_sym_RBRACE] = ACTIONS(2720), + [anon_sym_STAR] = ACTIONS(2720), + [anon_sym_u8] = ACTIONS(2722), + [anon_sym_i8] = ACTIONS(2722), + [anon_sym_u16] = ACTIONS(2722), + [anon_sym_i16] = ACTIONS(2722), + [anon_sym_u32] = ACTIONS(2722), + [anon_sym_i32] = ACTIONS(2722), + [anon_sym_u64] = ACTIONS(2722), + [anon_sym_i64] = ACTIONS(2722), + [anon_sym_u128] = ACTIONS(2722), + [anon_sym_i128] = ACTIONS(2722), + [anon_sym_isize] = ACTIONS(2722), + [anon_sym_usize] = ACTIONS(2722), + [anon_sym_f32] = ACTIONS(2722), + [anon_sym_f64] = ACTIONS(2722), + [anon_sym_bool] = ACTIONS(2722), + [anon_sym_str] = ACTIONS(2722), + [anon_sym_char] = ACTIONS(2722), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(2720), + [anon_sym_AMP] = ACTIONS(2720), + [anon_sym_PIPE] = ACTIONS(2720), + [anon_sym_LT] = ACTIONS(2720), + [anon_sym_DOT_DOT] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(2720), + [anon_sym_POUND] = ACTIONS(2720), + [anon_sym_SQUOTE] = ACTIONS(2722), + [anon_sym_async] = ACTIONS(2722), + [anon_sym_become] = ACTIONS(2722), + [anon_sym_break] = ACTIONS(2722), + [anon_sym_const] = ACTIONS(2722), + [anon_sym_continue] = ACTIONS(2722), + [anon_sym_default] = ACTIONS(2722), + [anon_sym_enum] = ACTIONS(2722), + [anon_sym_fn] = ACTIONS(2722), + [anon_sym_for] = ACTIONS(2722), + [anon_sym_gen] = ACTIONS(2722), + [anon_sym_if] = ACTIONS(2722), + [anon_sym_impl] = ACTIONS(2722), + [anon_sym_let] = ACTIONS(2722), + [anon_sym_loop] = ACTIONS(2722), + [anon_sym_match] = ACTIONS(2722), + [anon_sym_mod] = ACTIONS(2722), + [anon_sym_pub] = ACTIONS(2722), + [anon_sym_return] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2722), + [anon_sym_struct] = ACTIONS(2722), + [anon_sym_trait] = ACTIONS(2722), + [anon_sym_type] = ACTIONS(2722), + [anon_sym_union] = ACTIONS(2722), + [anon_sym_unsafe] = ACTIONS(2722), + [anon_sym_use] = ACTIONS(2722), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_extern] = ACTIONS(2722), + [anon_sym_raw] = ACTIONS(2722), + [anon_sym_yield] = ACTIONS(2722), + [anon_sym_move] = ACTIONS(2722), + [anon_sym_try] = ACTIONS(2722), + [sym_integer_literal] = ACTIONS(2720), + [aux_sym_string_literal_token1] = ACTIONS(2720), + [sym_char_literal] = ACTIONS(2720), + [anon_sym_true] = ACTIONS(2722), + [anon_sym_false] = ACTIONS(2722), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2722), + [sym_super] = ACTIONS(2722), + [sym_crate] = ACTIONS(2722), + [sym_metavariable] = ACTIONS(2720), + [sym__raw_string_literal_start] = ACTIONS(2720), + [sym_float_literal] = ACTIONS(2720), }, [STATE(727)] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2724), + [sym_identifier] = ACTIONS(2726), + [anon_sym_SEMI] = ACTIONS(2724), + [anon_sym_macro_rules_BANG] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(2724), + [anon_sym_LBRACK] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_RBRACE] = ACTIONS(2724), + [anon_sym_STAR] = ACTIONS(2724), + [anon_sym_u8] = ACTIONS(2726), + [anon_sym_i8] = ACTIONS(2726), + [anon_sym_u16] = ACTIONS(2726), + [anon_sym_i16] = ACTIONS(2726), + [anon_sym_u32] = ACTIONS(2726), + [anon_sym_i32] = ACTIONS(2726), + [anon_sym_u64] = ACTIONS(2726), + [anon_sym_i64] = ACTIONS(2726), + [anon_sym_u128] = ACTIONS(2726), + [anon_sym_i128] = ACTIONS(2726), + [anon_sym_isize] = ACTIONS(2726), + [anon_sym_usize] = ACTIONS(2726), + [anon_sym_f32] = ACTIONS(2726), + [anon_sym_f64] = ACTIONS(2726), + [anon_sym_bool] = ACTIONS(2726), + [anon_sym_str] = ACTIONS(2726), + [anon_sym_char] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_BANG] = ACTIONS(2724), + [anon_sym_AMP] = ACTIONS(2724), + [anon_sym_PIPE] = ACTIONS(2724), + [anon_sym_LT] = ACTIONS(2724), + [anon_sym_DOT_DOT] = ACTIONS(2724), + [anon_sym_COLON_COLON] = ACTIONS(2724), + [anon_sym_POUND] = ACTIONS(2724), + [anon_sym_SQUOTE] = ACTIONS(2726), + [anon_sym_async] = ACTIONS(2726), + [anon_sym_become] = ACTIONS(2726), + [anon_sym_break] = ACTIONS(2726), + [anon_sym_const] = ACTIONS(2726), + [anon_sym_continue] = ACTIONS(2726), + [anon_sym_default] = ACTIONS(2726), + [anon_sym_enum] = ACTIONS(2726), + [anon_sym_fn] = ACTIONS(2726), + [anon_sym_for] = ACTIONS(2726), + [anon_sym_gen] = ACTIONS(2726), + [anon_sym_if] = ACTIONS(2726), + [anon_sym_impl] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2726), + [anon_sym_loop] = ACTIONS(2726), + [anon_sym_match] = ACTIONS(2726), + [anon_sym_mod] = ACTIONS(2726), + [anon_sym_pub] = ACTIONS(2726), + [anon_sym_return] = ACTIONS(2726), + [anon_sym_static] = ACTIONS(2726), + [anon_sym_struct] = ACTIONS(2726), + [anon_sym_trait] = ACTIONS(2726), + [anon_sym_type] = ACTIONS(2726), + [anon_sym_union] = ACTIONS(2726), + [anon_sym_unsafe] = ACTIONS(2726), + [anon_sym_use] = ACTIONS(2726), + [anon_sym_while] = ACTIONS(2726), + [anon_sym_extern] = ACTIONS(2726), + [anon_sym_raw] = ACTIONS(2726), + [anon_sym_yield] = ACTIONS(2726), + [anon_sym_move] = ACTIONS(2726), + [anon_sym_try] = ACTIONS(2726), + [sym_integer_literal] = ACTIONS(2724), + [aux_sym_string_literal_token1] = ACTIONS(2724), + [sym_char_literal] = ACTIONS(2724), + [anon_sym_true] = ACTIONS(2726), + [anon_sym_false] = ACTIONS(2726), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2726), + [sym_super] = ACTIONS(2726), + [sym_crate] = ACTIONS(2726), + [sym_metavariable] = ACTIONS(2724), + [sym__raw_string_literal_start] = ACTIONS(2724), + [sym_float_literal] = ACTIONS(2724), }, [STATE(728)] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2728), + [sym_identifier] = ACTIONS(2730), + [anon_sym_SEMI] = ACTIONS(2728), + [anon_sym_macro_rules_BANG] = ACTIONS(2728), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2728), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_RBRACE] = ACTIONS(2728), + [anon_sym_STAR] = ACTIONS(2728), + [anon_sym_u8] = ACTIONS(2730), + [anon_sym_i8] = ACTIONS(2730), + [anon_sym_u16] = ACTIONS(2730), + [anon_sym_i16] = ACTIONS(2730), + [anon_sym_u32] = ACTIONS(2730), + [anon_sym_i32] = ACTIONS(2730), + [anon_sym_u64] = ACTIONS(2730), + [anon_sym_i64] = ACTIONS(2730), + [anon_sym_u128] = ACTIONS(2730), + [anon_sym_i128] = ACTIONS(2730), + [anon_sym_isize] = ACTIONS(2730), + [anon_sym_usize] = ACTIONS(2730), + [anon_sym_f32] = ACTIONS(2730), + [anon_sym_f64] = ACTIONS(2730), + [anon_sym_bool] = ACTIONS(2730), + [anon_sym_str] = ACTIONS(2730), + [anon_sym_char] = ACTIONS(2730), + [anon_sym_DASH] = ACTIONS(2728), + [anon_sym_BANG] = ACTIONS(2728), + [anon_sym_AMP] = ACTIONS(2728), + [anon_sym_PIPE] = ACTIONS(2728), + [anon_sym_LT] = ACTIONS(2728), + [anon_sym_DOT_DOT] = ACTIONS(2728), + [anon_sym_COLON_COLON] = ACTIONS(2728), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_SQUOTE] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(2730), + [anon_sym_become] = ACTIONS(2730), + [anon_sym_break] = ACTIONS(2730), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_continue] = ACTIONS(2730), + [anon_sym_default] = ACTIONS(2730), + [anon_sym_enum] = ACTIONS(2730), + [anon_sym_fn] = ACTIONS(2730), + [anon_sym_for] = ACTIONS(2730), + [anon_sym_gen] = ACTIONS(2730), + [anon_sym_if] = ACTIONS(2730), + [anon_sym_impl] = ACTIONS(2730), + [anon_sym_let] = ACTIONS(2730), + [anon_sym_loop] = ACTIONS(2730), + [anon_sym_match] = ACTIONS(2730), + [anon_sym_mod] = ACTIONS(2730), + [anon_sym_pub] = ACTIONS(2730), + [anon_sym_return] = ACTIONS(2730), + [anon_sym_static] = ACTIONS(2730), + [anon_sym_struct] = ACTIONS(2730), + [anon_sym_trait] = ACTIONS(2730), + [anon_sym_type] = ACTIONS(2730), + [anon_sym_union] = ACTIONS(2730), + [anon_sym_unsafe] = ACTIONS(2730), + [anon_sym_use] = ACTIONS(2730), + [anon_sym_while] = ACTIONS(2730), + [anon_sym_extern] = ACTIONS(2730), + [anon_sym_raw] = ACTIONS(2730), + [anon_sym_yield] = ACTIONS(2730), + [anon_sym_move] = ACTIONS(2730), + [anon_sym_try] = ACTIONS(2730), + [sym_integer_literal] = ACTIONS(2728), + [aux_sym_string_literal_token1] = ACTIONS(2728), + [sym_char_literal] = ACTIONS(2728), + [anon_sym_true] = ACTIONS(2730), + [anon_sym_false] = ACTIONS(2730), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2730), + [sym_super] = ACTIONS(2730), + [sym_crate] = ACTIONS(2730), + [sym_metavariable] = ACTIONS(2728), + [sym__raw_string_literal_start] = ACTIONS(2728), + [sym_float_literal] = ACTIONS(2728), }, [STATE(729)] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2732), + [sym_identifier] = ACTIONS(2734), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_macro_rules_BANG] = ACTIONS(2732), + [anon_sym_LPAREN] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_RBRACE] = ACTIONS(2732), + [anon_sym_STAR] = ACTIONS(2732), + [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(2732), + [anon_sym_BANG] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), + [anon_sym_PIPE] = ACTIONS(2732), + [anon_sym_LT] = ACTIONS(2732), + [anon_sym_DOT_DOT] = ACTIONS(2732), + [anon_sym_COLON_COLON] = ACTIONS(2732), + [anon_sym_POUND] = ACTIONS(2732), + [anon_sym_SQUOTE] = ACTIONS(2734), + [anon_sym_async] = ACTIONS(2734), + [anon_sym_become] = ACTIONS(2734), + [anon_sym_break] = ACTIONS(2734), + [anon_sym_const] = ACTIONS(2734), + [anon_sym_continue] = ACTIONS(2734), + [anon_sym_default] = ACTIONS(2734), + [anon_sym_enum] = ACTIONS(2734), + [anon_sym_fn] = ACTIONS(2734), + [anon_sym_for] = ACTIONS(2734), + [anon_sym_gen] = ACTIONS(2734), + [anon_sym_if] = ACTIONS(2734), + [anon_sym_impl] = ACTIONS(2734), + [anon_sym_let] = ACTIONS(2734), + [anon_sym_loop] = ACTIONS(2734), + [anon_sym_match] = ACTIONS(2734), + [anon_sym_mod] = ACTIONS(2734), + [anon_sym_pub] = ACTIONS(2734), + [anon_sym_return] = ACTIONS(2734), + [anon_sym_static] = ACTIONS(2734), + [anon_sym_struct] = ACTIONS(2734), + [anon_sym_trait] = ACTIONS(2734), + [anon_sym_type] = ACTIONS(2734), + [anon_sym_union] = ACTIONS(2734), + [anon_sym_unsafe] = ACTIONS(2734), + [anon_sym_use] = ACTIONS(2734), + [anon_sym_while] = ACTIONS(2734), + [anon_sym_extern] = ACTIONS(2734), + [anon_sym_raw] = ACTIONS(2734), + [anon_sym_yield] = ACTIONS(2734), + [anon_sym_move] = ACTIONS(2734), + [anon_sym_try] = ACTIONS(2734), + [sym_integer_literal] = ACTIONS(2732), + [aux_sym_string_literal_token1] = ACTIONS(2732), + [sym_char_literal] = ACTIONS(2732), + [anon_sym_true] = ACTIONS(2734), + [anon_sym_false] = ACTIONS(2734), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2734), + [sym_super] = ACTIONS(2734), + [sym_crate] = ACTIONS(2734), + [sym_metavariable] = ACTIONS(2732), + [sym__raw_string_literal_start] = ACTIONS(2732), + [sym_float_literal] = ACTIONS(2732), }, [STATE(730)] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2736), + [sym_identifier] = ACTIONS(2738), + [anon_sym_SEMI] = ACTIONS(2736), + [anon_sym_macro_rules_BANG] = ACTIONS(2736), + [anon_sym_LPAREN] = ACTIONS(2736), + [anon_sym_LBRACK] = ACTIONS(2736), + [anon_sym_LBRACE] = ACTIONS(2736), + [anon_sym_RBRACE] = ACTIONS(2736), + [anon_sym_STAR] = ACTIONS(2736), + [anon_sym_u8] = ACTIONS(2738), + [anon_sym_i8] = ACTIONS(2738), + [anon_sym_u16] = ACTIONS(2738), + [anon_sym_i16] = ACTIONS(2738), + [anon_sym_u32] = ACTIONS(2738), + [anon_sym_i32] = ACTIONS(2738), + [anon_sym_u64] = ACTIONS(2738), + [anon_sym_i64] = ACTIONS(2738), + [anon_sym_u128] = ACTIONS(2738), + [anon_sym_i128] = ACTIONS(2738), + [anon_sym_isize] = ACTIONS(2738), + [anon_sym_usize] = ACTIONS(2738), + [anon_sym_f32] = ACTIONS(2738), + [anon_sym_f64] = ACTIONS(2738), + [anon_sym_bool] = ACTIONS(2738), + [anon_sym_str] = ACTIONS(2738), + [anon_sym_char] = ACTIONS(2738), + [anon_sym_DASH] = ACTIONS(2736), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_AMP] = ACTIONS(2736), + [anon_sym_PIPE] = ACTIONS(2736), + [anon_sym_LT] = ACTIONS(2736), + [anon_sym_DOT_DOT] = ACTIONS(2736), + [anon_sym_COLON_COLON] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(2736), + [anon_sym_SQUOTE] = ACTIONS(2738), + [anon_sym_async] = ACTIONS(2738), + [anon_sym_become] = ACTIONS(2738), + [anon_sym_break] = ACTIONS(2738), + [anon_sym_const] = ACTIONS(2738), + [anon_sym_continue] = ACTIONS(2738), + [anon_sym_default] = ACTIONS(2738), + [anon_sym_enum] = ACTIONS(2738), + [anon_sym_fn] = ACTIONS(2738), + [anon_sym_for] = ACTIONS(2738), + [anon_sym_gen] = ACTIONS(2738), + [anon_sym_if] = ACTIONS(2738), + [anon_sym_impl] = ACTIONS(2738), + [anon_sym_let] = ACTIONS(2738), + [anon_sym_loop] = ACTIONS(2738), + [anon_sym_match] = ACTIONS(2738), + [anon_sym_mod] = ACTIONS(2738), + [anon_sym_pub] = ACTIONS(2738), + [anon_sym_return] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_struct] = ACTIONS(2738), + [anon_sym_trait] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_union] = ACTIONS(2738), + [anon_sym_unsafe] = ACTIONS(2738), + [anon_sym_use] = ACTIONS(2738), + [anon_sym_while] = ACTIONS(2738), + [anon_sym_extern] = ACTIONS(2738), + [anon_sym_raw] = ACTIONS(2738), + [anon_sym_yield] = ACTIONS(2738), + [anon_sym_move] = ACTIONS(2738), + [anon_sym_try] = ACTIONS(2738), + [sym_integer_literal] = ACTIONS(2736), + [aux_sym_string_literal_token1] = ACTIONS(2736), + [sym_char_literal] = ACTIONS(2736), + [anon_sym_true] = ACTIONS(2738), + [anon_sym_false] = ACTIONS(2738), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2738), + [sym_super] = ACTIONS(2738), + [sym_crate] = ACTIONS(2738), + [sym_metavariable] = ACTIONS(2736), + [sym__raw_string_literal_start] = ACTIONS(2736), + [sym_float_literal] = ACTIONS(2736), }, [STATE(731)] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2740), + [sym_identifier] = ACTIONS(2742), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_macro_rules_BANG] = ACTIONS(2740), + [anon_sym_LPAREN] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2740), + [anon_sym_u8] = ACTIONS(2742), + [anon_sym_i8] = ACTIONS(2742), + [anon_sym_u16] = ACTIONS(2742), + [anon_sym_i16] = ACTIONS(2742), + [anon_sym_u32] = ACTIONS(2742), + [anon_sym_i32] = ACTIONS(2742), + [anon_sym_u64] = ACTIONS(2742), + [anon_sym_i64] = ACTIONS(2742), + [anon_sym_u128] = ACTIONS(2742), + [anon_sym_i128] = ACTIONS(2742), + [anon_sym_isize] = ACTIONS(2742), + [anon_sym_usize] = ACTIONS(2742), + [anon_sym_f32] = ACTIONS(2742), + [anon_sym_f64] = ACTIONS(2742), + [anon_sym_bool] = ACTIONS(2742), + [anon_sym_str] = ACTIONS(2742), + [anon_sym_char] = ACTIONS(2742), + [anon_sym_DASH] = ACTIONS(2740), + [anon_sym_BANG] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2740), + [anon_sym_DOT_DOT] = ACTIONS(2740), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_POUND] = ACTIONS(2740), + [anon_sym_SQUOTE] = ACTIONS(2742), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_become] = ACTIONS(2742), + [anon_sym_break] = ACTIONS(2742), + [anon_sym_const] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2742), + [anon_sym_default] = ACTIONS(2742), + [anon_sym_enum] = ACTIONS(2742), + [anon_sym_fn] = ACTIONS(2742), + [anon_sym_for] = ACTIONS(2742), + [anon_sym_gen] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_impl] = ACTIONS(2742), + [anon_sym_let] = ACTIONS(2742), + [anon_sym_loop] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_mod] = ACTIONS(2742), + [anon_sym_pub] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_static] = ACTIONS(2742), + [anon_sym_struct] = ACTIONS(2742), + [anon_sym_trait] = ACTIONS(2742), + [anon_sym_type] = ACTIONS(2742), + [anon_sym_union] = ACTIONS(2742), + [anon_sym_unsafe] = ACTIONS(2742), + [anon_sym_use] = ACTIONS(2742), + [anon_sym_while] = ACTIONS(2742), + [anon_sym_extern] = ACTIONS(2742), + [anon_sym_raw] = ACTIONS(2742), + [anon_sym_yield] = ACTIONS(2742), + [anon_sym_move] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [sym_integer_literal] = ACTIONS(2740), + [aux_sym_string_literal_token1] = ACTIONS(2740), + [sym_char_literal] = ACTIONS(2740), + [anon_sym_true] = ACTIONS(2742), + [anon_sym_false] = ACTIONS(2742), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2742), + [sym_super] = ACTIONS(2742), + [sym_crate] = ACTIONS(2742), + [sym_metavariable] = ACTIONS(2740), + [sym__raw_string_literal_start] = ACTIONS(2740), + [sym_float_literal] = ACTIONS(2740), }, [STATE(732)] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2744), + [sym_identifier] = ACTIONS(2746), + [anon_sym_SEMI] = ACTIONS(2744), + [anon_sym_macro_rules_BANG] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_STAR] = ACTIONS(2744), + [anon_sym_u8] = ACTIONS(2746), + [anon_sym_i8] = ACTIONS(2746), + [anon_sym_u16] = ACTIONS(2746), + [anon_sym_i16] = ACTIONS(2746), + [anon_sym_u32] = ACTIONS(2746), + [anon_sym_i32] = ACTIONS(2746), + [anon_sym_u64] = ACTIONS(2746), + [anon_sym_i64] = ACTIONS(2746), + [anon_sym_u128] = ACTIONS(2746), + [anon_sym_i128] = ACTIONS(2746), + [anon_sym_isize] = ACTIONS(2746), + [anon_sym_usize] = ACTIONS(2746), + [anon_sym_f32] = ACTIONS(2746), + [anon_sym_f64] = ACTIONS(2746), + [anon_sym_bool] = ACTIONS(2746), + [anon_sym_str] = ACTIONS(2746), + [anon_sym_char] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2744), + [anon_sym_BANG] = ACTIONS(2744), + [anon_sym_AMP] = ACTIONS(2744), + [anon_sym_PIPE] = ACTIONS(2744), + [anon_sym_LT] = ACTIONS(2744), + [anon_sym_DOT_DOT] = ACTIONS(2744), + [anon_sym_COLON_COLON] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(2744), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_async] = ACTIONS(2746), + [anon_sym_become] = ACTIONS(2746), + [anon_sym_break] = ACTIONS(2746), + [anon_sym_const] = ACTIONS(2746), + [anon_sym_continue] = ACTIONS(2746), + [anon_sym_default] = ACTIONS(2746), + [anon_sym_enum] = ACTIONS(2746), + [anon_sym_fn] = ACTIONS(2746), + [anon_sym_for] = ACTIONS(2746), + [anon_sym_gen] = ACTIONS(2746), + [anon_sym_if] = ACTIONS(2746), + [anon_sym_impl] = ACTIONS(2746), + [anon_sym_let] = ACTIONS(2746), + [anon_sym_loop] = ACTIONS(2746), + [anon_sym_match] = ACTIONS(2746), + [anon_sym_mod] = ACTIONS(2746), + [anon_sym_pub] = ACTIONS(2746), + [anon_sym_return] = ACTIONS(2746), + [anon_sym_static] = ACTIONS(2746), + [anon_sym_struct] = ACTIONS(2746), + [anon_sym_trait] = ACTIONS(2746), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_union] = ACTIONS(2746), + [anon_sym_unsafe] = ACTIONS(2746), + [anon_sym_use] = ACTIONS(2746), + [anon_sym_while] = ACTIONS(2746), + [anon_sym_extern] = ACTIONS(2746), + [anon_sym_raw] = ACTIONS(2746), + [anon_sym_yield] = ACTIONS(2746), + [anon_sym_move] = ACTIONS(2746), + [anon_sym_try] = ACTIONS(2746), + [sym_integer_literal] = ACTIONS(2744), + [aux_sym_string_literal_token1] = ACTIONS(2744), + [sym_char_literal] = ACTIONS(2744), + [anon_sym_true] = ACTIONS(2746), + [anon_sym_false] = ACTIONS(2746), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2746), + [sym_super] = ACTIONS(2746), + [sym_crate] = ACTIONS(2746), + [sym_metavariable] = ACTIONS(2744), + [sym__raw_string_literal_start] = ACTIONS(2744), + [sym_float_literal] = ACTIONS(2744), }, [STATE(733)] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2748), + [sym_identifier] = ACTIONS(2750), + [anon_sym_SEMI] = ACTIONS(2748), + [anon_sym_macro_rules_BANG] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2748), + [anon_sym_LBRACK] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(2748), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_STAR] = 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_DASH] = ACTIONS(2748), + [anon_sym_BANG] = ACTIONS(2748), + [anon_sym_AMP] = ACTIONS(2748), + [anon_sym_PIPE] = ACTIONS(2748), + [anon_sym_LT] = ACTIONS(2748), + [anon_sym_DOT_DOT] = ACTIONS(2748), + [anon_sym_COLON_COLON] = ACTIONS(2748), + [anon_sym_POUND] = ACTIONS(2748), + [anon_sym_SQUOTE] = ACTIONS(2750), + [anon_sym_async] = ACTIONS(2750), + [anon_sym_become] = ACTIONS(2750), + [anon_sym_break] = ACTIONS(2750), + [anon_sym_const] = ACTIONS(2750), + [anon_sym_continue] = ACTIONS(2750), + [anon_sym_default] = ACTIONS(2750), + [anon_sym_enum] = ACTIONS(2750), + [anon_sym_fn] = ACTIONS(2750), + [anon_sym_for] = ACTIONS(2750), + [anon_sym_gen] = ACTIONS(2750), + [anon_sym_if] = ACTIONS(2750), + [anon_sym_impl] = ACTIONS(2750), + [anon_sym_let] = ACTIONS(2750), + [anon_sym_loop] = ACTIONS(2750), + [anon_sym_match] = ACTIONS(2750), + [anon_sym_mod] = ACTIONS(2750), + [anon_sym_pub] = ACTIONS(2750), + [anon_sym_return] = ACTIONS(2750), + [anon_sym_static] = ACTIONS(2750), + [anon_sym_struct] = ACTIONS(2750), + [anon_sym_trait] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2750), + [anon_sym_union] = ACTIONS(2750), + [anon_sym_unsafe] = ACTIONS(2750), + [anon_sym_use] = ACTIONS(2750), + [anon_sym_while] = ACTIONS(2750), + [anon_sym_extern] = ACTIONS(2750), + [anon_sym_raw] = ACTIONS(2750), + [anon_sym_yield] = ACTIONS(2750), + [anon_sym_move] = ACTIONS(2750), + [anon_sym_try] = ACTIONS(2750), + [sym_integer_literal] = ACTIONS(2748), + [aux_sym_string_literal_token1] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), + [anon_sym_true] = ACTIONS(2750), + [anon_sym_false] = ACTIONS(2750), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2750), + [sym_super] = ACTIONS(2750), + [sym_crate] = ACTIONS(2750), + [sym_metavariable] = ACTIONS(2748), + [sym__raw_string_literal_start] = ACTIONS(2748), + [sym_float_literal] = ACTIONS(2748), }, [STATE(734)] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2752), + [sym_identifier] = ACTIONS(2754), + [anon_sym_SEMI] = ACTIONS(2752), + [anon_sym_macro_rules_BANG] = ACTIONS(2752), + [anon_sym_LPAREN] = ACTIONS(2752), + [anon_sym_LBRACK] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_STAR] = ACTIONS(2752), + [anon_sym_u8] = ACTIONS(2754), + [anon_sym_i8] = ACTIONS(2754), + [anon_sym_u16] = ACTIONS(2754), + [anon_sym_i16] = ACTIONS(2754), + [anon_sym_u32] = ACTIONS(2754), + [anon_sym_i32] = ACTIONS(2754), + [anon_sym_u64] = ACTIONS(2754), + [anon_sym_i64] = ACTIONS(2754), + [anon_sym_u128] = ACTIONS(2754), + [anon_sym_i128] = ACTIONS(2754), + [anon_sym_isize] = ACTIONS(2754), + [anon_sym_usize] = ACTIONS(2754), + [anon_sym_f32] = ACTIONS(2754), + [anon_sym_f64] = ACTIONS(2754), + [anon_sym_bool] = ACTIONS(2754), + [anon_sym_str] = ACTIONS(2754), + [anon_sym_char] = ACTIONS(2754), + [anon_sym_DASH] = ACTIONS(2752), + [anon_sym_BANG] = ACTIONS(2752), + [anon_sym_AMP] = ACTIONS(2752), + [anon_sym_PIPE] = ACTIONS(2752), + [anon_sym_LT] = ACTIONS(2752), + [anon_sym_DOT_DOT] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2752), + [anon_sym_POUND] = ACTIONS(2752), + [anon_sym_SQUOTE] = ACTIONS(2754), + [anon_sym_async] = ACTIONS(2754), + [anon_sym_become] = ACTIONS(2754), + [anon_sym_break] = ACTIONS(2754), + [anon_sym_const] = ACTIONS(2754), + [anon_sym_continue] = ACTIONS(2754), + [anon_sym_default] = ACTIONS(2754), + [anon_sym_enum] = ACTIONS(2754), + [anon_sym_fn] = ACTIONS(2754), + [anon_sym_for] = ACTIONS(2754), + [anon_sym_gen] = ACTIONS(2754), + [anon_sym_if] = ACTIONS(2754), + [anon_sym_impl] = ACTIONS(2754), + [anon_sym_let] = ACTIONS(2754), + [anon_sym_loop] = ACTIONS(2754), + [anon_sym_match] = ACTIONS(2754), + [anon_sym_mod] = ACTIONS(2754), + [anon_sym_pub] = ACTIONS(2754), + [anon_sym_return] = ACTIONS(2754), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_struct] = ACTIONS(2754), + [anon_sym_trait] = ACTIONS(2754), + [anon_sym_type] = ACTIONS(2754), + [anon_sym_union] = ACTIONS(2754), + [anon_sym_unsafe] = ACTIONS(2754), + [anon_sym_use] = ACTIONS(2754), + [anon_sym_while] = ACTIONS(2754), + [anon_sym_extern] = ACTIONS(2754), + [anon_sym_raw] = ACTIONS(2754), + [anon_sym_yield] = ACTIONS(2754), + [anon_sym_move] = ACTIONS(2754), + [anon_sym_try] = ACTIONS(2754), + [sym_integer_literal] = ACTIONS(2752), + [aux_sym_string_literal_token1] = ACTIONS(2752), + [sym_char_literal] = ACTIONS(2752), + [anon_sym_true] = ACTIONS(2754), + [anon_sym_false] = ACTIONS(2754), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2754), + [sym_super] = ACTIONS(2754), + [sym_crate] = ACTIONS(2754), + [sym_metavariable] = ACTIONS(2752), + [sym__raw_string_literal_start] = ACTIONS(2752), + [sym_float_literal] = ACTIONS(2752), }, [STATE(735)] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2756), + [sym_identifier] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2756), + [anon_sym_macro_rules_BANG] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_LBRACK] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_RBRACE] = ACTIONS(2756), + [anon_sym_STAR] = ACTIONS(2756), + [anon_sym_u8] = ACTIONS(2758), + [anon_sym_i8] = ACTIONS(2758), + [anon_sym_u16] = ACTIONS(2758), + [anon_sym_i16] = ACTIONS(2758), + [anon_sym_u32] = ACTIONS(2758), + [anon_sym_i32] = ACTIONS(2758), + [anon_sym_u64] = ACTIONS(2758), + [anon_sym_i64] = ACTIONS(2758), + [anon_sym_u128] = ACTIONS(2758), + [anon_sym_i128] = ACTIONS(2758), + [anon_sym_isize] = ACTIONS(2758), + [anon_sym_usize] = ACTIONS(2758), + [anon_sym_f32] = ACTIONS(2758), + [anon_sym_f64] = ACTIONS(2758), + [anon_sym_bool] = ACTIONS(2758), + [anon_sym_str] = ACTIONS(2758), + [anon_sym_char] = ACTIONS(2758), + [anon_sym_DASH] = ACTIONS(2756), + [anon_sym_BANG] = ACTIONS(2756), + [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_PIPE] = ACTIONS(2756), + [anon_sym_LT] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(2756), + [anon_sym_COLON_COLON] = ACTIONS(2756), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_SQUOTE] = ACTIONS(2758), + [anon_sym_async] = ACTIONS(2758), + [anon_sym_become] = ACTIONS(2758), + [anon_sym_break] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2758), + [anon_sym_continue] = ACTIONS(2758), + [anon_sym_default] = ACTIONS(2758), + [anon_sym_enum] = ACTIONS(2758), + [anon_sym_fn] = ACTIONS(2758), + [anon_sym_for] = ACTIONS(2758), + [anon_sym_gen] = ACTIONS(2758), + [anon_sym_if] = ACTIONS(2758), + [anon_sym_impl] = ACTIONS(2758), + [anon_sym_let] = ACTIONS(2758), + [anon_sym_loop] = ACTIONS(2758), + [anon_sym_match] = ACTIONS(2758), + [anon_sym_mod] = ACTIONS(2758), + [anon_sym_pub] = ACTIONS(2758), + [anon_sym_return] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2758), + [anon_sym_struct] = ACTIONS(2758), + [anon_sym_trait] = ACTIONS(2758), + [anon_sym_type] = ACTIONS(2758), + [anon_sym_union] = ACTIONS(2758), + [anon_sym_unsafe] = ACTIONS(2758), + [anon_sym_use] = ACTIONS(2758), + [anon_sym_while] = ACTIONS(2758), + [anon_sym_extern] = ACTIONS(2758), + [anon_sym_raw] = ACTIONS(2758), + [anon_sym_yield] = ACTIONS(2758), + [anon_sym_move] = ACTIONS(2758), + [anon_sym_try] = ACTIONS(2758), + [sym_integer_literal] = ACTIONS(2756), + [aux_sym_string_literal_token1] = ACTIONS(2756), + [sym_char_literal] = ACTIONS(2756), + [anon_sym_true] = ACTIONS(2758), + [anon_sym_false] = ACTIONS(2758), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2758), + [sym_super] = ACTIONS(2758), + [sym_crate] = ACTIONS(2758), + [sym_metavariable] = ACTIONS(2756), + [sym__raw_string_literal_start] = ACTIONS(2756), + [sym_float_literal] = ACTIONS(2756), }, [STATE(736)] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2760), + [sym_identifier] = ACTIONS(2762), + [anon_sym_SEMI] = ACTIONS(2760), + [anon_sym_macro_rules_BANG] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(2760), + [anon_sym_LBRACK] = ACTIONS(2760), + [anon_sym_LBRACE] = ACTIONS(2760), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_STAR] = ACTIONS(2760), + [anon_sym_u8] = ACTIONS(2762), + [anon_sym_i8] = ACTIONS(2762), + [anon_sym_u16] = ACTIONS(2762), + [anon_sym_i16] = ACTIONS(2762), + [anon_sym_u32] = ACTIONS(2762), + [anon_sym_i32] = ACTIONS(2762), + [anon_sym_u64] = ACTIONS(2762), + [anon_sym_i64] = ACTIONS(2762), + [anon_sym_u128] = ACTIONS(2762), + [anon_sym_i128] = ACTIONS(2762), + [anon_sym_isize] = ACTIONS(2762), + [anon_sym_usize] = ACTIONS(2762), + [anon_sym_f32] = ACTIONS(2762), + [anon_sym_f64] = ACTIONS(2762), + [anon_sym_bool] = ACTIONS(2762), + [anon_sym_str] = ACTIONS(2762), + [anon_sym_char] = ACTIONS(2762), + [anon_sym_DASH] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(2760), + [anon_sym_AMP] = ACTIONS(2760), + [anon_sym_PIPE] = ACTIONS(2760), + [anon_sym_LT] = ACTIONS(2760), + [anon_sym_DOT_DOT] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(2760), + [anon_sym_POUND] = ACTIONS(2760), + [anon_sym_SQUOTE] = ACTIONS(2762), + [anon_sym_async] = ACTIONS(2762), + [anon_sym_become] = ACTIONS(2762), + [anon_sym_break] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2762), + [anon_sym_continue] = ACTIONS(2762), + [anon_sym_default] = ACTIONS(2762), + [anon_sym_enum] = ACTIONS(2762), + [anon_sym_fn] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2762), + [anon_sym_gen] = ACTIONS(2762), + [anon_sym_if] = ACTIONS(2762), + [anon_sym_impl] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_loop] = ACTIONS(2762), + [anon_sym_match] = ACTIONS(2762), + [anon_sym_mod] = ACTIONS(2762), + [anon_sym_pub] = ACTIONS(2762), + [anon_sym_return] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(2762), + [anon_sym_struct] = ACTIONS(2762), + [anon_sym_trait] = ACTIONS(2762), + [anon_sym_type] = ACTIONS(2762), + [anon_sym_union] = ACTIONS(2762), + [anon_sym_unsafe] = ACTIONS(2762), + [anon_sym_use] = ACTIONS(2762), + [anon_sym_while] = ACTIONS(2762), + [anon_sym_extern] = ACTIONS(2762), + [anon_sym_raw] = ACTIONS(2762), + [anon_sym_yield] = ACTIONS(2762), + [anon_sym_move] = ACTIONS(2762), + [anon_sym_try] = ACTIONS(2762), + [sym_integer_literal] = ACTIONS(2760), + [aux_sym_string_literal_token1] = ACTIONS(2760), + [sym_char_literal] = ACTIONS(2760), + [anon_sym_true] = ACTIONS(2762), + [anon_sym_false] = ACTIONS(2762), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2762), + [sym_super] = ACTIONS(2762), + [sym_crate] = ACTIONS(2762), + [sym_metavariable] = ACTIONS(2760), + [sym__raw_string_literal_start] = ACTIONS(2760), + [sym_float_literal] = ACTIONS(2760), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2764), + [sym_identifier] = ACTIONS(2766), + [anon_sym_SEMI] = ACTIONS(2764), + [anon_sym_macro_rules_BANG] = ACTIONS(2764), + [anon_sym_LPAREN] = ACTIONS(2764), + [anon_sym_LBRACK] = ACTIONS(2764), + [anon_sym_LBRACE] = ACTIONS(2764), + [anon_sym_RBRACE] = ACTIONS(2764), + [anon_sym_STAR] = ACTIONS(2764), + [anon_sym_u8] = ACTIONS(2766), + [anon_sym_i8] = ACTIONS(2766), + [anon_sym_u16] = ACTIONS(2766), + [anon_sym_i16] = ACTIONS(2766), + [anon_sym_u32] = ACTIONS(2766), + [anon_sym_i32] = ACTIONS(2766), + [anon_sym_u64] = ACTIONS(2766), + [anon_sym_i64] = ACTIONS(2766), + [anon_sym_u128] = ACTIONS(2766), + [anon_sym_i128] = ACTIONS(2766), + [anon_sym_isize] = ACTIONS(2766), + [anon_sym_usize] = ACTIONS(2766), + [anon_sym_f32] = ACTIONS(2766), + [anon_sym_f64] = ACTIONS(2766), + [anon_sym_bool] = ACTIONS(2766), + [anon_sym_str] = ACTIONS(2766), + [anon_sym_char] = ACTIONS(2766), + [anon_sym_DASH] = ACTIONS(2764), + [anon_sym_BANG] = ACTIONS(2764), + [anon_sym_AMP] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(2764), + [anon_sym_DOT_DOT] = ACTIONS(2764), + [anon_sym_COLON_COLON] = ACTIONS(2764), + [anon_sym_POUND] = ACTIONS(2764), + [anon_sym_SQUOTE] = ACTIONS(2766), + [anon_sym_async] = ACTIONS(2766), + [anon_sym_become] = ACTIONS(2766), + [anon_sym_break] = ACTIONS(2766), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_continue] = ACTIONS(2766), + [anon_sym_default] = ACTIONS(2766), + [anon_sym_enum] = ACTIONS(2766), + [anon_sym_fn] = ACTIONS(2766), + [anon_sym_for] = ACTIONS(2766), + [anon_sym_gen] = ACTIONS(2766), + [anon_sym_if] = ACTIONS(2766), + [anon_sym_impl] = ACTIONS(2766), + [anon_sym_let] = ACTIONS(2766), + [anon_sym_loop] = ACTIONS(2766), + [anon_sym_match] = ACTIONS(2766), + [anon_sym_mod] = ACTIONS(2766), + [anon_sym_pub] = ACTIONS(2766), + [anon_sym_return] = ACTIONS(2766), + [anon_sym_static] = ACTIONS(2766), + [anon_sym_struct] = ACTIONS(2766), + [anon_sym_trait] = ACTIONS(2766), + [anon_sym_type] = ACTIONS(2766), + [anon_sym_union] = ACTIONS(2766), + [anon_sym_unsafe] = ACTIONS(2766), + [anon_sym_use] = ACTIONS(2766), + [anon_sym_while] = ACTIONS(2766), + [anon_sym_extern] = ACTIONS(2766), + [anon_sym_raw] = ACTIONS(2766), + [anon_sym_yield] = ACTIONS(2766), + [anon_sym_move] = ACTIONS(2766), + [anon_sym_try] = ACTIONS(2766), + [sym_integer_literal] = ACTIONS(2764), + [aux_sym_string_literal_token1] = ACTIONS(2764), + [sym_char_literal] = ACTIONS(2764), + [anon_sym_true] = ACTIONS(2766), + [anon_sym_false] = ACTIONS(2766), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2766), + [sym_super] = ACTIONS(2766), + [sym_crate] = ACTIONS(2766), + [sym_metavariable] = ACTIONS(2764), + [sym__raw_string_literal_start] = ACTIONS(2764), + [sym_float_literal] = ACTIONS(2764), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2768), + [sym_identifier] = ACTIONS(2770), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_macro_rules_BANG] = ACTIONS(2768), + [anon_sym_LPAREN] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(2768), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_RBRACE] = ACTIONS(2768), + [anon_sym_STAR] = ACTIONS(2768), + [anon_sym_u8] = ACTIONS(2770), + [anon_sym_i8] = ACTIONS(2770), + [anon_sym_u16] = ACTIONS(2770), + [anon_sym_i16] = ACTIONS(2770), + [anon_sym_u32] = ACTIONS(2770), + [anon_sym_i32] = ACTIONS(2770), + [anon_sym_u64] = ACTIONS(2770), + [anon_sym_i64] = ACTIONS(2770), + [anon_sym_u128] = ACTIONS(2770), + [anon_sym_i128] = ACTIONS(2770), + [anon_sym_isize] = ACTIONS(2770), + [anon_sym_usize] = ACTIONS(2770), + [anon_sym_f32] = ACTIONS(2770), + [anon_sym_f64] = ACTIONS(2770), + [anon_sym_bool] = ACTIONS(2770), + [anon_sym_str] = ACTIONS(2770), + [anon_sym_char] = ACTIONS(2770), + [anon_sym_DASH] = ACTIONS(2768), + [anon_sym_BANG] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), + [anon_sym_PIPE] = ACTIONS(2768), + [anon_sym_LT] = ACTIONS(2768), + [anon_sym_DOT_DOT] = ACTIONS(2768), + [anon_sym_COLON_COLON] = ACTIONS(2768), + [anon_sym_POUND] = ACTIONS(2768), + [anon_sym_SQUOTE] = ACTIONS(2770), + [anon_sym_async] = ACTIONS(2770), + [anon_sym_become] = ACTIONS(2770), + [anon_sym_break] = ACTIONS(2770), + [anon_sym_const] = ACTIONS(2770), + [anon_sym_continue] = ACTIONS(2770), + [anon_sym_default] = ACTIONS(2770), + [anon_sym_enum] = ACTIONS(2770), + [anon_sym_fn] = ACTIONS(2770), + [anon_sym_for] = ACTIONS(2770), + [anon_sym_gen] = ACTIONS(2770), + [anon_sym_if] = ACTIONS(2770), + [anon_sym_impl] = ACTIONS(2770), + [anon_sym_let] = ACTIONS(2770), + [anon_sym_loop] = ACTIONS(2770), + [anon_sym_match] = ACTIONS(2770), + [anon_sym_mod] = ACTIONS(2770), + [anon_sym_pub] = ACTIONS(2770), + [anon_sym_return] = ACTIONS(2770), + [anon_sym_static] = ACTIONS(2770), + [anon_sym_struct] = ACTIONS(2770), + [anon_sym_trait] = ACTIONS(2770), + [anon_sym_type] = ACTIONS(2770), + [anon_sym_union] = ACTIONS(2770), + [anon_sym_unsafe] = ACTIONS(2770), + [anon_sym_use] = ACTIONS(2770), + [anon_sym_while] = ACTIONS(2770), + [anon_sym_extern] = ACTIONS(2770), + [anon_sym_raw] = ACTIONS(2770), + [anon_sym_yield] = ACTIONS(2770), + [anon_sym_move] = ACTIONS(2770), + [anon_sym_try] = ACTIONS(2770), + [sym_integer_literal] = ACTIONS(2768), + [aux_sym_string_literal_token1] = ACTIONS(2768), + [sym_char_literal] = ACTIONS(2768), + [anon_sym_true] = ACTIONS(2770), + [anon_sym_false] = ACTIONS(2770), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2770), + [sym_super] = ACTIONS(2770), + [sym_crate] = ACTIONS(2770), + [sym_metavariable] = ACTIONS(2768), + [sym__raw_string_literal_start] = ACTIONS(2768), + [sym_float_literal] = ACTIONS(2768), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2772), + [sym_identifier] = ACTIONS(2774), + [anon_sym_SEMI] = ACTIONS(2772), + [anon_sym_macro_rules_BANG] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2772), + [anon_sym_LBRACK] = ACTIONS(2772), + [anon_sym_LBRACE] = ACTIONS(2772), + [anon_sym_RBRACE] = ACTIONS(2772), + [anon_sym_STAR] = ACTIONS(2772), + [anon_sym_u8] = ACTIONS(2774), + [anon_sym_i8] = ACTIONS(2774), + [anon_sym_u16] = ACTIONS(2774), + [anon_sym_i16] = ACTIONS(2774), + [anon_sym_u32] = ACTIONS(2774), + [anon_sym_i32] = ACTIONS(2774), + [anon_sym_u64] = ACTIONS(2774), + [anon_sym_i64] = ACTIONS(2774), + [anon_sym_u128] = ACTIONS(2774), + [anon_sym_i128] = ACTIONS(2774), + [anon_sym_isize] = ACTIONS(2774), + [anon_sym_usize] = ACTIONS(2774), + [anon_sym_f32] = ACTIONS(2774), + [anon_sym_f64] = ACTIONS(2774), + [anon_sym_bool] = ACTIONS(2774), + [anon_sym_str] = ACTIONS(2774), + [anon_sym_char] = ACTIONS(2774), + [anon_sym_DASH] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(2772), + [anon_sym_AMP] = ACTIONS(2772), + [anon_sym_PIPE] = ACTIONS(2772), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_DOT_DOT] = ACTIONS(2772), + [anon_sym_COLON_COLON] = ACTIONS(2772), + [anon_sym_POUND] = ACTIONS(2772), + [anon_sym_SQUOTE] = ACTIONS(2774), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_become] = ACTIONS(2774), + [anon_sym_break] = ACTIONS(2774), + [anon_sym_const] = ACTIONS(2774), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_default] = ACTIONS(2774), + [anon_sym_enum] = ACTIONS(2774), + [anon_sym_fn] = ACTIONS(2774), + [anon_sym_for] = ACTIONS(2774), + [anon_sym_gen] = ACTIONS(2774), + [anon_sym_if] = ACTIONS(2774), + [anon_sym_impl] = ACTIONS(2774), + [anon_sym_let] = ACTIONS(2774), + [anon_sym_loop] = ACTIONS(2774), + [anon_sym_match] = ACTIONS(2774), + [anon_sym_mod] = ACTIONS(2774), + [anon_sym_pub] = ACTIONS(2774), + [anon_sym_return] = ACTIONS(2774), + [anon_sym_static] = ACTIONS(2774), + [anon_sym_struct] = ACTIONS(2774), + [anon_sym_trait] = ACTIONS(2774), + [anon_sym_type] = ACTIONS(2774), + [anon_sym_union] = ACTIONS(2774), + [anon_sym_unsafe] = ACTIONS(2774), + [anon_sym_use] = ACTIONS(2774), + [anon_sym_while] = ACTIONS(2774), + [anon_sym_extern] = ACTIONS(2774), + [anon_sym_raw] = ACTIONS(2774), + [anon_sym_yield] = ACTIONS(2774), + [anon_sym_move] = ACTIONS(2774), + [anon_sym_try] = ACTIONS(2774), + [sym_integer_literal] = ACTIONS(2772), + [aux_sym_string_literal_token1] = ACTIONS(2772), + [sym_char_literal] = ACTIONS(2772), + [anon_sym_true] = ACTIONS(2774), + [anon_sym_false] = ACTIONS(2774), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2774), + [sym_super] = ACTIONS(2774), + [sym_crate] = ACTIONS(2774), + [sym_metavariable] = ACTIONS(2772), + [sym__raw_string_literal_start] = ACTIONS(2772), + [sym_float_literal] = ACTIONS(2772), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2776), + [sym_identifier] = ACTIONS(2778), + [anon_sym_SEMI] = ACTIONS(2776), + [anon_sym_macro_rules_BANG] = ACTIONS(2776), + [anon_sym_LPAREN] = ACTIONS(2776), + [anon_sym_LBRACK] = ACTIONS(2776), + [anon_sym_LBRACE] = ACTIONS(2776), + [anon_sym_RBRACE] = ACTIONS(2776), + [anon_sym_STAR] = ACTIONS(2776), + [anon_sym_u8] = ACTIONS(2778), + [anon_sym_i8] = ACTIONS(2778), + [anon_sym_u16] = ACTIONS(2778), + [anon_sym_i16] = ACTIONS(2778), + [anon_sym_u32] = ACTIONS(2778), + [anon_sym_i32] = ACTIONS(2778), + [anon_sym_u64] = ACTIONS(2778), + [anon_sym_i64] = ACTIONS(2778), + [anon_sym_u128] = ACTIONS(2778), + [anon_sym_i128] = ACTIONS(2778), + [anon_sym_isize] = ACTIONS(2778), + [anon_sym_usize] = ACTIONS(2778), + [anon_sym_f32] = ACTIONS(2778), + [anon_sym_f64] = ACTIONS(2778), + [anon_sym_bool] = ACTIONS(2778), + [anon_sym_str] = ACTIONS(2778), + [anon_sym_char] = ACTIONS(2778), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_BANG] = ACTIONS(2776), + [anon_sym_AMP] = ACTIONS(2776), + [anon_sym_PIPE] = ACTIONS(2776), + [anon_sym_LT] = ACTIONS(2776), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(2776), + [anon_sym_POUND] = ACTIONS(2776), + [anon_sym_SQUOTE] = ACTIONS(2778), + [anon_sym_async] = ACTIONS(2778), + [anon_sym_become] = ACTIONS(2778), + [anon_sym_break] = ACTIONS(2778), + [anon_sym_const] = ACTIONS(2778), + [anon_sym_continue] = ACTIONS(2778), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_enum] = ACTIONS(2778), + [anon_sym_fn] = ACTIONS(2778), + [anon_sym_for] = ACTIONS(2778), + [anon_sym_gen] = ACTIONS(2778), + [anon_sym_if] = ACTIONS(2778), + [anon_sym_impl] = ACTIONS(2778), + [anon_sym_let] = ACTIONS(2778), + [anon_sym_loop] = ACTIONS(2778), + [anon_sym_match] = ACTIONS(2778), + [anon_sym_mod] = ACTIONS(2778), + [anon_sym_pub] = ACTIONS(2778), + [anon_sym_return] = ACTIONS(2778), + [anon_sym_static] = ACTIONS(2778), + [anon_sym_struct] = ACTIONS(2778), + [anon_sym_trait] = ACTIONS(2778), + [anon_sym_type] = ACTIONS(2778), + [anon_sym_union] = ACTIONS(2778), + [anon_sym_unsafe] = ACTIONS(2778), + [anon_sym_use] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2778), + [anon_sym_extern] = ACTIONS(2778), + [anon_sym_raw] = ACTIONS(2778), + [anon_sym_yield] = ACTIONS(2778), + [anon_sym_move] = ACTIONS(2778), + [anon_sym_try] = ACTIONS(2778), + [sym_integer_literal] = ACTIONS(2776), + [aux_sym_string_literal_token1] = ACTIONS(2776), + [sym_char_literal] = ACTIONS(2776), + [anon_sym_true] = ACTIONS(2778), + [anon_sym_false] = ACTIONS(2778), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2778), + [sym_super] = ACTIONS(2778), + [sym_crate] = ACTIONS(2778), + [sym_metavariable] = ACTIONS(2776), + [sym__raw_string_literal_start] = ACTIONS(2776), + [sym_float_literal] = ACTIONS(2776), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2780), + [sym_identifier] = ACTIONS(2782), + [anon_sym_SEMI] = ACTIONS(2780), + [anon_sym_macro_rules_BANG] = ACTIONS(2780), + [anon_sym_LPAREN] = ACTIONS(2780), + [anon_sym_LBRACK] = ACTIONS(2780), + [anon_sym_LBRACE] = ACTIONS(2780), + [anon_sym_RBRACE] = ACTIONS(2780), + [anon_sym_STAR] = ACTIONS(2780), + [anon_sym_u8] = ACTIONS(2782), + [anon_sym_i8] = ACTIONS(2782), + [anon_sym_u16] = ACTIONS(2782), + [anon_sym_i16] = ACTIONS(2782), + [anon_sym_u32] = ACTIONS(2782), + [anon_sym_i32] = ACTIONS(2782), + [anon_sym_u64] = ACTIONS(2782), + [anon_sym_i64] = ACTIONS(2782), + [anon_sym_u128] = ACTIONS(2782), + [anon_sym_i128] = ACTIONS(2782), + [anon_sym_isize] = ACTIONS(2782), + [anon_sym_usize] = ACTIONS(2782), + [anon_sym_f32] = ACTIONS(2782), + [anon_sym_f64] = ACTIONS(2782), + [anon_sym_bool] = ACTIONS(2782), + [anon_sym_str] = ACTIONS(2782), + [anon_sym_char] = ACTIONS(2782), + [anon_sym_DASH] = ACTIONS(2780), + [anon_sym_BANG] = ACTIONS(2780), + [anon_sym_AMP] = ACTIONS(2780), + [anon_sym_PIPE] = ACTIONS(2780), + [anon_sym_LT] = ACTIONS(2780), + [anon_sym_DOT_DOT] = ACTIONS(2780), + [anon_sym_COLON_COLON] = ACTIONS(2780), + [anon_sym_POUND] = ACTIONS(2780), + [anon_sym_SQUOTE] = ACTIONS(2782), + [anon_sym_async] = ACTIONS(2782), + [anon_sym_become] = ACTIONS(2782), + [anon_sym_break] = ACTIONS(2782), + [anon_sym_const] = ACTIONS(2782), + [anon_sym_continue] = ACTIONS(2782), + [anon_sym_default] = ACTIONS(2782), + [anon_sym_enum] = ACTIONS(2782), + [anon_sym_fn] = ACTIONS(2782), + [anon_sym_for] = ACTIONS(2782), + [anon_sym_gen] = ACTIONS(2782), + [anon_sym_if] = ACTIONS(2782), + [anon_sym_impl] = ACTIONS(2782), + [anon_sym_let] = ACTIONS(2782), + [anon_sym_loop] = ACTIONS(2782), + [anon_sym_match] = ACTIONS(2782), + [anon_sym_mod] = ACTIONS(2782), + [anon_sym_pub] = ACTIONS(2782), + [anon_sym_return] = ACTIONS(2782), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_struct] = ACTIONS(2782), + [anon_sym_trait] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_union] = ACTIONS(2782), + [anon_sym_unsafe] = ACTIONS(2782), + [anon_sym_use] = ACTIONS(2782), + [anon_sym_while] = ACTIONS(2782), + [anon_sym_extern] = ACTIONS(2782), + [anon_sym_raw] = ACTIONS(2782), + [anon_sym_yield] = ACTIONS(2782), + [anon_sym_move] = ACTIONS(2782), + [anon_sym_try] = ACTIONS(2782), + [sym_integer_literal] = ACTIONS(2780), + [aux_sym_string_literal_token1] = ACTIONS(2780), + [sym_char_literal] = ACTIONS(2780), + [anon_sym_true] = ACTIONS(2782), + [anon_sym_false] = ACTIONS(2782), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2782), + [sym_super] = ACTIONS(2782), + [sym_crate] = ACTIONS(2782), + [sym_metavariable] = ACTIONS(2780), + [sym__raw_string_literal_start] = ACTIONS(2780), + [sym_float_literal] = ACTIONS(2780), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2784), + [sym_identifier] = ACTIONS(2786), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_macro_rules_BANG] = ACTIONS(2784), + [anon_sym_LPAREN] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(2784), + [anon_sym_RBRACE] = ACTIONS(2784), + [anon_sym_STAR] = ACTIONS(2784), + [anon_sym_u8] = ACTIONS(2786), + [anon_sym_i8] = ACTIONS(2786), + [anon_sym_u16] = ACTIONS(2786), + [anon_sym_i16] = ACTIONS(2786), + [anon_sym_u32] = ACTIONS(2786), + [anon_sym_i32] = ACTIONS(2786), + [anon_sym_u64] = ACTIONS(2786), + [anon_sym_i64] = ACTIONS(2786), + [anon_sym_u128] = ACTIONS(2786), + [anon_sym_i128] = ACTIONS(2786), + [anon_sym_isize] = ACTIONS(2786), + [anon_sym_usize] = ACTIONS(2786), + [anon_sym_f32] = ACTIONS(2786), + [anon_sym_f64] = ACTIONS(2786), + [anon_sym_bool] = ACTIONS(2786), + [anon_sym_str] = ACTIONS(2786), + [anon_sym_char] = ACTIONS(2786), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_BANG] = ACTIONS(2784), + [anon_sym_AMP] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_LT] = ACTIONS(2784), + [anon_sym_DOT_DOT] = ACTIONS(2784), + [anon_sym_COLON_COLON] = ACTIONS(2784), + [anon_sym_POUND] = ACTIONS(2784), + [anon_sym_SQUOTE] = ACTIONS(2786), + [anon_sym_async] = ACTIONS(2786), + [anon_sym_become] = ACTIONS(2786), + [anon_sym_break] = ACTIONS(2786), + [anon_sym_const] = ACTIONS(2786), + [anon_sym_continue] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2786), + [anon_sym_enum] = ACTIONS(2786), + [anon_sym_fn] = ACTIONS(2786), + [anon_sym_for] = ACTIONS(2786), + [anon_sym_gen] = ACTIONS(2786), + [anon_sym_if] = ACTIONS(2786), + [anon_sym_impl] = ACTIONS(2786), + [anon_sym_let] = ACTIONS(2786), + [anon_sym_loop] = ACTIONS(2786), + [anon_sym_match] = ACTIONS(2786), + [anon_sym_mod] = ACTIONS(2786), + [anon_sym_pub] = ACTIONS(2786), + [anon_sym_return] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2786), + [anon_sym_struct] = ACTIONS(2786), + [anon_sym_trait] = ACTIONS(2786), + [anon_sym_type] = ACTIONS(2786), + [anon_sym_union] = ACTIONS(2786), + [anon_sym_unsafe] = ACTIONS(2786), + [anon_sym_use] = ACTIONS(2786), + [anon_sym_while] = ACTIONS(2786), + [anon_sym_extern] = ACTIONS(2786), + [anon_sym_raw] = ACTIONS(2786), + [anon_sym_yield] = ACTIONS(2786), + [anon_sym_move] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2786), + [sym_integer_literal] = ACTIONS(2784), + [aux_sym_string_literal_token1] = ACTIONS(2784), + [sym_char_literal] = ACTIONS(2784), + [anon_sym_true] = ACTIONS(2786), + [anon_sym_false] = ACTIONS(2786), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2786), + [sym_super] = ACTIONS(2786), + [sym_crate] = ACTIONS(2786), + [sym_metavariable] = ACTIONS(2784), + [sym__raw_string_literal_start] = ACTIONS(2784), + [sym_float_literal] = ACTIONS(2784), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2788), + [sym_identifier] = ACTIONS(2790), + [anon_sym_SEMI] = ACTIONS(2788), + [anon_sym_macro_rules_BANG] = ACTIONS(2788), + [anon_sym_LPAREN] = ACTIONS(2788), + [anon_sym_LBRACK] = ACTIONS(2788), + [anon_sym_LBRACE] = ACTIONS(2788), + [anon_sym_RBRACE] = ACTIONS(2788), + [anon_sym_STAR] = ACTIONS(2788), + [anon_sym_u8] = ACTIONS(2790), + [anon_sym_i8] = ACTIONS(2790), + [anon_sym_u16] = ACTIONS(2790), + [anon_sym_i16] = ACTIONS(2790), + [anon_sym_u32] = ACTIONS(2790), + [anon_sym_i32] = ACTIONS(2790), + [anon_sym_u64] = ACTIONS(2790), + [anon_sym_i64] = ACTIONS(2790), + [anon_sym_u128] = ACTIONS(2790), + [anon_sym_i128] = ACTIONS(2790), + [anon_sym_isize] = ACTIONS(2790), + [anon_sym_usize] = ACTIONS(2790), + [anon_sym_f32] = ACTIONS(2790), + [anon_sym_f64] = ACTIONS(2790), + [anon_sym_bool] = ACTIONS(2790), + [anon_sym_str] = ACTIONS(2790), + [anon_sym_char] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2788), + [anon_sym_BANG] = ACTIONS(2788), + [anon_sym_AMP] = ACTIONS(2788), + [anon_sym_PIPE] = ACTIONS(2788), + [anon_sym_LT] = ACTIONS(2788), + [anon_sym_DOT_DOT] = ACTIONS(2788), + [anon_sym_COLON_COLON] = ACTIONS(2788), + [anon_sym_POUND] = ACTIONS(2788), + [anon_sym_SQUOTE] = ACTIONS(2790), + [anon_sym_async] = ACTIONS(2790), + [anon_sym_become] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2790), + [anon_sym_const] = ACTIONS(2790), + [anon_sym_continue] = ACTIONS(2790), + [anon_sym_default] = ACTIONS(2790), + [anon_sym_enum] = ACTIONS(2790), + [anon_sym_fn] = ACTIONS(2790), + [anon_sym_for] = ACTIONS(2790), + [anon_sym_gen] = ACTIONS(2790), + [anon_sym_if] = ACTIONS(2790), + [anon_sym_impl] = ACTIONS(2790), + [anon_sym_let] = ACTIONS(2790), + [anon_sym_loop] = ACTIONS(2790), + [anon_sym_match] = ACTIONS(2790), + [anon_sym_mod] = ACTIONS(2790), + [anon_sym_pub] = ACTIONS(2790), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_struct] = ACTIONS(2790), + [anon_sym_trait] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_union] = ACTIONS(2790), + [anon_sym_unsafe] = ACTIONS(2790), + [anon_sym_use] = ACTIONS(2790), + [anon_sym_while] = ACTIONS(2790), + [anon_sym_extern] = ACTIONS(2790), + [anon_sym_raw] = ACTIONS(2790), + [anon_sym_yield] = ACTIONS(2790), + [anon_sym_move] = ACTIONS(2790), + [anon_sym_try] = ACTIONS(2790), + [sym_integer_literal] = ACTIONS(2788), + [aux_sym_string_literal_token1] = ACTIONS(2788), + [sym_char_literal] = ACTIONS(2788), + [anon_sym_true] = ACTIONS(2790), + [anon_sym_false] = ACTIONS(2790), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2790), + [sym_super] = ACTIONS(2790), + [sym_crate] = ACTIONS(2790), + [sym_metavariable] = ACTIONS(2788), + [sym__raw_string_literal_start] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2788), }, [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2792), + [sym_identifier] = ACTIONS(2794), + [anon_sym_SEMI] = ACTIONS(2792), + [anon_sym_macro_rules_BANG] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(2792), + [anon_sym_LBRACK] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(2792), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_STAR] = ACTIONS(2792), + [anon_sym_u8] = ACTIONS(2794), + [anon_sym_i8] = ACTIONS(2794), + [anon_sym_u16] = ACTIONS(2794), + [anon_sym_i16] = ACTIONS(2794), + [anon_sym_u32] = ACTIONS(2794), + [anon_sym_i32] = ACTIONS(2794), + [anon_sym_u64] = ACTIONS(2794), + [anon_sym_i64] = ACTIONS(2794), + [anon_sym_u128] = ACTIONS(2794), + [anon_sym_i128] = ACTIONS(2794), + [anon_sym_isize] = ACTIONS(2794), + [anon_sym_usize] = ACTIONS(2794), + [anon_sym_f32] = ACTIONS(2794), + [anon_sym_f64] = ACTIONS(2794), + [anon_sym_bool] = ACTIONS(2794), + [anon_sym_str] = ACTIONS(2794), + [anon_sym_char] = ACTIONS(2794), + [anon_sym_DASH] = ACTIONS(2792), + [anon_sym_BANG] = ACTIONS(2792), + [anon_sym_AMP] = ACTIONS(2792), + [anon_sym_PIPE] = ACTIONS(2792), + [anon_sym_LT] = ACTIONS(2792), + [anon_sym_DOT_DOT] = ACTIONS(2792), + [anon_sym_COLON_COLON] = ACTIONS(2792), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_SQUOTE] = ACTIONS(2794), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_become] = ACTIONS(2794), + [anon_sym_break] = ACTIONS(2794), + [anon_sym_const] = ACTIONS(2794), + [anon_sym_continue] = ACTIONS(2794), + [anon_sym_default] = ACTIONS(2794), + [anon_sym_enum] = ACTIONS(2794), + [anon_sym_fn] = ACTIONS(2794), + [anon_sym_for] = ACTIONS(2794), + [anon_sym_gen] = ACTIONS(2794), + [anon_sym_if] = ACTIONS(2794), + [anon_sym_impl] = ACTIONS(2794), + [anon_sym_let] = ACTIONS(2794), + [anon_sym_loop] = ACTIONS(2794), + [anon_sym_match] = ACTIONS(2794), + [anon_sym_mod] = ACTIONS(2794), + [anon_sym_pub] = ACTIONS(2794), + [anon_sym_return] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(2794), + [anon_sym_struct] = ACTIONS(2794), + [anon_sym_trait] = ACTIONS(2794), + [anon_sym_type] = ACTIONS(2794), + [anon_sym_union] = ACTIONS(2794), + [anon_sym_unsafe] = ACTIONS(2794), + [anon_sym_use] = ACTIONS(2794), + [anon_sym_while] = ACTIONS(2794), + [anon_sym_extern] = ACTIONS(2794), + [anon_sym_raw] = ACTIONS(2794), + [anon_sym_yield] = ACTIONS(2794), + [anon_sym_move] = ACTIONS(2794), + [anon_sym_try] = ACTIONS(2794), + [sym_integer_literal] = ACTIONS(2792), + [aux_sym_string_literal_token1] = ACTIONS(2792), + [sym_char_literal] = ACTIONS(2792), + [anon_sym_true] = ACTIONS(2794), + [anon_sym_false] = ACTIONS(2794), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2794), + [sym_super] = ACTIONS(2794), + [sym_crate] = ACTIONS(2794), + [sym_metavariable] = ACTIONS(2792), + [sym__raw_string_literal_start] = ACTIONS(2792), + [sym_float_literal] = ACTIONS(2792), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2796), + [sym_identifier] = ACTIONS(2798), + [anon_sym_SEMI] = ACTIONS(2796), + [anon_sym_macro_rules_BANG] = ACTIONS(2796), + [anon_sym_LPAREN] = ACTIONS(2796), + [anon_sym_LBRACK] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2796), + [anon_sym_RBRACE] = ACTIONS(2796), + [anon_sym_STAR] = ACTIONS(2796), + [anon_sym_u8] = ACTIONS(2798), + [anon_sym_i8] = ACTIONS(2798), + [anon_sym_u16] = ACTIONS(2798), + [anon_sym_i16] = ACTIONS(2798), + [anon_sym_u32] = ACTIONS(2798), + [anon_sym_i32] = ACTIONS(2798), + [anon_sym_u64] = ACTIONS(2798), + [anon_sym_i64] = ACTIONS(2798), + [anon_sym_u128] = ACTIONS(2798), + [anon_sym_i128] = ACTIONS(2798), + [anon_sym_isize] = ACTIONS(2798), + [anon_sym_usize] = ACTIONS(2798), + [anon_sym_f32] = ACTIONS(2798), + [anon_sym_f64] = ACTIONS(2798), + [anon_sym_bool] = ACTIONS(2798), + [anon_sym_str] = ACTIONS(2798), + [anon_sym_char] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2796), + [anon_sym_BANG] = ACTIONS(2796), + [anon_sym_AMP] = ACTIONS(2796), + [anon_sym_PIPE] = ACTIONS(2796), + [anon_sym_LT] = ACTIONS(2796), + [anon_sym_DOT_DOT] = ACTIONS(2796), + [anon_sym_COLON_COLON] = ACTIONS(2796), + [anon_sym_POUND] = ACTIONS(2796), + [anon_sym_SQUOTE] = ACTIONS(2798), + [anon_sym_async] = ACTIONS(2798), + [anon_sym_become] = ACTIONS(2798), + [anon_sym_break] = ACTIONS(2798), + [anon_sym_const] = ACTIONS(2798), + [anon_sym_continue] = ACTIONS(2798), + [anon_sym_default] = ACTIONS(2798), + [anon_sym_enum] = ACTIONS(2798), + [anon_sym_fn] = ACTIONS(2798), + [anon_sym_for] = ACTIONS(2798), + [anon_sym_gen] = ACTIONS(2798), + [anon_sym_if] = ACTIONS(2798), + [anon_sym_impl] = ACTIONS(2798), + [anon_sym_let] = ACTIONS(2798), + [anon_sym_loop] = ACTIONS(2798), + [anon_sym_match] = ACTIONS(2798), + [anon_sym_mod] = ACTIONS(2798), + [anon_sym_pub] = ACTIONS(2798), + [anon_sym_return] = ACTIONS(2798), + [anon_sym_static] = ACTIONS(2798), + [anon_sym_struct] = ACTIONS(2798), + [anon_sym_trait] = ACTIONS(2798), + [anon_sym_type] = ACTIONS(2798), + [anon_sym_union] = ACTIONS(2798), + [anon_sym_unsafe] = ACTIONS(2798), + [anon_sym_use] = ACTIONS(2798), + [anon_sym_while] = ACTIONS(2798), + [anon_sym_extern] = ACTIONS(2798), + [anon_sym_raw] = ACTIONS(2798), + [anon_sym_yield] = ACTIONS(2798), + [anon_sym_move] = ACTIONS(2798), + [anon_sym_try] = ACTIONS(2798), + [sym_integer_literal] = ACTIONS(2796), + [aux_sym_string_literal_token1] = ACTIONS(2796), + [sym_char_literal] = ACTIONS(2796), + [anon_sym_true] = ACTIONS(2798), + [anon_sym_false] = ACTIONS(2798), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2798), + [sym_super] = ACTIONS(2798), + [sym_crate] = ACTIONS(2798), + [sym_metavariable] = ACTIONS(2796), + [sym__raw_string_literal_start] = ACTIONS(2796), + [sym_float_literal] = ACTIONS(2796), }, [STATE(746)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_pattern] = STATE(3545), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(2800), + [sym_identifier] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_macro_rules_BANG] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_RBRACE] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2800), + [anon_sym_u8] = ACTIONS(2802), + [anon_sym_i8] = ACTIONS(2802), + [anon_sym_u16] = ACTIONS(2802), + [anon_sym_i16] = ACTIONS(2802), + [anon_sym_u32] = ACTIONS(2802), + [anon_sym_i32] = ACTIONS(2802), + [anon_sym_u64] = ACTIONS(2802), + [anon_sym_i64] = ACTIONS(2802), + [anon_sym_u128] = ACTIONS(2802), + [anon_sym_i128] = ACTIONS(2802), + [anon_sym_isize] = ACTIONS(2802), + [anon_sym_usize] = ACTIONS(2802), + [anon_sym_f32] = ACTIONS(2802), + [anon_sym_f64] = ACTIONS(2802), + [anon_sym_bool] = ACTIONS(2802), + [anon_sym_str] = ACTIONS(2802), + [anon_sym_char] = ACTIONS(2802), + [anon_sym_DASH] = ACTIONS(2800), + [anon_sym_BANG] = ACTIONS(2800), + [anon_sym_AMP] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_LT] = ACTIONS(2800), + [anon_sym_DOT_DOT] = ACTIONS(2800), + [anon_sym_COLON_COLON] = ACTIONS(2800), + [anon_sym_POUND] = ACTIONS(2800), + [anon_sym_SQUOTE] = ACTIONS(2802), + [anon_sym_async] = ACTIONS(2802), + [anon_sym_become] = ACTIONS(2802), + [anon_sym_break] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2802), + [anon_sym_continue] = ACTIONS(2802), + [anon_sym_default] = ACTIONS(2802), + [anon_sym_enum] = ACTIONS(2802), + [anon_sym_fn] = ACTIONS(2802), + [anon_sym_for] = ACTIONS(2802), + [anon_sym_gen] = ACTIONS(2802), + [anon_sym_if] = ACTIONS(2802), + [anon_sym_impl] = ACTIONS(2802), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_loop] = ACTIONS(2802), + [anon_sym_match] = ACTIONS(2802), + [anon_sym_mod] = ACTIONS(2802), + [anon_sym_pub] = ACTIONS(2802), + [anon_sym_return] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(2802), + [anon_sym_struct] = ACTIONS(2802), + [anon_sym_trait] = ACTIONS(2802), + [anon_sym_type] = ACTIONS(2802), + [anon_sym_union] = ACTIONS(2802), + [anon_sym_unsafe] = ACTIONS(2802), + [anon_sym_use] = ACTIONS(2802), + [anon_sym_while] = ACTIONS(2802), + [anon_sym_extern] = ACTIONS(2802), + [anon_sym_raw] = ACTIONS(2802), + [anon_sym_yield] = ACTIONS(2802), + [anon_sym_move] = ACTIONS(2802), + [anon_sym_try] = ACTIONS(2802), + [sym_integer_literal] = ACTIONS(2800), + [aux_sym_string_literal_token1] = ACTIONS(2800), + [sym_char_literal] = ACTIONS(2800), + [anon_sym_true] = ACTIONS(2802), + [anon_sym_false] = ACTIONS(2802), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2802), + [sym_super] = ACTIONS(2802), + [sym_crate] = ACTIONS(2802), + [sym_metavariable] = ACTIONS(2800), + [sym__raw_string_literal_start] = ACTIONS(2800), + [sym_float_literal] = ACTIONS(2800), }, [STATE(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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(2804), + [sym_identifier] = ACTIONS(2806), + [anon_sym_SEMI] = ACTIONS(2804), + [anon_sym_macro_rules_BANG] = ACTIONS(2804), + [anon_sym_LPAREN] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2804), + [anon_sym_LBRACE] = ACTIONS(2804), + [anon_sym_RBRACE] = ACTIONS(2804), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_u8] = ACTIONS(2806), + [anon_sym_i8] = ACTIONS(2806), + [anon_sym_u16] = ACTIONS(2806), + [anon_sym_i16] = ACTIONS(2806), + [anon_sym_u32] = ACTIONS(2806), + [anon_sym_i32] = ACTIONS(2806), + [anon_sym_u64] = ACTIONS(2806), + [anon_sym_i64] = ACTIONS(2806), + [anon_sym_u128] = ACTIONS(2806), + [anon_sym_i128] = ACTIONS(2806), + [anon_sym_isize] = ACTIONS(2806), + [anon_sym_usize] = ACTIONS(2806), + [anon_sym_f32] = ACTIONS(2806), + [anon_sym_f64] = ACTIONS(2806), + [anon_sym_bool] = ACTIONS(2806), + [anon_sym_str] = ACTIONS(2806), + [anon_sym_char] = ACTIONS(2806), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(2804), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_PIPE] = ACTIONS(2804), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_DOT_DOT] = ACTIONS(2804), + [anon_sym_COLON_COLON] = ACTIONS(2804), + [anon_sym_POUND] = ACTIONS(2804), + [anon_sym_SQUOTE] = ACTIONS(2806), + [anon_sym_async] = ACTIONS(2806), + [anon_sym_become] = ACTIONS(2806), + [anon_sym_break] = ACTIONS(2806), + [anon_sym_const] = ACTIONS(2806), + [anon_sym_continue] = ACTIONS(2806), + [anon_sym_default] = ACTIONS(2806), + [anon_sym_enum] = ACTIONS(2806), + [anon_sym_fn] = ACTIONS(2806), + [anon_sym_for] = ACTIONS(2806), + [anon_sym_gen] = ACTIONS(2806), + [anon_sym_if] = ACTIONS(2806), + [anon_sym_impl] = ACTIONS(2806), + [anon_sym_let] = ACTIONS(2806), + [anon_sym_loop] = ACTIONS(2806), + [anon_sym_match] = ACTIONS(2806), + [anon_sym_mod] = ACTIONS(2806), + [anon_sym_pub] = ACTIONS(2806), + [anon_sym_return] = ACTIONS(2806), + [anon_sym_static] = ACTIONS(2806), + [anon_sym_struct] = ACTIONS(2806), + [anon_sym_trait] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_union] = ACTIONS(2806), + [anon_sym_unsafe] = ACTIONS(2806), + [anon_sym_use] = ACTIONS(2806), + [anon_sym_while] = ACTIONS(2806), + [anon_sym_extern] = ACTIONS(2806), + [anon_sym_raw] = ACTIONS(2806), + [anon_sym_yield] = ACTIONS(2806), + [anon_sym_move] = ACTIONS(2806), + [anon_sym_try] = ACTIONS(2806), + [sym_integer_literal] = ACTIONS(2804), + [aux_sym_string_literal_token1] = ACTIONS(2804), + [sym_char_literal] = ACTIONS(2804), + [anon_sym_true] = ACTIONS(2806), + [anon_sym_false] = ACTIONS(2806), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2806), + [sym_super] = ACTIONS(2806), + [sym_crate] = ACTIONS(2806), + [sym_metavariable] = ACTIONS(2804), + [sym__raw_string_literal_start] = ACTIONS(2804), + [sym_float_literal] = ACTIONS(2804), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2808), + [sym_identifier] = ACTIONS(2810), + [anon_sym_SEMI] = ACTIONS(2808), + [anon_sym_macro_rules_BANG] = ACTIONS(2808), + [anon_sym_LPAREN] = ACTIONS(2808), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_LBRACE] = ACTIONS(2808), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2808), + [anon_sym_u8] = ACTIONS(2810), + [anon_sym_i8] = ACTIONS(2810), + [anon_sym_u16] = ACTIONS(2810), + [anon_sym_i16] = ACTIONS(2810), + [anon_sym_u32] = ACTIONS(2810), + [anon_sym_i32] = ACTIONS(2810), + [anon_sym_u64] = ACTIONS(2810), + [anon_sym_i64] = ACTIONS(2810), + [anon_sym_u128] = ACTIONS(2810), + [anon_sym_i128] = ACTIONS(2810), + [anon_sym_isize] = ACTIONS(2810), + [anon_sym_usize] = ACTIONS(2810), + [anon_sym_f32] = ACTIONS(2810), + [anon_sym_f64] = ACTIONS(2810), + [anon_sym_bool] = ACTIONS(2810), + [anon_sym_str] = ACTIONS(2810), + [anon_sym_char] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2808), + [anon_sym_BANG] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2808), + [anon_sym_DOT_DOT] = ACTIONS(2808), + [anon_sym_COLON_COLON] = ACTIONS(2808), + [anon_sym_POUND] = ACTIONS(2808), + [anon_sym_SQUOTE] = ACTIONS(2810), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_become] = ACTIONS(2810), + [anon_sym_break] = ACTIONS(2810), + [anon_sym_const] = ACTIONS(2810), + [anon_sym_continue] = ACTIONS(2810), + [anon_sym_default] = ACTIONS(2810), + [anon_sym_enum] = ACTIONS(2810), + [anon_sym_fn] = ACTIONS(2810), + [anon_sym_for] = ACTIONS(2810), + [anon_sym_gen] = ACTIONS(2810), + [anon_sym_if] = ACTIONS(2810), + [anon_sym_impl] = ACTIONS(2810), + [anon_sym_let] = ACTIONS(2810), + [anon_sym_loop] = ACTIONS(2810), + [anon_sym_match] = ACTIONS(2810), + [anon_sym_mod] = ACTIONS(2810), + [anon_sym_pub] = ACTIONS(2810), + [anon_sym_return] = ACTIONS(2810), + [anon_sym_static] = ACTIONS(2810), + [anon_sym_struct] = ACTIONS(2810), + [anon_sym_trait] = ACTIONS(2810), + [anon_sym_type] = ACTIONS(2810), + [anon_sym_union] = ACTIONS(2810), + [anon_sym_unsafe] = ACTIONS(2810), + [anon_sym_use] = ACTIONS(2810), + [anon_sym_while] = ACTIONS(2810), + [anon_sym_extern] = ACTIONS(2810), + [anon_sym_raw] = ACTIONS(2810), + [anon_sym_yield] = ACTIONS(2810), + [anon_sym_move] = ACTIONS(2810), + [anon_sym_try] = ACTIONS(2810), + [sym_integer_literal] = ACTIONS(2808), + [aux_sym_string_literal_token1] = ACTIONS(2808), + [sym_char_literal] = ACTIONS(2808), + [anon_sym_true] = ACTIONS(2810), + [anon_sym_false] = ACTIONS(2810), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2810), + [sym_super] = ACTIONS(2810), + [sym_crate] = ACTIONS(2810), + [sym_metavariable] = ACTIONS(2808), + [sym__raw_string_literal_start] = ACTIONS(2808), + [sym_float_literal] = ACTIONS(2808), }, [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [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_gen] = 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_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [ts_builtin_sym_end] = ACTIONS(2812), + [sym_identifier] = ACTIONS(2814), + [anon_sym_SEMI] = ACTIONS(2812), + [anon_sym_macro_rules_BANG] = ACTIONS(2812), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_LBRACK] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(2812), + [anon_sym_RBRACE] = ACTIONS(2812), + [anon_sym_STAR] = ACTIONS(2812), + [anon_sym_u8] = ACTIONS(2814), + [anon_sym_i8] = ACTIONS(2814), + [anon_sym_u16] = ACTIONS(2814), + [anon_sym_i16] = ACTIONS(2814), + [anon_sym_u32] = ACTIONS(2814), + [anon_sym_i32] = ACTIONS(2814), + [anon_sym_u64] = ACTIONS(2814), + [anon_sym_i64] = ACTIONS(2814), + [anon_sym_u128] = ACTIONS(2814), + [anon_sym_i128] = ACTIONS(2814), + [anon_sym_isize] = ACTIONS(2814), + [anon_sym_usize] = ACTIONS(2814), + [anon_sym_f32] = ACTIONS(2814), + [anon_sym_f64] = ACTIONS(2814), + [anon_sym_bool] = ACTIONS(2814), + [anon_sym_str] = ACTIONS(2814), + [anon_sym_char] = ACTIONS(2814), + [anon_sym_DASH] = ACTIONS(2812), + [anon_sym_BANG] = ACTIONS(2812), + [anon_sym_AMP] = ACTIONS(2812), + [anon_sym_PIPE] = ACTIONS(2812), + [anon_sym_LT] = ACTIONS(2812), + [anon_sym_DOT_DOT] = ACTIONS(2812), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_SQUOTE] = ACTIONS(2814), + [anon_sym_async] = ACTIONS(2814), + [anon_sym_become] = ACTIONS(2814), + [anon_sym_break] = ACTIONS(2814), + [anon_sym_const] = ACTIONS(2814), + [anon_sym_continue] = ACTIONS(2814), + [anon_sym_default] = ACTIONS(2814), + [anon_sym_enum] = ACTIONS(2814), + [anon_sym_fn] = ACTIONS(2814), + [anon_sym_for] = ACTIONS(2814), + [anon_sym_gen] = ACTIONS(2814), + [anon_sym_if] = ACTIONS(2814), + [anon_sym_impl] = ACTIONS(2814), + [anon_sym_let] = ACTIONS(2814), + [anon_sym_loop] = ACTIONS(2814), + [anon_sym_match] = ACTIONS(2814), + [anon_sym_mod] = ACTIONS(2814), + [anon_sym_pub] = ACTIONS(2814), + [anon_sym_return] = ACTIONS(2814), + [anon_sym_static] = ACTIONS(2814), + [anon_sym_struct] = ACTIONS(2814), + [anon_sym_trait] = ACTIONS(2814), + [anon_sym_type] = ACTIONS(2814), + [anon_sym_union] = ACTIONS(2814), + [anon_sym_unsafe] = ACTIONS(2814), + [anon_sym_use] = ACTIONS(2814), + [anon_sym_while] = ACTIONS(2814), + [anon_sym_extern] = ACTIONS(2814), + [anon_sym_raw] = ACTIONS(2814), + [anon_sym_yield] = ACTIONS(2814), + [anon_sym_move] = ACTIONS(2814), + [anon_sym_try] = ACTIONS(2814), + [sym_integer_literal] = ACTIONS(2812), + [aux_sym_string_literal_token1] = ACTIONS(2812), + [sym_char_literal] = ACTIONS(2812), + [anon_sym_true] = ACTIONS(2814), + [anon_sym_false] = ACTIONS(2814), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2814), + [sym_super] = ACTIONS(2814), + [sym_crate] = ACTIONS(2814), + [sym_metavariable] = ACTIONS(2812), + [sym__raw_string_literal_start] = ACTIONS(2812), + [sym_float_literal] = ACTIONS(2812), }, [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_macro_rules_BANG] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_u8] = ACTIONS(2921), - [anon_sym_i8] = ACTIONS(2921), - [anon_sym_u16] = ACTIONS(2921), - [anon_sym_i16] = ACTIONS(2921), - [anon_sym_u32] = ACTIONS(2921), - [anon_sym_i32] = ACTIONS(2921), - [anon_sym_u64] = ACTIONS(2921), - [anon_sym_i64] = ACTIONS(2921), - [anon_sym_u128] = ACTIONS(2921), - [anon_sym_i128] = ACTIONS(2921), - [anon_sym_isize] = ACTIONS(2921), - [anon_sym_usize] = ACTIONS(2921), - [anon_sym_f32] = ACTIONS(2921), - [anon_sym_f64] = ACTIONS(2921), - [anon_sym_bool] = ACTIONS(2921), - [anon_sym_str] = ACTIONS(2921), - [anon_sym_char] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_DOT_DOT] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_async] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_default] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_gen] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_impl] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_loop] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_mod] = ACTIONS(2921), - [anon_sym_pub] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_trait] = ACTIONS(2921), - [anon_sym_type] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_use] = ACTIONS(2921), - [anon_sym_while] = ACTIONS(2921), - [anon_sym_extern] = ACTIONS(2921), - [anon_sym_raw] = ACTIONS(2921), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_move] = ACTIONS(2921), - [anon_sym_try] = ACTIONS(2921), - [sym_integer_literal] = ACTIONS(2919), - [aux_sym_string_literal_token1] = ACTIONS(2919), - [sym_char_literal] = ACTIONS(2919), - [anon_sym_true] = ACTIONS(2921), - [anon_sym_false] = ACTIONS(2921), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2921), - [sym_super] = ACTIONS(2921), - [sym_crate] = ACTIONS(2921), - [sym_metavariable] = ACTIONS(2919), - [sym__raw_string_literal_start] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), + [ts_builtin_sym_end] = ACTIONS(2816), + [sym_identifier] = ACTIONS(2818), + [anon_sym_SEMI] = ACTIONS(2816), + [anon_sym_macro_rules_BANG] = ACTIONS(2816), + [anon_sym_LPAREN] = ACTIONS(2816), + [anon_sym_LBRACK] = ACTIONS(2816), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_RBRACE] = ACTIONS(2816), + [anon_sym_STAR] = ACTIONS(2816), + [anon_sym_u8] = ACTIONS(2818), + [anon_sym_i8] = ACTIONS(2818), + [anon_sym_u16] = ACTIONS(2818), + [anon_sym_i16] = ACTIONS(2818), + [anon_sym_u32] = ACTIONS(2818), + [anon_sym_i32] = ACTIONS(2818), + [anon_sym_u64] = ACTIONS(2818), + [anon_sym_i64] = ACTIONS(2818), + [anon_sym_u128] = ACTIONS(2818), + [anon_sym_i128] = ACTIONS(2818), + [anon_sym_isize] = ACTIONS(2818), + [anon_sym_usize] = ACTIONS(2818), + [anon_sym_f32] = ACTIONS(2818), + [anon_sym_f64] = ACTIONS(2818), + [anon_sym_bool] = ACTIONS(2818), + [anon_sym_str] = ACTIONS(2818), + [anon_sym_char] = ACTIONS(2818), + [anon_sym_DASH] = ACTIONS(2816), + [anon_sym_BANG] = ACTIONS(2816), + [anon_sym_AMP] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(2816), + [anon_sym_LT] = ACTIONS(2816), + [anon_sym_DOT_DOT] = ACTIONS(2816), + [anon_sym_COLON_COLON] = ACTIONS(2816), + [anon_sym_POUND] = ACTIONS(2816), + [anon_sym_SQUOTE] = ACTIONS(2818), + [anon_sym_async] = ACTIONS(2818), + [anon_sym_become] = ACTIONS(2818), + [anon_sym_break] = ACTIONS(2818), + [anon_sym_const] = ACTIONS(2818), + [anon_sym_continue] = ACTIONS(2818), + [anon_sym_default] = ACTIONS(2818), + [anon_sym_enum] = ACTIONS(2818), + [anon_sym_fn] = ACTIONS(2818), + [anon_sym_for] = ACTIONS(2818), + [anon_sym_gen] = ACTIONS(2818), + [anon_sym_if] = ACTIONS(2818), + [anon_sym_impl] = ACTIONS(2818), + [anon_sym_let] = ACTIONS(2818), + [anon_sym_loop] = ACTIONS(2818), + [anon_sym_match] = ACTIONS(2818), + [anon_sym_mod] = ACTIONS(2818), + [anon_sym_pub] = ACTIONS(2818), + [anon_sym_return] = ACTIONS(2818), + [anon_sym_static] = ACTIONS(2818), + [anon_sym_struct] = ACTIONS(2818), + [anon_sym_trait] = ACTIONS(2818), + [anon_sym_type] = ACTIONS(2818), + [anon_sym_union] = ACTIONS(2818), + [anon_sym_unsafe] = ACTIONS(2818), + [anon_sym_use] = ACTIONS(2818), + [anon_sym_while] = ACTIONS(2818), + [anon_sym_extern] = ACTIONS(2818), + [anon_sym_raw] = ACTIONS(2818), + [anon_sym_yield] = ACTIONS(2818), + [anon_sym_move] = ACTIONS(2818), + [anon_sym_try] = ACTIONS(2818), + [sym_integer_literal] = ACTIONS(2816), + [aux_sym_string_literal_token1] = ACTIONS(2816), + [sym_char_literal] = ACTIONS(2816), + [anon_sym_true] = ACTIONS(2818), + [anon_sym_false] = ACTIONS(2818), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2818), + [sym_super] = ACTIONS(2818), + [sym_crate] = ACTIONS(2818), + [sym_metavariable] = ACTIONS(2816), + [sym__raw_string_literal_start] = ACTIONS(2816), + [sym_float_literal] = ACTIONS(2816), }, [STATE(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2923), - [sym_identifier] = ACTIONS(2925), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_macro_rules_BANG] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_u8] = ACTIONS(2925), - [anon_sym_i8] = ACTIONS(2925), - [anon_sym_u16] = ACTIONS(2925), - [anon_sym_i16] = ACTIONS(2925), - [anon_sym_u32] = ACTIONS(2925), - [anon_sym_i32] = ACTIONS(2925), - [anon_sym_u64] = ACTIONS(2925), - [anon_sym_i64] = ACTIONS(2925), - [anon_sym_u128] = ACTIONS(2925), - [anon_sym_i128] = ACTIONS(2925), - [anon_sym_isize] = ACTIONS(2925), - [anon_sym_usize] = ACTIONS(2925), - [anon_sym_f32] = ACTIONS(2925), - [anon_sym_f64] = ACTIONS(2925), - [anon_sym_bool] = ACTIONS(2925), - [anon_sym_str] = ACTIONS(2925), - [anon_sym_char] = ACTIONS(2925), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_DOT_DOT] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_async] = ACTIONS(2925), - [anon_sym_break] = ACTIONS(2925), - [anon_sym_const] = ACTIONS(2925), - [anon_sym_continue] = ACTIONS(2925), - [anon_sym_default] = ACTIONS(2925), - [anon_sym_enum] = ACTIONS(2925), - [anon_sym_fn] = ACTIONS(2925), - [anon_sym_for] = ACTIONS(2925), - [anon_sym_gen] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2925), - [anon_sym_impl] = ACTIONS(2925), - [anon_sym_let] = ACTIONS(2925), - [anon_sym_loop] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2925), - [anon_sym_mod] = ACTIONS(2925), - [anon_sym_pub] = ACTIONS(2925), - [anon_sym_return] = ACTIONS(2925), - [anon_sym_static] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2925), - [anon_sym_trait] = ACTIONS(2925), - [anon_sym_type] = ACTIONS(2925), - [anon_sym_union] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(2925), - [anon_sym_use] = ACTIONS(2925), - [anon_sym_while] = ACTIONS(2925), - [anon_sym_extern] = ACTIONS(2925), - [anon_sym_raw] = ACTIONS(2925), - [anon_sym_yield] = ACTIONS(2925), - [anon_sym_move] = ACTIONS(2925), - [anon_sym_try] = ACTIONS(2925), - [sym_integer_literal] = ACTIONS(2923), - [aux_sym_string_literal_token1] = ACTIONS(2923), - [sym_char_literal] = ACTIONS(2923), - [anon_sym_true] = ACTIONS(2925), - [anon_sym_false] = ACTIONS(2925), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2925), - [sym_super] = ACTIONS(2925), - [sym_crate] = ACTIONS(2925), - [sym_metavariable] = ACTIONS(2923), - [sym__raw_string_literal_start] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), + [ts_builtin_sym_end] = ACTIONS(2820), + [sym_identifier] = ACTIONS(2822), + [anon_sym_SEMI] = ACTIONS(2820), + [anon_sym_macro_rules_BANG] = ACTIONS(2820), + [anon_sym_LPAREN] = ACTIONS(2820), + [anon_sym_LBRACK] = ACTIONS(2820), + [anon_sym_LBRACE] = ACTIONS(2820), + [anon_sym_RBRACE] = ACTIONS(2820), + [anon_sym_STAR] = ACTIONS(2820), + [anon_sym_u8] = ACTIONS(2822), + [anon_sym_i8] = ACTIONS(2822), + [anon_sym_u16] = ACTIONS(2822), + [anon_sym_i16] = ACTIONS(2822), + [anon_sym_u32] = ACTIONS(2822), + [anon_sym_i32] = ACTIONS(2822), + [anon_sym_u64] = ACTIONS(2822), + [anon_sym_i64] = ACTIONS(2822), + [anon_sym_u128] = ACTIONS(2822), + [anon_sym_i128] = ACTIONS(2822), + [anon_sym_isize] = ACTIONS(2822), + [anon_sym_usize] = ACTIONS(2822), + [anon_sym_f32] = ACTIONS(2822), + [anon_sym_f64] = ACTIONS(2822), + [anon_sym_bool] = ACTIONS(2822), + [anon_sym_str] = ACTIONS(2822), + [anon_sym_char] = ACTIONS(2822), + [anon_sym_DASH] = ACTIONS(2820), + [anon_sym_BANG] = ACTIONS(2820), + [anon_sym_AMP] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2820), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym_DOT_DOT] = ACTIONS(2820), + [anon_sym_COLON_COLON] = ACTIONS(2820), + [anon_sym_POUND] = ACTIONS(2820), + [anon_sym_SQUOTE] = ACTIONS(2822), + [anon_sym_async] = ACTIONS(2822), + [anon_sym_become] = ACTIONS(2822), + [anon_sym_break] = ACTIONS(2822), + [anon_sym_const] = ACTIONS(2822), + [anon_sym_continue] = ACTIONS(2822), + [anon_sym_default] = ACTIONS(2822), + [anon_sym_enum] = ACTIONS(2822), + [anon_sym_fn] = ACTIONS(2822), + [anon_sym_for] = ACTIONS(2822), + [anon_sym_gen] = ACTIONS(2822), + [anon_sym_if] = ACTIONS(2822), + [anon_sym_impl] = ACTIONS(2822), + [anon_sym_let] = ACTIONS(2822), + [anon_sym_loop] = ACTIONS(2822), + [anon_sym_match] = ACTIONS(2822), + [anon_sym_mod] = ACTIONS(2822), + [anon_sym_pub] = ACTIONS(2822), + [anon_sym_return] = ACTIONS(2822), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_struct] = ACTIONS(2822), + [anon_sym_trait] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_union] = ACTIONS(2822), + [anon_sym_unsafe] = ACTIONS(2822), + [anon_sym_use] = ACTIONS(2822), + [anon_sym_while] = ACTIONS(2822), + [anon_sym_extern] = ACTIONS(2822), + [anon_sym_raw] = ACTIONS(2822), + [anon_sym_yield] = ACTIONS(2822), + [anon_sym_move] = ACTIONS(2822), + [anon_sym_try] = ACTIONS(2822), + [sym_integer_literal] = ACTIONS(2820), + [aux_sym_string_literal_token1] = ACTIONS(2820), + [sym_char_literal] = ACTIONS(2820), + [anon_sym_true] = ACTIONS(2822), + [anon_sym_false] = ACTIONS(2822), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2822), + [sym_super] = ACTIONS(2822), + [sym_crate] = ACTIONS(2822), + [sym_metavariable] = ACTIONS(2820), + [sym__raw_string_literal_start] = ACTIONS(2820), + [sym_float_literal] = ACTIONS(2820), }, [STATE(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2927), - [sym_identifier] = ACTIONS(2929), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_macro_rules_BANG] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_u8] = ACTIONS(2929), - [anon_sym_i8] = ACTIONS(2929), - [anon_sym_u16] = ACTIONS(2929), - [anon_sym_i16] = ACTIONS(2929), - [anon_sym_u32] = ACTIONS(2929), - [anon_sym_i32] = ACTIONS(2929), - [anon_sym_u64] = ACTIONS(2929), - [anon_sym_i64] = ACTIONS(2929), - [anon_sym_u128] = ACTIONS(2929), - [anon_sym_i128] = ACTIONS(2929), - [anon_sym_isize] = ACTIONS(2929), - [anon_sym_usize] = ACTIONS(2929), - [anon_sym_f32] = ACTIONS(2929), - [anon_sym_f64] = ACTIONS(2929), - [anon_sym_bool] = ACTIONS(2929), - [anon_sym_str] = ACTIONS(2929), - [anon_sym_char] = ACTIONS(2929), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_DOT_DOT] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_async] = ACTIONS(2929), - [anon_sym_break] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2929), - [anon_sym_continue] = ACTIONS(2929), - [anon_sym_default] = ACTIONS(2929), - [anon_sym_enum] = ACTIONS(2929), - [anon_sym_fn] = ACTIONS(2929), - [anon_sym_for] = ACTIONS(2929), - [anon_sym_gen] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_impl] = ACTIONS(2929), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_loop] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2929), - [anon_sym_mod] = ACTIONS(2929), - [anon_sym_pub] = ACTIONS(2929), - [anon_sym_return] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2929), - [anon_sym_trait] = ACTIONS(2929), - [anon_sym_type] = ACTIONS(2929), - [anon_sym_union] = ACTIONS(2929), - [anon_sym_unsafe] = ACTIONS(2929), - [anon_sym_use] = ACTIONS(2929), - [anon_sym_while] = ACTIONS(2929), - [anon_sym_extern] = ACTIONS(2929), - [anon_sym_raw] = ACTIONS(2929), - [anon_sym_yield] = ACTIONS(2929), - [anon_sym_move] = ACTIONS(2929), - [anon_sym_try] = ACTIONS(2929), - [sym_integer_literal] = ACTIONS(2927), - [aux_sym_string_literal_token1] = ACTIONS(2927), - [sym_char_literal] = ACTIONS(2927), - [anon_sym_true] = ACTIONS(2929), - [anon_sym_false] = ACTIONS(2929), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2929), - [sym_super] = ACTIONS(2929), - [sym_crate] = ACTIONS(2929), - [sym_metavariable] = ACTIONS(2927), - [sym__raw_string_literal_start] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), + [ts_builtin_sym_end] = ACTIONS(2824), + [sym_identifier] = ACTIONS(2826), + [anon_sym_SEMI] = ACTIONS(2824), + [anon_sym_macro_rules_BANG] = ACTIONS(2824), + [anon_sym_LPAREN] = ACTIONS(2824), + [anon_sym_LBRACK] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(2824), + [anon_sym_RBRACE] = ACTIONS(2824), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_u8] = ACTIONS(2826), + [anon_sym_i8] = ACTIONS(2826), + [anon_sym_u16] = ACTIONS(2826), + [anon_sym_i16] = ACTIONS(2826), + [anon_sym_u32] = ACTIONS(2826), + [anon_sym_i32] = ACTIONS(2826), + [anon_sym_u64] = ACTIONS(2826), + [anon_sym_i64] = ACTIONS(2826), + [anon_sym_u128] = ACTIONS(2826), + [anon_sym_i128] = ACTIONS(2826), + [anon_sym_isize] = ACTIONS(2826), + [anon_sym_usize] = ACTIONS(2826), + [anon_sym_f32] = ACTIONS(2826), + [anon_sym_f64] = ACTIONS(2826), + [anon_sym_bool] = ACTIONS(2826), + [anon_sym_str] = ACTIONS(2826), + [anon_sym_char] = ACTIONS(2826), + [anon_sym_DASH] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(2824), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_PIPE] = ACTIONS(2824), + [anon_sym_LT] = ACTIONS(2824), + [anon_sym_DOT_DOT] = ACTIONS(2824), + [anon_sym_COLON_COLON] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2824), + [anon_sym_SQUOTE] = ACTIONS(2826), + [anon_sym_async] = ACTIONS(2826), + [anon_sym_become] = ACTIONS(2826), + [anon_sym_break] = ACTIONS(2826), + [anon_sym_const] = ACTIONS(2826), + [anon_sym_continue] = ACTIONS(2826), + [anon_sym_default] = ACTIONS(2826), + [anon_sym_enum] = ACTIONS(2826), + [anon_sym_fn] = ACTIONS(2826), + [anon_sym_for] = ACTIONS(2826), + [anon_sym_gen] = ACTIONS(2826), + [anon_sym_if] = ACTIONS(2826), + [anon_sym_impl] = ACTIONS(2826), + [anon_sym_let] = ACTIONS(2826), + [anon_sym_loop] = ACTIONS(2826), + [anon_sym_match] = ACTIONS(2826), + [anon_sym_mod] = ACTIONS(2826), + [anon_sym_pub] = ACTIONS(2826), + [anon_sym_return] = ACTIONS(2826), + [anon_sym_static] = ACTIONS(2826), + [anon_sym_struct] = ACTIONS(2826), + [anon_sym_trait] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2826), + [anon_sym_union] = ACTIONS(2826), + [anon_sym_unsafe] = ACTIONS(2826), + [anon_sym_use] = ACTIONS(2826), + [anon_sym_while] = ACTIONS(2826), + [anon_sym_extern] = ACTIONS(2826), + [anon_sym_raw] = ACTIONS(2826), + [anon_sym_yield] = ACTIONS(2826), + [anon_sym_move] = ACTIONS(2826), + [anon_sym_try] = ACTIONS(2826), + [sym_integer_literal] = ACTIONS(2824), + [aux_sym_string_literal_token1] = ACTIONS(2824), + [sym_char_literal] = ACTIONS(2824), + [anon_sym_true] = ACTIONS(2826), + [anon_sym_false] = ACTIONS(2826), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2826), + [sym_super] = ACTIONS(2826), + [sym_crate] = ACTIONS(2826), + [sym_metavariable] = ACTIONS(2824), + [sym__raw_string_literal_start] = ACTIONS(2824), + [sym_float_literal] = ACTIONS(2824), }, [STATE(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2931), - [sym_identifier] = ACTIONS(2933), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_macro_rules_BANG] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_u8] = ACTIONS(2933), - [anon_sym_i8] = ACTIONS(2933), - [anon_sym_u16] = ACTIONS(2933), - [anon_sym_i16] = ACTIONS(2933), - [anon_sym_u32] = ACTIONS(2933), - [anon_sym_i32] = ACTIONS(2933), - [anon_sym_u64] = ACTIONS(2933), - [anon_sym_i64] = ACTIONS(2933), - [anon_sym_u128] = ACTIONS(2933), - [anon_sym_i128] = ACTIONS(2933), - [anon_sym_isize] = ACTIONS(2933), - [anon_sym_usize] = ACTIONS(2933), - [anon_sym_f32] = ACTIONS(2933), - [anon_sym_f64] = ACTIONS(2933), - [anon_sym_bool] = ACTIONS(2933), - [anon_sym_str] = ACTIONS(2933), - [anon_sym_char] = ACTIONS(2933), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_DOT_DOT] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_async] = ACTIONS(2933), - [anon_sym_break] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2933), - [anon_sym_continue] = ACTIONS(2933), - [anon_sym_default] = ACTIONS(2933), - [anon_sym_enum] = ACTIONS(2933), - [anon_sym_fn] = ACTIONS(2933), - [anon_sym_for] = ACTIONS(2933), - [anon_sym_gen] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2933), - [anon_sym_impl] = ACTIONS(2933), - [anon_sym_let] = ACTIONS(2933), - [anon_sym_loop] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2933), - [anon_sym_mod] = ACTIONS(2933), - [anon_sym_pub] = ACTIONS(2933), - [anon_sym_return] = ACTIONS(2933), - [anon_sym_static] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2933), - [anon_sym_trait] = ACTIONS(2933), - [anon_sym_type] = ACTIONS(2933), - [anon_sym_union] = ACTIONS(2933), - [anon_sym_unsafe] = ACTIONS(2933), - [anon_sym_use] = ACTIONS(2933), - [anon_sym_while] = ACTIONS(2933), - [anon_sym_extern] = ACTIONS(2933), - [anon_sym_raw] = ACTIONS(2933), - [anon_sym_yield] = ACTIONS(2933), - [anon_sym_move] = ACTIONS(2933), - [anon_sym_try] = ACTIONS(2933), - [sym_integer_literal] = ACTIONS(2931), - [aux_sym_string_literal_token1] = ACTIONS(2931), - [sym_char_literal] = ACTIONS(2931), - [anon_sym_true] = ACTIONS(2933), - [anon_sym_false] = ACTIONS(2933), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2933), - [sym_super] = ACTIONS(2933), - [sym_crate] = ACTIONS(2933), - [sym_metavariable] = ACTIONS(2931), - [sym__raw_string_literal_start] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), + [ts_builtin_sym_end] = ACTIONS(2828), + [sym_identifier] = ACTIONS(2830), + [anon_sym_SEMI] = ACTIONS(2828), + [anon_sym_macro_rules_BANG] = ACTIONS(2828), + [anon_sym_LPAREN] = ACTIONS(2828), + [anon_sym_LBRACK] = ACTIONS(2828), + [anon_sym_LBRACE] = ACTIONS(2828), + [anon_sym_RBRACE] = ACTIONS(2828), + [anon_sym_STAR] = ACTIONS(2828), + [anon_sym_u8] = ACTIONS(2830), + [anon_sym_i8] = ACTIONS(2830), + [anon_sym_u16] = ACTIONS(2830), + [anon_sym_i16] = ACTIONS(2830), + [anon_sym_u32] = ACTIONS(2830), + [anon_sym_i32] = ACTIONS(2830), + [anon_sym_u64] = ACTIONS(2830), + [anon_sym_i64] = ACTIONS(2830), + [anon_sym_u128] = ACTIONS(2830), + [anon_sym_i128] = ACTIONS(2830), + [anon_sym_isize] = ACTIONS(2830), + [anon_sym_usize] = ACTIONS(2830), + [anon_sym_f32] = ACTIONS(2830), + [anon_sym_f64] = ACTIONS(2830), + [anon_sym_bool] = ACTIONS(2830), + [anon_sym_str] = ACTIONS(2830), + [anon_sym_char] = ACTIONS(2830), + [anon_sym_DASH] = ACTIONS(2828), + [anon_sym_BANG] = ACTIONS(2828), + [anon_sym_AMP] = ACTIONS(2828), + [anon_sym_PIPE] = ACTIONS(2828), + [anon_sym_LT] = ACTIONS(2828), + [anon_sym_DOT_DOT] = ACTIONS(2828), + [anon_sym_COLON_COLON] = ACTIONS(2828), + [anon_sym_POUND] = ACTIONS(2828), + [anon_sym_SQUOTE] = ACTIONS(2830), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_become] = ACTIONS(2830), + [anon_sym_break] = ACTIONS(2830), + [anon_sym_const] = ACTIONS(2830), + [anon_sym_continue] = ACTIONS(2830), + [anon_sym_default] = ACTIONS(2830), + [anon_sym_enum] = ACTIONS(2830), + [anon_sym_fn] = ACTIONS(2830), + [anon_sym_for] = ACTIONS(2830), + [anon_sym_gen] = ACTIONS(2830), + [anon_sym_if] = ACTIONS(2830), + [anon_sym_impl] = ACTIONS(2830), + [anon_sym_let] = ACTIONS(2830), + [anon_sym_loop] = ACTIONS(2830), + [anon_sym_match] = ACTIONS(2830), + [anon_sym_mod] = ACTIONS(2830), + [anon_sym_pub] = ACTIONS(2830), + [anon_sym_return] = ACTIONS(2830), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_struct] = ACTIONS(2830), + [anon_sym_trait] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_union] = ACTIONS(2830), + [anon_sym_unsafe] = ACTIONS(2830), + [anon_sym_use] = ACTIONS(2830), + [anon_sym_while] = ACTIONS(2830), + [anon_sym_extern] = ACTIONS(2830), + [anon_sym_raw] = ACTIONS(2830), + [anon_sym_yield] = ACTIONS(2830), + [anon_sym_move] = ACTIONS(2830), + [anon_sym_try] = ACTIONS(2830), + [sym_integer_literal] = ACTIONS(2828), + [aux_sym_string_literal_token1] = ACTIONS(2828), + [sym_char_literal] = ACTIONS(2828), + [anon_sym_true] = ACTIONS(2830), + [anon_sym_false] = ACTIONS(2830), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2830), + [sym_super] = ACTIONS(2830), + [sym_crate] = ACTIONS(2830), + [sym_metavariable] = ACTIONS(2828), + [sym__raw_string_literal_start] = ACTIONS(2828), + [sym_float_literal] = ACTIONS(2828), }, [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2935), - [sym_identifier] = ACTIONS(2937), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_macro_rules_BANG] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_u8] = ACTIONS(2937), - [anon_sym_i8] = ACTIONS(2937), - [anon_sym_u16] = ACTIONS(2937), - [anon_sym_i16] = ACTIONS(2937), - [anon_sym_u32] = ACTIONS(2937), - [anon_sym_i32] = ACTIONS(2937), - [anon_sym_u64] = ACTIONS(2937), - [anon_sym_i64] = ACTIONS(2937), - [anon_sym_u128] = ACTIONS(2937), - [anon_sym_i128] = ACTIONS(2937), - [anon_sym_isize] = ACTIONS(2937), - [anon_sym_usize] = ACTIONS(2937), - [anon_sym_f32] = ACTIONS(2937), - [anon_sym_f64] = ACTIONS(2937), - [anon_sym_bool] = ACTIONS(2937), - [anon_sym_str] = ACTIONS(2937), - [anon_sym_char] = ACTIONS(2937), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_DOT_DOT] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_break] = ACTIONS(2937), - [anon_sym_const] = ACTIONS(2937), - [anon_sym_continue] = ACTIONS(2937), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_fn] = ACTIONS(2937), - [anon_sym_for] = ACTIONS(2937), - [anon_sym_gen] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2937), - [anon_sym_impl] = ACTIONS(2937), - [anon_sym_let] = ACTIONS(2937), - [anon_sym_loop] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2937), - [anon_sym_mod] = ACTIONS(2937), - [anon_sym_pub] = ACTIONS(2937), - [anon_sym_return] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2937), - [anon_sym_trait] = ACTIONS(2937), - [anon_sym_type] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_unsafe] = ACTIONS(2937), - [anon_sym_use] = ACTIONS(2937), - [anon_sym_while] = ACTIONS(2937), - [anon_sym_extern] = ACTIONS(2937), - [anon_sym_raw] = ACTIONS(2937), - [anon_sym_yield] = ACTIONS(2937), - [anon_sym_move] = ACTIONS(2937), - [anon_sym_try] = ACTIONS(2937), - [sym_integer_literal] = ACTIONS(2935), - [aux_sym_string_literal_token1] = ACTIONS(2935), - [sym_char_literal] = ACTIONS(2935), - [anon_sym_true] = ACTIONS(2937), - [anon_sym_false] = ACTIONS(2937), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2937), - [sym_super] = ACTIONS(2937), - [sym_crate] = ACTIONS(2937), - [sym_metavariable] = ACTIONS(2935), - [sym__raw_string_literal_start] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), + [ts_builtin_sym_end] = ACTIONS(2832), + [sym_identifier] = ACTIONS(2834), + [anon_sym_SEMI] = ACTIONS(2832), + [anon_sym_macro_rules_BANG] = ACTIONS(2832), + [anon_sym_LPAREN] = ACTIONS(2832), + [anon_sym_LBRACK] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(2832), + [anon_sym_RBRACE] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_u8] = ACTIONS(2834), + [anon_sym_i8] = ACTIONS(2834), + [anon_sym_u16] = ACTIONS(2834), + [anon_sym_i16] = ACTIONS(2834), + [anon_sym_u32] = ACTIONS(2834), + [anon_sym_i32] = ACTIONS(2834), + [anon_sym_u64] = ACTIONS(2834), + [anon_sym_i64] = ACTIONS(2834), + [anon_sym_u128] = ACTIONS(2834), + [anon_sym_i128] = ACTIONS(2834), + [anon_sym_isize] = ACTIONS(2834), + [anon_sym_usize] = ACTIONS(2834), + [anon_sym_f32] = ACTIONS(2834), + [anon_sym_f64] = ACTIONS(2834), + [anon_sym_bool] = ACTIONS(2834), + [anon_sym_str] = ACTIONS(2834), + [anon_sym_char] = ACTIONS(2834), + [anon_sym_DASH] = ACTIONS(2832), + [anon_sym_BANG] = ACTIONS(2832), + [anon_sym_AMP] = ACTIONS(2832), + [anon_sym_PIPE] = ACTIONS(2832), + [anon_sym_LT] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_COLON_COLON] = ACTIONS(2832), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_SQUOTE] = ACTIONS(2834), + [anon_sym_async] = ACTIONS(2834), + [anon_sym_become] = ACTIONS(2834), + [anon_sym_break] = ACTIONS(2834), + [anon_sym_const] = ACTIONS(2834), + [anon_sym_continue] = ACTIONS(2834), + [anon_sym_default] = ACTIONS(2834), + [anon_sym_enum] = ACTIONS(2834), + [anon_sym_fn] = ACTIONS(2834), + [anon_sym_for] = ACTIONS(2834), + [anon_sym_gen] = ACTIONS(2834), + [anon_sym_if] = ACTIONS(2834), + [anon_sym_impl] = ACTIONS(2834), + [anon_sym_let] = ACTIONS(2834), + [anon_sym_loop] = ACTIONS(2834), + [anon_sym_match] = ACTIONS(2834), + [anon_sym_mod] = ACTIONS(2834), + [anon_sym_pub] = ACTIONS(2834), + [anon_sym_return] = ACTIONS(2834), + [anon_sym_static] = ACTIONS(2834), + [anon_sym_struct] = ACTIONS(2834), + [anon_sym_trait] = ACTIONS(2834), + [anon_sym_type] = ACTIONS(2834), + [anon_sym_union] = ACTIONS(2834), + [anon_sym_unsafe] = ACTIONS(2834), + [anon_sym_use] = ACTIONS(2834), + [anon_sym_while] = ACTIONS(2834), + [anon_sym_extern] = ACTIONS(2834), + [anon_sym_raw] = ACTIONS(2834), + [anon_sym_yield] = ACTIONS(2834), + [anon_sym_move] = ACTIONS(2834), + [anon_sym_try] = ACTIONS(2834), + [sym_integer_literal] = ACTIONS(2832), + [aux_sym_string_literal_token1] = ACTIONS(2832), + [sym_char_literal] = ACTIONS(2832), + [anon_sym_true] = ACTIONS(2834), + [anon_sym_false] = ACTIONS(2834), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2834), + [sym_super] = ACTIONS(2834), + [sym_crate] = ACTIONS(2834), + [sym_metavariable] = ACTIONS(2832), + [sym__raw_string_literal_start] = ACTIONS(2832), + [sym_float_literal] = ACTIONS(2832), }, [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2939), - [sym_identifier] = ACTIONS(2941), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_macro_rules_BANG] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_u8] = ACTIONS(2941), - [anon_sym_i8] = ACTIONS(2941), - [anon_sym_u16] = ACTIONS(2941), - [anon_sym_i16] = ACTIONS(2941), - [anon_sym_u32] = ACTIONS(2941), - [anon_sym_i32] = ACTIONS(2941), - [anon_sym_u64] = ACTIONS(2941), - [anon_sym_i64] = ACTIONS(2941), - [anon_sym_u128] = ACTIONS(2941), - [anon_sym_i128] = ACTIONS(2941), - [anon_sym_isize] = ACTIONS(2941), - [anon_sym_usize] = ACTIONS(2941), - [anon_sym_f32] = ACTIONS(2941), - [anon_sym_f64] = ACTIONS(2941), - [anon_sym_bool] = ACTIONS(2941), - [anon_sym_str] = ACTIONS(2941), - [anon_sym_char] = ACTIONS(2941), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_DOT_DOT] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_async] = ACTIONS(2941), - [anon_sym_break] = ACTIONS(2941), - [anon_sym_const] = ACTIONS(2941), - [anon_sym_continue] = ACTIONS(2941), - [anon_sym_default] = ACTIONS(2941), - [anon_sym_enum] = ACTIONS(2941), - [anon_sym_fn] = ACTIONS(2941), - [anon_sym_for] = ACTIONS(2941), - [anon_sym_gen] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2941), - [anon_sym_impl] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2941), - [anon_sym_loop] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2941), - [anon_sym_mod] = ACTIONS(2941), - [anon_sym_pub] = ACTIONS(2941), - [anon_sym_return] = ACTIONS(2941), - [anon_sym_static] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2941), - [anon_sym_trait] = ACTIONS(2941), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2941), - [anon_sym_unsafe] = ACTIONS(2941), - [anon_sym_use] = ACTIONS(2941), - [anon_sym_while] = ACTIONS(2941), - [anon_sym_extern] = ACTIONS(2941), - [anon_sym_raw] = ACTIONS(2941), - [anon_sym_yield] = ACTIONS(2941), - [anon_sym_move] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2941), - [sym_integer_literal] = ACTIONS(2939), - [aux_sym_string_literal_token1] = ACTIONS(2939), - [sym_char_literal] = ACTIONS(2939), - [anon_sym_true] = ACTIONS(2941), - [anon_sym_false] = ACTIONS(2941), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2941), - [sym_super] = ACTIONS(2941), - [sym_crate] = ACTIONS(2941), - [sym_metavariable] = ACTIONS(2939), - [sym__raw_string_literal_start] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), + [ts_builtin_sym_end] = ACTIONS(2836), + [sym_identifier] = ACTIONS(2838), + [anon_sym_SEMI] = ACTIONS(2836), + [anon_sym_macro_rules_BANG] = ACTIONS(2836), + [anon_sym_LPAREN] = ACTIONS(2836), + [anon_sym_LBRACK] = ACTIONS(2836), + [anon_sym_LBRACE] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(2836), + [anon_sym_STAR] = ACTIONS(2836), + [anon_sym_u8] = ACTIONS(2838), + [anon_sym_i8] = ACTIONS(2838), + [anon_sym_u16] = ACTIONS(2838), + [anon_sym_i16] = ACTIONS(2838), + [anon_sym_u32] = ACTIONS(2838), + [anon_sym_i32] = ACTIONS(2838), + [anon_sym_u64] = ACTIONS(2838), + [anon_sym_i64] = ACTIONS(2838), + [anon_sym_u128] = ACTIONS(2838), + [anon_sym_i128] = ACTIONS(2838), + [anon_sym_isize] = ACTIONS(2838), + [anon_sym_usize] = ACTIONS(2838), + [anon_sym_f32] = ACTIONS(2838), + [anon_sym_f64] = ACTIONS(2838), + [anon_sym_bool] = ACTIONS(2838), + [anon_sym_str] = ACTIONS(2838), + [anon_sym_char] = ACTIONS(2838), + [anon_sym_DASH] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(2836), + [anon_sym_AMP] = ACTIONS(2836), + [anon_sym_PIPE] = ACTIONS(2836), + [anon_sym_LT] = ACTIONS(2836), + [anon_sym_DOT_DOT] = ACTIONS(2836), + [anon_sym_COLON_COLON] = ACTIONS(2836), + [anon_sym_POUND] = ACTIONS(2836), + [anon_sym_SQUOTE] = ACTIONS(2838), + [anon_sym_async] = ACTIONS(2838), + [anon_sym_become] = ACTIONS(2838), + [anon_sym_break] = ACTIONS(2838), + [anon_sym_const] = ACTIONS(2838), + [anon_sym_continue] = ACTIONS(2838), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_enum] = ACTIONS(2838), + [anon_sym_fn] = ACTIONS(2838), + [anon_sym_for] = ACTIONS(2838), + [anon_sym_gen] = ACTIONS(2838), + [anon_sym_if] = ACTIONS(2838), + [anon_sym_impl] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2838), + [anon_sym_loop] = ACTIONS(2838), + [anon_sym_match] = ACTIONS(2838), + [anon_sym_mod] = ACTIONS(2838), + [anon_sym_pub] = ACTIONS(2838), + [anon_sym_return] = ACTIONS(2838), + [anon_sym_static] = ACTIONS(2838), + [anon_sym_struct] = ACTIONS(2838), + [anon_sym_trait] = ACTIONS(2838), + [anon_sym_type] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_unsafe] = ACTIONS(2838), + [anon_sym_use] = ACTIONS(2838), + [anon_sym_while] = ACTIONS(2838), + [anon_sym_extern] = ACTIONS(2838), + [anon_sym_raw] = ACTIONS(2838), + [anon_sym_yield] = ACTIONS(2838), + [anon_sym_move] = ACTIONS(2838), + [anon_sym_try] = ACTIONS(2838), + [sym_integer_literal] = ACTIONS(2836), + [aux_sym_string_literal_token1] = ACTIONS(2836), + [sym_char_literal] = ACTIONS(2836), + [anon_sym_true] = ACTIONS(2838), + [anon_sym_false] = ACTIONS(2838), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2838), + [sym_super] = ACTIONS(2838), + [sym_crate] = ACTIONS(2838), + [sym_metavariable] = ACTIONS(2836), + [sym__raw_string_literal_start] = ACTIONS(2836), + [sym_float_literal] = ACTIONS(2836), }, [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2943), - [sym_identifier] = ACTIONS(2945), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_macro_rules_BANG] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_u8] = ACTIONS(2945), - [anon_sym_i8] = ACTIONS(2945), - [anon_sym_u16] = ACTIONS(2945), - [anon_sym_i16] = ACTIONS(2945), - [anon_sym_u32] = ACTIONS(2945), - [anon_sym_i32] = ACTIONS(2945), - [anon_sym_u64] = ACTIONS(2945), - [anon_sym_i64] = ACTIONS(2945), - [anon_sym_u128] = ACTIONS(2945), - [anon_sym_i128] = ACTIONS(2945), - [anon_sym_isize] = ACTIONS(2945), - [anon_sym_usize] = ACTIONS(2945), - [anon_sym_f32] = ACTIONS(2945), - [anon_sym_f64] = ACTIONS(2945), - [anon_sym_bool] = ACTIONS(2945), - [anon_sym_str] = ACTIONS(2945), - [anon_sym_char] = ACTIONS(2945), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_DOT_DOT] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_async] = ACTIONS(2945), - [anon_sym_break] = ACTIONS(2945), - [anon_sym_const] = ACTIONS(2945), - [anon_sym_continue] = ACTIONS(2945), - [anon_sym_default] = ACTIONS(2945), - [anon_sym_enum] = ACTIONS(2945), - [anon_sym_fn] = ACTIONS(2945), - [anon_sym_for] = ACTIONS(2945), - [anon_sym_gen] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2945), - [anon_sym_impl] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2945), - [anon_sym_loop] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2945), - [anon_sym_mod] = ACTIONS(2945), - [anon_sym_pub] = ACTIONS(2945), - [anon_sym_return] = ACTIONS(2945), - [anon_sym_static] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2945), - [anon_sym_trait] = ACTIONS(2945), - [anon_sym_type] = ACTIONS(2945), - [anon_sym_union] = ACTIONS(2945), - [anon_sym_unsafe] = ACTIONS(2945), - [anon_sym_use] = ACTIONS(2945), - [anon_sym_while] = ACTIONS(2945), - [anon_sym_extern] = ACTIONS(2945), - [anon_sym_raw] = ACTIONS(2945), - [anon_sym_yield] = ACTIONS(2945), - [anon_sym_move] = ACTIONS(2945), - [anon_sym_try] = ACTIONS(2945), - [sym_integer_literal] = ACTIONS(2943), - [aux_sym_string_literal_token1] = ACTIONS(2943), - [sym_char_literal] = ACTIONS(2943), - [anon_sym_true] = ACTIONS(2945), - [anon_sym_false] = ACTIONS(2945), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2945), - [sym_super] = ACTIONS(2945), - [sym_crate] = ACTIONS(2945), - [sym_metavariable] = ACTIONS(2943), - [sym__raw_string_literal_start] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), + [ts_builtin_sym_end] = ACTIONS(2840), + [sym_identifier] = ACTIONS(2842), + [anon_sym_SEMI] = ACTIONS(2840), + [anon_sym_macro_rules_BANG] = ACTIONS(2840), + [anon_sym_LPAREN] = ACTIONS(2840), + [anon_sym_LBRACK] = ACTIONS(2840), + [anon_sym_LBRACE] = ACTIONS(2840), + [anon_sym_RBRACE] = ACTIONS(2840), + [anon_sym_STAR] = ACTIONS(2840), + [anon_sym_u8] = ACTIONS(2842), + [anon_sym_i8] = ACTIONS(2842), + [anon_sym_u16] = ACTIONS(2842), + [anon_sym_i16] = ACTIONS(2842), + [anon_sym_u32] = ACTIONS(2842), + [anon_sym_i32] = ACTIONS(2842), + [anon_sym_u64] = ACTIONS(2842), + [anon_sym_i64] = ACTIONS(2842), + [anon_sym_u128] = ACTIONS(2842), + [anon_sym_i128] = ACTIONS(2842), + [anon_sym_isize] = ACTIONS(2842), + [anon_sym_usize] = ACTIONS(2842), + [anon_sym_f32] = ACTIONS(2842), + [anon_sym_f64] = ACTIONS(2842), + [anon_sym_bool] = ACTIONS(2842), + [anon_sym_str] = ACTIONS(2842), + [anon_sym_char] = ACTIONS(2842), + [anon_sym_DASH] = ACTIONS(2840), + [anon_sym_BANG] = ACTIONS(2840), + [anon_sym_AMP] = ACTIONS(2840), + [anon_sym_PIPE] = ACTIONS(2840), + [anon_sym_LT] = ACTIONS(2840), + [anon_sym_DOT_DOT] = ACTIONS(2840), + [anon_sym_COLON_COLON] = ACTIONS(2840), + [anon_sym_POUND] = ACTIONS(2840), + [anon_sym_SQUOTE] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(2842), + [anon_sym_become] = ACTIONS(2842), + [anon_sym_break] = ACTIONS(2842), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_continue] = ACTIONS(2842), + [anon_sym_default] = ACTIONS(2842), + [anon_sym_enum] = ACTIONS(2842), + [anon_sym_fn] = ACTIONS(2842), + [anon_sym_for] = ACTIONS(2842), + [anon_sym_gen] = ACTIONS(2842), + [anon_sym_if] = ACTIONS(2842), + [anon_sym_impl] = ACTIONS(2842), + [anon_sym_let] = ACTIONS(2842), + [anon_sym_loop] = ACTIONS(2842), + [anon_sym_match] = ACTIONS(2842), + [anon_sym_mod] = ACTIONS(2842), + [anon_sym_pub] = ACTIONS(2842), + [anon_sym_return] = ACTIONS(2842), + [anon_sym_static] = ACTIONS(2842), + [anon_sym_struct] = ACTIONS(2842), + [anon_sym_trait] = ACTIONS(2842), + [anon_sym_type] = ACTIONS(2842), + [anon_sym_union] = ACTIONS(2842), + [anon_sym_unsafe] = ACTIONS(2842), + [anon_sym_use] = ACTIONS(2842), + [anon_sym_while] = ACTIONS(2842), + [anon_sym_extern] = ACTIONS(2842), + [anon_sym_raw] = ACTIONS(2842), + [anon_sym_yield] = ACTIONS(2842), + [anon_sym_move] = ACTIONS(2842), + [anon_sym_try] = ACTIONS(2842), + [sym_integer_literal] = ACTIONS(2840), + [aux_sym_string_literal_token1] = ACTIONS(2840), + [sym_char_literal] = ACTIONS(2840), + [anon_sym_true] = ACTIONS(2842), + [anon_sym_false] = ACTIONS(2842), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2842), + [sym_super] = ACTIONS(2842), + [sym_crate] = ACTIONS(2842), + [sym_metavariable] = ACTIONS(2840), + [sym__raw_string_literal_start] = ACTIONS(2840), + [sym_float_literal] = ACTIONS(2840), }, [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2949), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_macro_rules_BANG] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_u8] = ACTIONS(2949), - [anon_sym_i8] = ACTIONS(2949), - [anon_sym_u16] = ACTIONS(2949), - [anon_sym_i16] = ACTIONS(2949), - [anon_sym_u32] = ACTIONS(2949), - [anon_sym_i32] = ACTIONS(2949), - [anon_sym_u64] = ACTIONS(2949), - [anon_sym_i64] = ACTIONS(2949), - [anon_sym_u128] = ACTIONS(2949), - [anon_sym_i128] = ACTIONS(2949), - [anon_sym_isize] = ACTIONS(2949), - [anon_sym_usize] = ACTIONS(2949), - [anon_sym_f32] = ACTIONS(2949), - [anon_sym_f64] = ACTIONS(2949), - [anon_sym_bool] = ACTIONS(2949), - [anon_sym_str] = ACTIONS(2949), - [anon_sym_char] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_DOT_DOT] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_async] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_gen] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_impl] = ACTIONS(2949), - [anon_sym_let] = ACTIONS(2949), - [anon_sym_loop] = ACTIONS(2949), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_mod] = ACTIONS(2949), - [anon_sym_pub] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_static] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_trait] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_use] = ACTIONS(2949), - [anon_sym_while] = ACTIONS(2949), - [anon_sym_extern] = ACTIONS(2949), - [anon_sym_raw] = ACTIONS(2949), - [anon_sym_yield] = ACTIONS(2949), - [anon_sym_move] = ACTIONS(2949), - [anon_sym_try] = ACTIONS(2949), - [sym_integer_literal] = ACTIONS(2947), - [aux_sym_string_literal_token1] = ACTIONS(2947), - [sym_char_literal] = ACTIONS(2947), - [anon_sym_true] = ACTIONS(2949), - [anon_sym_false] = ACTIONS(2949), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2949), - [sym_super] = ACTIONS(2949), - [sym_crate] = ACTIONS(2949), - [sym_metavariable] = ACTIONS(2947), - [sym__raw_string_literal_start] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(1527), + [sym_identifier] = ACTIONS(1529), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_macro_rules_BANG] = ACTIONS(1527), + [anon_sym_LPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1527), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1527), + [anon_sym_STAR] = ACTIONS(1527), + [anon_sym_u8] = ACTIONS(1529), + [anon_sym_i8] = ACTIONS(1529), + [anon_sym_u16] = ACTIONS(1529), + [anon_sym_i16] = ACTIONS(1529), + [anon_sym_u32] = ACTIONS(1529), + [anon_sym_i32] = ACTIONS(1529), + [anon_sym_u64] = ACTIONS(1529), + [anon_sym_i64] = ACTIONS(1529), + [anon_sym_u128] = ACTIONS(1529), + [anon_sym_i128] = ACTIONS(1529), + [anon_sym_isize] = ACTIONS(1529), + [anon_sym_usize] = ACTIONS(1529), + [anon_sym_f32] = ACTIONS(1529), + [anon_sym_f64] = ACTIONS(1529), + [anon_sym_bool] = ACTIONS(1529), + [anon_sym_str] = ACTIONS(1529), + [anon_sym_char] = ACTIONS(1529), + [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_BANG] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_DOT_DOT] = ACTIONS(1527), + [anon_sym_COLON_COLON] = ACTIONS(1527), + [anon_sym_POUND] = ACTIONS(1527), + [anon_sym_SQUOTE] = ACTIONS(1529), + [anon_sym_async] = ACTIONS(1529), + [anon_sym_become] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_default] = ACTIONS(1529), + [anon_sym_enum] = ACTIONS(1529), + [anon_sym_fn] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_gen] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_impl] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_mod] = ACTIONS(1529), + [anon_sym_pub] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_static] = ACTIONS(1529), + [anon_sym_struct] = ACTIONS(1529), + [anon_sym_trait] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1529), + [anon_sym_union] = ACTIONS(1529), + [anon_sym_unsafe] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_raw] = ACTIONS(1529), + [anon_sym_yield] = ACTIONS(1529), + [anon_sym_move] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [sym_integer_literal] = ACTIONS(1527), + [aux_sym_string_literal_token1] = ACTIONS(1527), + [sym_char_literal] = ACTIONS(1527), + [anon_sym_true] = ACTIONS(1529), + [anon_sym_false] = ACTIONS(1529), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1529), + [sym_super] = ACTIONS(1529), + [sym_crate] = ACTIONS(1529), + [sym_metavariable] = ACTIONS(1527), + [sym__raw_string_literal_start] = ACTIONS(1527), + [sym_float_literal] = ACTIONS(1527), }, [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2951), - [sym_identifier] = ACTIONS(2953), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_macro_rules_BANG] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_u8] = ACTIONS(2953), - [anon_sym_i8] = ACTIONS(2953), - [anon_sym_u16] = ACTIONS(2953), - [anon_sym_i16] = ACTIONS(2953), - [anon_sym_u32] = ACTIONS(2953), - [anon_sym_i32] = ACTIONS(2953), - [anon_sym_u64] = ACTIONS(2953), - [anon_sym_i64] = ACTIONS(2953), - [anon_sym_u128] = ACTIONS(2953), - [anon_sym_i128] = ACTIONS(2953), - [anon_sym_isize] = ACTIONS(2953), - [anon_sym_usize] = ACTIONS(2953), - [anon_sym_f32] = ACTIONS(2953), - [anon_sym_f64] = ACTIONS(2953), - [anon_sym_bool] = ACTIONS(2953), - [anon_sym_str] = ACTIONS(2953), - [anon_sym_char] = ACTIONS(2953), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_async] = ACTIONS(2953), - [anon_sym_break] = ACTIONS(2953), - [anon_sym_const] = ACTIONS(2953), - [anon_sym_continue] = ACTIONS(2953), - [anon_sym_default] = ACTIONS(2953), - [anon_sym_enum] = ACTIONS(2953), - [anon_sym_fn] = ACTIONS(2953), - [anon_sym_for] = ACTIONS(2953), - [anon_sym_gen] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2953), - [anon_sym_impl] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2953), - [anon_sym_loop] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2953), - [anon_sym_mod] = ACTIONS(2953), - [anon_sym_pub] = ACTIONS(2953), - [anon_sym_return] = ACTIONS(2953), - [anon_sym_static] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2953), - [anon_sym_trait] = ACTIONS(2953), - [anon_sym_type] = ACTIONS(2953), - [anon_sym_union] = ACTIONS(2953), - [anon_sym_unsafe] = ACTIONS(2953), - [anon_sym_use] = ACTIONS(2953), - [anon_sym_while] = ACTIONS(2953), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym_raw] = ACTIONS(2953), - [anon_sym_yield] = ACTIONS(2953), - [anon_sym_move] = ACTIONS(2953), - [anon_sym_try] = ACTIONS(2953), - [sym_integer_literal] = ACTIONS(2951), - [aux_sym_string_literal_token1] = ACTIONS(2951), - [sym_char_literal] = ACTIONS(2951), - [anon_sym_true] = ACTIONS(2953), - [anon_sym_false] = ACTIONS(2953), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2953), - [sym_super] = ACTIONS(2953), - [sym_crate] = ACTIONS(2953), - [sym_metavariable] = ACTIONS(2951), - [sym__raw_string_literal_start] = ACTIONS(2951), - [sym_float_literal] = ACTIONS(2951), + [ts_builtin_sym_end] = ACTIONS(2844), + [sym_identifier] = ACTIONS(2846), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_macro_rules_BANG] = ACTIONS(2844), + [anon_sym_LPAREN] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(2844), + [anon_sym_LBRACE] = ACTIONS(2844), + [anon_sym_RBRACE] = ACTIONS(2844), + [anon_sym_STAR] = ACTIONS(2844), + [anon_sym_u8] = ACTIONS(2846), + [anon_sym_i8] = ACTIONS(2846), + [anon_sym_u16] = ACTIONS(2846), + [anon_sym_i16] = ACTIONS(2846), + [anon_sym_u32] = ACTIONS(2846), + [anon_sym_i32] = ACTIONS(2846), + [anon_sym_u64] = ACTIONS(2846), + [anon_sym_i64] = ACTIONS(2846), + [anon_sym_u128] = ACTIONS(2846), + [anon_sym_i128] = ACTIONS(2846), + [anon_sym_isize] = ACTIONS(2846), + [anon_sym_usize] = ACTIONS(2846), + [anon_sym_f32] = ACTIONS(2846), + [anon_sym_f64] = ACTIONS(2846), + [anon_sym_bool] = ACTIONS(2846), + [anon_sym_str] = ACTIONS(2846), + [anon_sym_char] = ACTIONS(2846), + [anon_sym_DASH] = ACTIONS(2844), + [anon_sym_BANG] = ACTIONS(2844), + [anon_sym_AMP] = ACTIONS(2844), + [anon_sym_PIPE] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2844), + [anon_sym_DOT_DOT] = ACTIONS(2844), + [anon_sym_COLON_COLON] = ACTIONS(2844), + [anon_sym_POUND] = ACTIONS(2844), + [anon_sym_SQUOTE] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2846), + [anon_sym_become] = ACTIONS(2846), + [anon_sym_break] = ACTIONS(2846), + [anon_sym_const] = ACTIONS(2846), + [anon_sym_continue] = ACTIONS(2846), + [anon_sym_default] = ACTIONS(2846), + [anon_sym_enum] = ACTIONS(2846), + [anon_sym_fn] = ACTIONS(2846), + [anon_sym_for] = ACTIONS(2846), + [anon_sym_gen] = ACTIONS(2846), + [anon_sym_if] = ACTIONS(2846), + [anon_sym_impl] = ACTIONS(2846), + [anon_sym_let] = ACTIONS(2846), + [anon_sym_loop] = ACTIONS(2846), + [anon_sym_match] = ACTIONS(2846), + [anon_sym_mod] = ACTIONS(2846), + [anon_sym_pub] = ACTIONS(2846), + [anon_sym_return] = ACTIONS(2846), + [anon_sym_static] = ACTIONS(2846), + [anon_sym_struct] = ACTIONS(2846), + [anon_sym_trait] = ACTIONS(2846), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_union] = ACTIONS(2846), + [anon_sym_unsafe] = ACTIONS(2846), + [anon_sym_use] = ACTIONS(2846), + [anon_sym_while] = ACTIONS(2846), + [anon_sym_extern] = ACTIONS(2846), + [anon_sym_raw] = ACTIONS(2846), + [anon_sym_yield] = ACTIONS(2846), + [anon_sym_move] = ACTIONS(2846), + [anon_sym_try] = ACTIONS(2846), + [sym_integer_literal] = ACTIONS(2844), + [aux_sym_string_literal_token1] = ACTIONS(2844), + [sym_char_literal] = ACTIONS(2844), + [anon_sym_true] = ACTIONS(2846), + [anon_sym_false] = ACTIONS(2846), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2846), + [sym_super] = ACTIONS(2846), + [sym_crate] = ACTIONS(2846), + [sym_metavariable] = ACTIONS(2844), + [sym__raw_string_literal_start] = ACTIONS(2844), + [sym_float_literal] = ACTIONS(2844), }, [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2955), - [sym_identifier] = ACTIONS(2957), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_macro_rules_BANG] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_u8] = ACTIONS(2957), - [anon_sym_i8] = ACTIONS(2957), - [anon_sym_u16] = ACTIONS(2957), - [anon_sym_i16] = ACTIONS(2957), - [anon_sym_u32] = ACTIONS(2957), - [anon_sym_i32] = ACTIONS(2957), - [anon_sym_u64] = ACTIONS(2957), - [anon_sym_i64] = ACTIONS(2957), - [anon_sym_u128] = ACTIONS(2957), - [anon_sym_i128] = ACTIONS(2957), - [anon_sym_isize] = ACTIONS(2957), - [anon_sym_usize] = ACTIONS(2957), - [anon_sym_f32] = ACTIONS(2957), - [anon_sym_f64] = ACTIONS(2957), - [anon_sym_bool] = ACTIONS(2957), - [anon_sym_str] = ACTIONS(2957), - [anon_sym_char] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_DOT_DOT] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(2957), - [anon_sym_break] = ACTIONS(2957), - [anon_sym_const] = ACTIONS(2957), - [anon_sym_continue] = ACTIONS(2957), - [anon_sym_default] = ACTIONS(2957), - [anon_sym_enum] = ACTIONS(2957), - [anon_sym_fn] = ACTIONS(2957), - [anon_sym_for] = ACTIONS(2957), - [anon_sym_gen] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2957), - [anon_sym_impl] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2957), - [anon_sym_loop] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2957), - [anon_sym_mod] = ACTIONS(2957), - [anon_sym_pub] = ACTIONS(2957), - [anon_sym_return] = ACTIONS(2957), - [anon_sym_static] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2957), - [anon_sym_trait] = ACTIONS(2957), - [anon_sym_type] = ACTIONS(2957), - [anon_sym_union] = ACTIONS(2957), - [anon_sym_unsafe] = ACTIONS(2957), - [anon_sym_use] = ACTIONS(2957), - [anon_sym_while] = ACTIONS(2957), - [anon_sym_extern] = ACTIONS(2957), - [anon_sym_raw] = ACTIONS(2957), - [anon_sym_yield] = ACTIONS(2957), - [anon_sym_move] = ACTIONS(2957), - [anon_sym_try] = ACTIONS(2957), - [sym_integer_literal] = ACTIONS(2955), - [aux_sym_string_literal_token1] = ACTIONS(2955), - [sym_char_literal] = ACTIONS(2955), - [anon_sym_true] = ACTIONS(2957), - [anon_sym_false] = ACTIONS(2957), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2957), - [sym_super] = ACTIONS(2957), - [sym_crate] = ACTIONS(2957), - [sym_metavariable] = ACTIONS(2955), - [sym__raw_string_literal_start] = ACTIONS(2955), - [sym_float_literal] = ACTIONS(2955), + [ts_builtin_sym_end] = ACTIONS(2848), + [sym_identifier] = ACTIONS(2850), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_macro_rules_BANG] = ACTIONS(2848), + [anon_sym_LPAREN] = ACTIONS(2848), + [anon_sym_LBRACK] = ACTIONS(2848), + [anon_sym_LBRACE] = ACTIONS(2848), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_STAR] = ACTIONS(2848), + [anon_sym_u8] = ACTIONS(2850), + [anon_sym_i8] = ACTIONS(2850), + [anon_sym_u16] = ACTIONS(2850), + [anon_sym_i16] = ACTIONS(2850), + [anon_sym_u32] = ACTIONS(2850), + [anon_sym_i32] = ACTIONS(2850), + [anon_sym_u64] = ACTIONS(2850), + [anon_sym_i64] = ACTIONS(2850), + [anon_sym_u128] = ACTIONS(2850), + [anon_sym_i128] = ACTIONS(2850), + [anon_sym_isize] = ACTIONS(2850), + [anon_sym_usize] = ACTIONS(2850), + [anon_sym_f32] = ACTIONS(2850), + [anon_sym_f64] = ACTIONS(2850), + [anon_sym_bool] = ACTIONS(2850), + [anon_sym_str] = ACTIONS(2850), + [anon_sym_char] = ACTIONS(2850), + [anon_sym_DASH] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(2848), + [anon_sym_AMP] = ACTIONS(2848), + [anon_sym_PIPE] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2848), + [anon_sym_DOT_DOT] = ACTIONS(2848), + [anon_sym_COLON_COLON] = ACTIONS(2848), + [anon_sym_POUND] = ACTIONS(2848), + [anon_sym_SQUOTE] = ACTIONS(2850), + [anon_sym_async] = ACTIONS(2850), + [anon_sym_become] = ACTIONS(2850), + [anon_sym_break] = ACTIONS(2850), + [anon_sym_const] = ACTIONS(2850), + [anon_sym_continue] = ACTIONS(2850), + [anon_sym_default] = ACTIONS(2850), + [anon_sym_enum] = ACTIONS(2850), + [anon_sym_fn] = ACTIONS(2850), + [anon_sym_for] = ACTIONS(2850), + [anon_sym_gen] = ACTIONS(2850), + [anon_sym_if] = ACTIONS(2850), + [anon_sym_impl] = ACTIONS(2850), + [anon_sym_let] = ACTIONS(2850), + [anon_sym_loop] = ACTIONS(2850), + [anon_sym_match] = ACTIONS(2850), + [anon_sym_mod] = ACTIONS(2850), + [anon_sym_pub] = ACTIONS(2850), + [anon_sym_return] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(2850), + [anon_sym_struct] = ACTIONS(2850), + [anon_sym_trait] = ACTIONS(2850), + [anon_sym_type] = ACTIONS(2850), + [anon_sym_union] = ACTIONS(2850), + [anon_sym_unsafe] = ACTIONS(2850), + [anon_sym_use] = ACTIONS(2850), + [anon_sym_while] = ACTIONS(2850), + [anon_sym_extern] = ACTIONS(2850), + [anon_sym_raw] = ACTIONS(2850), + [anon_sym_yield] = ACTIONS(2850), + [anon_sym_move] = ACTIONS(2850), + [anon_sym_try] = ACTIONS(2850), + [sym_integer_literal] = ACTIONS(2848), + [aux_sym_string_literal_token1] = ACTIONS(2848), + [sym_char_literal] = ACTIONS(2848), + [anon_sym_true] = ACTIONS(2850), + [anon_sym_false] = ACTIONS(2850), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2850), + [sym_super] = ACTIONS(2850), + [sym_crate] = ACTIONS(2850), + [sym_metavariable] = ACTIONS(2848), + [sym__raw_string_literal_start] = ACTIONS(2848), + [sym_float_literal] = ACTIONS(2848), }, [STATE(760)] = { [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2959), - [sym_identifier] = ACTIONS(2961), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_macro_rules_BANG] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_u8] = ACTIONS(2961), - [anon_sym_i8] = ACTIONS(2961), - [anon_sym_u16] = ACTIONS(2961), - [anon_sym_i16] = ACTIONS(2961), - [anon_sym_u32] = ACTIONS(2961), - [anon_sym_i32] = ACTIONS(2961), - [anon_sym_u64] = ACTIONS(2961), - [anon_sym_i64] = ACTIONS(2961), - [anon_sym_u128] = ACTIONS(2961), - [anon_sym_i128] = ACTIONS(2961), - [anon_sym_isize] = ACTIONS(2961), - [anon_sym_usize] = ACTIONS(2961), - [anon_sym_f32] = ACTIONS(2961), - [anon_sym_f64] = ACTIONS(2961), - [anon_sym_bool] = ACTIONS(2961), - [anon_sym_str] = ACTIONS(2961), - [anon_sym_char] = ACTIONS(2961), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_DOT_DOT] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_async] = ACTIONS(2961), - [anon_sym_break] = ACTIONS(2961), - [anon_sym_const] = ACTIONS(2961), - [anon_sym_continue] = ACTIONS(2961), - [anon_sym_default] = ACTIONS(2961), - [anon_sym_enum] = ACTIONS(2961), - [anon_sym_fn] = ACTIONS(2961), - [anon_sym_for] = ACTIONS(2961), - [anon_sym_gen] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2961), - [anon_sym_impl] = ACTIONS(2961), - [anon_sym_let] = ACTIONS(2961), - [anon_sym_loop] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2961), - [anon_sym_mod] = ACTIONS(2961), - [anon_sym_pub] = ACTIONS(2961), - [anon_sym_return] = ACTIONS(2961), - [anon_sym_static] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2961), - [anon_sym_trait] = ACTIONS(2961), - [anon_sym_type] = ACTIONS(2961), - [anon_sym_union] = ACTIONS(2961), - [anon_sym_unsafe] = ACTIONS(2961), - [anon_sym_use] = ACTIONS(2961), - [anon_sym_while] = ACTIONS(2961), - [anon_sym_extern] = ACTIONS(2961), - [anon_sym_raw] = ACTIONS(2961), - [anon_sym_yield] = ACTIONS(2961), - [anon_sym_move] = ACTIONS(2961), - [anon_sym_try] = ACTIONS(2961), - [sym_integer_literal] = ACTIONS(2959), - [aux_sym_string_literal_token1] = ACTIONS(2959), - [sym_char_literal] = ACTIONS(2959), - [anon_sym_true] = ACTIONS(2961), - [anon_sym_false] = ACTIONS(2961), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2961), - [sym_super] = ACTIONS(2961), - [sym_crate] = ACTIONS(2961), - [sym_metavariable] = ACTIONS(2959), - [sym__raw_string_literal_start] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), + [ts_builtin_sym_end] = ACTIONS(2852), + [sym_identifier] = ACTIONS(2854), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_macro_rules_BANG] = ACTIONS(2852), + [anon_sym_LPAREN] = ACTIONS(2852), + [anon_sym_LBRACK] = ACTIONS(2852), + [anon_sym_LBRACE] = ACTIONS(2852), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_STAR] = ACTIONS(2852), + [anon_sym_u8] = ACTIONS(2854), + [anon_sym_i8] = ACTIONS(2854), + [anon_sym_u16] = ACTIONS(2854), + [anon_sym_i16] = ACTIONS(2854), + [anon_sym_u32] = ACTIONS(2854), + [anon_sym_i32] = ACTIONS(2854), + [anon_sym_u64] = ACTIONS(2854), + [anon_sym_i64] = ACTIONS(2854), + [anon_sym_u128] = ACTIONS(2854), + [anon_sym_i128] = ACTIONS(2854), + [anon_sym_isize] = ACTIONS(2854), + [anon_sym_usize] = ACTIONS(2854), + [anon_sym_f32] = ACTIONS(2854), + [anon_sym_f64] = ACTIONS(2854), + [anon_sym_bool] = ACTIONS(2854), + [anon_sym_str] = ACTIONS(2854), + [anon_sym_char] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2852), + [anon_sym_BANG] = ACTIONS(2852), + [anon_sym_AMP] = ACTIONS(2852), + [anon_sym_PIPE] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2852), + [anon_sym_DOT_DOT] = ACTIONS(2852), + [anon_sym_COLON_COLON] = ACTIONS(2852), + [anon_sym_POUND] = ACTIONS(2852), + [anon_sym_SQUOTE] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(2854), + [anon_sym_become] = ACTIONS(2854), + [anon_sym_break] = ACTIONS(2854), + [anon_sym_const] = ACTIONS(2854), + [anon_sym_continue] = ACTIONS(2854), + [anon_sym_default] = ACTIONS(2854), + [anon_sym_enum] = ACTIONS(2854), + [anon_sym_fn] = ACTIONS(2854), + [anon_sym_for] = ACTIONS(2854), + [anon_sym_gen] = ACTIONS(2854), + [anon_sym_if] = ACTIONS(2854), + [anon_sym_impl] = ACTIONS(2854), + [anon_sym_let] = ACTIONS(2854), + [anon_sym_loop] = ACTIONS(2854), + [anon_sym_match] = ACTIONS(2854), + [anon_sym_mod] = ACTIONS(2854), + [anon_sym_pub] = ACTIONS(2854), + [anon_sym_return] = ACTIONS(2854), + [anon_sym_static] = ACTIONS(2854), + [anon_sym_struct] = ACTIONS(2854), + [anon_sym_trait] = ACTIONS(2854), + [anon_sym_type] = ACTIONS(2854), + [anon_sym_union] = ACTIONS(2854), + [anon_sym_unsafe] = ACTIONS(2854), + [anon_sym_use] = ACTIONS(2854), + [anon_sym_while] = ACTIONS(2854), + [anon_sym_extern] = ACTIONS(2854), + [anon_sym_raw] = ACTIONS(2854), + [anon_sym_yield] = ACTIONS(2854), + [anon_sym_move] = ACTIONS(2854), + [anon_sym_try] = ACTIONS(2854), + [sym_integer_literal] = ACTIONS(2852), + [aux_sym_string_literal_token1] = ACTIONS(2852), + [sym_char_literal] = ACTIONS(2852), + [anon_sym_true] = ACTIONS(2854), + [anon_sym_false] = ACTIONS(2854), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2854), + [sym_super] = ACTIONS(2854), + [sym_crate] = ACTIONS(2854), + [sym_metavariable] = ACTIONS(2852), + [sym__raw_string_literal_start] = ACTIONS(2852), + [sym_float_literal] = ACTIONS(2852), }, [STATE(761)] = { [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2963), - [sym_identifier] = ACTIONS(2965), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_macro_rules_BANG] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_u8] = ACTIONS(2965), - [anon_sym_i8] = ACTIONS(2965), - [anon_sym_u16] = ACTIONS(2965), - [anon_sym_i16] = ACTIONS(2965), - [anon_sym_u32] = ACTIONS(2965), - [anon_sym_i32] = ACTIONS(2965), - [anon_sym_u64] = ACTIONS(2965), - [anon_sym_i64] = ACTIONS(2965), - [anon_sym_u128] = ACTIONS(2965), - [anon_sym_i128] = ACTIONS(2965), - [anon_sym_isize] = ACTIONS(2965), - [anon_sym_usize] = ACTIONS(2965), - [anon_sym_f32] = ACTIONS(2965), - [anon_sym_f64] = ACTIONS(2965), - [anon_sym_bool] = ACTIONS(2965), - [anon_sym_str] = ACTIONS(2965), - [anon_sym_char] = ACTIONS(2965), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_DOT_DOT] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_async] = ACTIONS(2965), - [anon_sym_break] = ACTIONS(2965), - [anon_sym_const] = ACTIONS(2965), - [anon_sym_continue] = ACTIONS(2965), - [anon_sym_default] = ACTIONS(2965), - [anon_sym_enum] = ACTIONS(2965), - [anon_sym_fn] = ACTIONS(2965), - [anon_sym_for] = ACTIONS(2965), - [anon_sym_gen] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2965), - [anon_sym_impl] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2965), - [anon_sym_loop] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2965), - [anon_sym_mod] = ACTIONS(2965), - [anon_sym_pub] = ACTIONS(2965), - [anon_sym_return] = ACTIONS(2965), - [anon_sym_static] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2965), - [anon_sym_trait] = ACTIONS(2965), - [anon_sym_type] = ACTIONS(2965), - [anon_sym_union] = ACTIONS(2965), - [anon_sym_unsafe] = ACTIONS(2965), - [anon_sym_use] = ACTIONS(2965), - [anon_sym_while] = ACTIONS(2965), - [anon_sym_extern] = ACTIONS(2965), - [anon_sym_raw] = ACTIONS(2965), - [anon_sym_yield] = ACTIONS(2965), - [anon_sym_move] = ACTIONS(2965), - [anon_sym_try] = ACTIONS(2965), - [sym_integer_literal] = ACTIONS(2963), - [aux_sym_string_literal_token1] = ACTIONS(2963), - [sym_char_literal] = ACTIONS(2963), - [anon_sym_true] = ACTIONS(2965), - [anon_sym_false] = ACTIONS(2965), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2965), - [sym_super] = ACTIONS(2965), - [sym_crate] = ACTIONS(2965), - [sym_metavariable] = ACTIONS(2963), - [sym__raw_string_literal_start] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), + [ts_builtin_sym_end] = ACTIONS(2856), + [sym_identifier] = ACTIONS(2858), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_macro_rules_BANG] = ACTIONS(2856), + [anon_sym_LPAREN] = ACTIONS(2856), + [anon_sym_LBRACK] = ACTIONS(2856), + [anon_sym_LBRACE] = ACTIONS(2856), + [anon_sym_RBRACE] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2856), + [anon_sym_u8] = ACTIONS(2858), + [anon_sym_i8] = ACTIONS(2858), + [anon_sym_u16] = ACTIONS(2858), + [anon_sym_i16] = ACTIONS(2858), + [anon_sym_u32] = ACTIONS(2858), + [anon_sym_i32] = ACTIONS(2858), + [anon_sym_u64] = ACTIONS(2858), + [anon_sym_i64] = ACTIONS(2858), + [anon_sym_u128] = ACTIONS(2858), + [anon_sym_i128] = ACTIONS(2858), + [anon_sym_isize] = ACTIONS(2858), + [anon_sym_usize] = ACTIONS(2858), + [anon_sym_f32] = ACTIONS(2858), + [anon_sym_f64] = ACTIONS(2858), + [anon_sym_bool] = ACTIONS(2858), + [anon_sym_str] = ACTIONS(2858), + [anon_sym_char] = ACTIONS(2858), + [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_AMP] = ACTIONS(2856), + [anon_sym_PIPE] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2856), + [anon_sym_DOT_DOT] = ACTIONS(2856), + [anon_sym_COLON_COLON] = ACTIONS(2856), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_SQUOTE] = ACTIONS(2858), + [anon_sym_async] = ACTIONS(2858), + [anon_sym_become] = ACTIONS(2858), + [anon_sym_break] = ACTIONS(2858), + [anon_sym_const] = ACTIONS(2858), + [anon_sym_continue] = ACTIONS(2858), + [anon_sym_default] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2858), + [anon_sym_fn] = ACTIONS(2858), + [anon_sym_for] = ACTIONS(2858), + [anon_sym_gen] = ACTIONS(2858), + [anon_sym_if] = ACTIONS(2858), + [anon_sym_impl] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2858), + [anon_sym_loop] = ACTIONS(2858), + [anon_sym_match] = ACTIONS(2858), + [anon_sym_mod] = ACTIONS(2858), + [anon_sym_pub] = ACTIONS(2858), + [anon_sym_return] = ACTIONS(2858), + [anon_sym_static] = ACTIONS(2858), + [anon_sym_struct] = ACTIONS(2858), + [anon_sym_trait] = ACTIONS(2858), + [anon_sym_type] = ACTIONS(2858), + [anon_sym_union] = ACTIONS(2858), + [anon_sym_unsafe] = ACTIONS(2858), + [anon_sym_use] = ACTIONS(2858), + [anon_sym_while] = ACTIONS(2858), + [anon_sym_extern] = ACTIONS(2858), + [anon_sym_raw] = ACTIONS(2858), + [anon_sym_yield] = ACTIONS(2858), + [anon_sym_move] = ACTIONS(2858), + [anon_sym_try] = ACTIONS(2858), + [sym_integer_literal] = ACTIONS(2856), + [aux_sym_string_literal_token1] = ACTIONS(2856), + [sym_char_literal] = ACTIONS(2856), + [anon_sym_true] = ACTIONS(2858), + [anon_sym_false] = ACTIONS(2858), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2858), + [sym_super] = ACTIONS(2858), + [sym_crate] = ACTIONS(2858), + [sym_metavariable] = ACTIONS(2856), + [sym__raw_string_literal_start] = ACTIONS(2856), + [sym_float_literal] = ACTIONS(2856), }, [STATE(762)] = { [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(2967), - [sym_identifier] = ACTIONS(2969), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_macro_rules_BANG] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_DOT_DOT] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(2969), - [anon_sym_break] = ACTIONS(2969), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_continue] = ACTIONS(2969), - [anon_sym_default] = ACTIONS(2969), - [anon_sym_enum] = ACTIONS(2969), - [anon_sym_fn] = ACTIONS(2969), - [anon_sym_for] = ACTIONS(2969), - [anon_sym_gen] = ACTIONS(2969), - [anon_sym_if] = ACTIONS(2969), - [anon_sym_impl] = ACTIONS(2969), - [anon_sym_let] = ACTIONS(2969), - [anon_sym_loop] = ACTIONS(2969), - [anon_sym_match] = ACTIONS(2969), - [anon_sym_mod] = ACTIONS(2969), - [anon_sym_pub] = ACTIONS(2969), - [anon_sym_return] = ACTIONS(2969), - [anon_sym_static] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2969), - [anon_sym_trait] = ACTIONS(2969), - [anon_sym_type] = ACTIONS(2969), - [anon_sym_union] = ACTIONS(2969), - [anon_sym_unsafe] = ACTIONS(2969), - [anon_sym_use] = ACTIONS(2969), - [anon_sym_while] = ACTIONS(2969), - [anon_sym_extern] = ACTIONS(2969), - [anon_sym_raw] = ACTIONS(2969), - [anon_sym_yield] = ACTIONS(2969), - [anon_sym_move] = ACTIONS(2969), - [anon_sym_try] = ACTIONS(2969), - [sym_integer_literal] = ACTIONS(2967), - [aux_sym_string_literal_token1] = ACTIONS(2967), - [sym_char_literal] = ACTIONS(2967), - [anon_sym_true] = ACTIONS(2969), - [anon_sym_false] = ACTIONS(2969), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2969), - [sym_super] = ACTIONS(2969), - [sym_crate] = ACTIONS(2969), - [sym_metavariable] = ACTIONS(2967), - [sym__raw_string_literal_start] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), + [ts_builtin_sym_end] = ACTIONS(2860), + [sym_identifier] = ACTIONS(2862), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_macro_rules_BANG] = ACTIONS(2860), + [anon_sym_LPAREN] = ACTIONS(2860), + [anon_sym_LBRACK] = ACTIONS(2860), + [anon_sym_LBRACE] = ACTIONS(2860), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_STAR] = ACTIONS(2860), + [anon_sym_u8] = ACTIONS(2862), + [anon_sym_i8] = ACTIONS(2862), + [anon_sym_u16] = ACTIONS(2862), + [anon_sym_i16] = ACTIONS(2862), + [anon_sym_u32] = ACTIONS(2862), + [anon_sym_i32] = ACTIONS(2862), + [anon_sym_u64] = ACTIONS(2862), + [anon_sym_i64] = ACTIONS(2862), + [anon_sym_u128] = ACTIONS(2862), + [anon_sym_i128] = ACTIONS(2862), + [anon_sym_isize] = ACTIONS(2862), + [anon_sym_usize] = ACTIONS(2862), + [anon_sym_f32] = ACTIONS(2862), + [anon_sym_f64] = ACTIONS(2862), + [anon_sym_bool] = ACTIONS(2862), + [anon_sym_str] = ACTIONS(2862), + [anon_sym_char] = ACTIONS(2862), + [anon_sym_DASH] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(2860), + [anon_sym_AMP] = ACTIONS(2860), + [anon_sym_PIPE] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2860), + [anon_sym_DOT_DOT] = ACTIONS(2860), + [anon_sym_COLON_COLON] = ACTIONS(2860), + [anon_sym_POUND] = ACTIONS(2860), + [anon_sym_SQUOTE] = ACTIONS(2862), + [anon_sym_async] = ACTIONS(2862), + [anon_sym_become] = ACTIONS(2862), + [anon_sym_break] = ACTIONS(2862), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_continue] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2862), + [anon_sym_enum] = ACTIONS(2862), + [anon_sym_fn] = ACTIONS(2862), + [anon_sym_for] = ACTIONS(2862), + [anon_sym_gen] = ACTIONS(2862), + [anon_sym_if] = ACTIONS(2862), + [anon_sym_impl] = ACTIONS(2862), + [anon_sym_let] = ACTIONS(2862), + [anon_sym_loop] = ACTIONS(2862), + [anon_sym_match] = ACTIONS(2862), + [anon_sym_mod] = ACTIONS(2862), + [anon_sym_pub] = ACTIONS(2862), + [anon_sym_return] = ACTIONS(2862), + [anon_sym_static] = ACTIONS(2862), + [anon_sym_struct] = ACTIONS(2862), + [anon_sym_trait] = ACTIONS(2862), + [anon_sym_type] = ACTIONS(2862), + [anon_sym_union] = ACTIONS(2862), + [anon_sym_unsafe] = ACTIONS(2862), + [anon_sym_use] = ACTIONS(2862), + [anon_sym_while] = ACTIONS(2862), + [anon_sym_extern] = ACTIONS(2862), + [anon_sym_raw] = ACTIONS(2862), + [anon_sym_yield] = ACTIONS(2862), + [anon_sym_move] = ACTIONS(2862), + [anon_sym_try] = ACTIONS(2862), + [sym_integer_literal] = ACTIONS(2860), + [aux_sym_string_literal_token1] = ACTIONS(2860), + [sym_char_literal] = ACTIONS(2860), + [anon_sym_true] = ACTIONS(2862), + [anon_sym_false] = ACTIONS(2862), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2862), + [sym_super] = ACTIONS(2862), + [sym_crate] = ACTIONS(2862), + [sym_metavariable] = ACTIONS(2860), + [sym__raw_string_literal_start] = ACTIONS(2860), + [sym_float_literal] = ACTIONS(2860), }, [STATE(763)] = { [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(2971), - [sym_identifier] = ACTIONS(2973), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_macro_rules_BANG] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_STAR] = ACTIONS(2971), - [anon_sym_u8] = ACTIONS(2973), - [anon_sym_i8] = ACTIONS(2973), - [anon_sym_u16] = ACTIONS(2973), - [anon_sym_i16] = ACTIONS(2973), - [anon_sym_u32] = ACTIONS(2973), - [anon_sym_i32] = ACTIONS(2973), - [anon_sym_u64] = ACTIONS(2973), - [anon_sym_i64] = ACTIONS(2973), - [anon_sym_u128] = ACTIONS(2973), - [anon_sym_i128] = ACTIONS(2973), - [anon_sym_isize] = ACTIONS(2973), - [anon_sym_usize] = ACTIONS(2973), - [anon_sym_f32] = ACTIONS(2973), - [anon_sym_f64] = ACTIONS(2973), - [anon_sym_bool] = ACTIONS(2973), - [anon_sym_str] = ACTIONS(2973), - [anon_sym_char] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_BANG] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_DOT_DOT] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_default] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_gen] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_impl] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_loop] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_mod] = ACTIONS(2973), - [anon_sym_pub] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_static] = ACTIONS(2973), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_trait] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_use] = ACTIONS(2973), - [anon_sym_while] = ACTIONS(2973), - [anon_sym_extern] = ACTIONS(2973), - [anon_sym_raw] = ACTIONS(2973), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_move] = ACTIONS(2973), - [anon_sym_try] = ACTIONS(2973), - [sym_integer_literal] = ACTIONS(2971), - [aux_sym_string_literal_token1] = ACTIONS(2971), - [sym_char_literal] = ACTIONS(2971), - [anon_sym_true] = ACTIONS(2973), - [anon_sym_false] = ACTIONS(2973), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2973), - [sym_super] = ACTIONS(2973), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(2971), - [sym__raw_string_literal_start] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), + [ts_builtin_sym_end] = ACTIONS(2864), + [sym_identifier] = ACTIONS(2866), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_macro_rules_BANG] = ACTIONS(2864), + [anon_sym_LPAREN] = ACTIONS(2864), + [anon_sym_LBRACK] = ACTIONS(2864), + [anon_sym_LBRACE] = ACTIONS(2864), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_STAR] = ACTIONS(2864), + [anon_sym_u8] = ACTIONS(2866), + [anon_sym_i8] = ACTIONS(2866), + [anon_sym_u16] = ACTIONS(2866), + [anon_sym_i16] = ACTIONS(2866), + [anon_sym_u32] = ACTIONS(2866), + [anon_sym_i32] = ACTIONS(2866), + [anon_sym_u64] = ACTIONS(2866), + [anon_sym_i64] = ACTIONS(2866), + [anon_sym_u128] = ACTIONS(2866), + [anon_sym_i128] = ACTIONS(2866), + [anon_sym_isize] = ACTIONS(2866), + [anon_sym_usize] = ACTIONS(2866), + [anon_sym_f32] = ACTIONS(2866), + [anon_sym_f64] = ACTIONS(2866), + [anon_sym_bool] = ACTIONS(2866), + [anon_sym_str] = ACTIONS(2866), + [anon_sym_char] = ACTIONS(2866), + [anon_sym_DASH] = ACTIONS(2864), + [anon_sym_BANG] = ACTIONS(2864), + [anon_sym_AMP] = ACTIONS(2864), + [anon_sym_PIPE] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2864), + [anon_sym_DOT_DOT] = ACTIONS(2864), + [anon_sym_COLON_COLON] = ACTIONS(2864), + [anon_sym_POUND] = ACTIONS(2864), + [anon_sym_SQUOTE] = ACTIONS(2866), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_become] = ACTIONS(2866), + [anon_sym_break] = ACTIONS(2866), + [anon_sym_const] = ACTIONS(2866), + [anon_sym_continue] = ACTIONS(2866), + [anon_sym_default] = ACTIONS(2866), + [anon_sym_enum] = ACTIONS(2866), + [anon_sym_fn] = ACTIONS(2866), + [anon_sym_for] = ACTIONS(2866), + [anon_sym_gen] = ACTIONS(2866), + [anon_sym_if] = ACTIONS(2866), + [anon_sym_impl] = ACTIONS(2866), + [anon_sym_let] = ACTIONS(2866), + [anon_sym_loop] = ACTIONS(2866), + [anon_sym_match] = ACTIONS(2866), + [anon_sym_mod] = ACTIONS(2866), + [anon_sym_pub] = ACTIONS(2866), + [anon_sym_return] = ACTIONS(2866), + [anon_sym_static] = ACTIONS(2866), + [anon_sym_struct] = ACTIONS(2866), + [anon_sym_trait] = ACTIONS(2866), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_union] = ACTIONS(2866), + [anon_sym_unsafe] = ACTIONS(2866), + [anon_sym_use] = ACTIONS(2866), + [anon_sym_while] = ACTIONS(2866), + [anon_sym_extern] = ACTIONS(2866), + [anon_sym_raw] = ACTIONS(2866), + [anon_sym_yield] = ACTIONS(2866), + [anon_sym_move] = ACTIONS(2866), + [anon_sym_try] = ACTIONS(2866), + [sym_integer_literal] = ACTIONS(2864), + [aux_sym_string_literal_token1] = ACTIONS(2864), + [sym_char_literal] = ACTIONS(2864), + [anon_sym_true] = ACTIONS(2866), + [anon_sym_false] = ACTIONS(2866), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2866), + [sym_super] = ACTIONS(2866), + [sym_crate] = ACTIONS(2866), + [sym_metavariable] = ACTIONS(2864), + [sym__raw_string_literal_start] = ACTIONS(2864), + [sym_float_literal] = ACTIONS(2864), }, [STATE(764)] = { [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_macro_rules_BANG] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_u8] = ACTIONS(2977), - [anon_sym_i8] = ACTIONS(2977), - [anon_sym_u16] = ACTIONS(2977), - [anon_sym_i16] = ACTIONS(2977), - [anon_sym_u32] = ACTIONS(2977), - [anon_sym_i32] = ACTIONS(2977), - [anon_sym_u64] = ACTIONS(2977), - [anon_sym_i64] = ACTIONS(2977), - [anon_sym_u128] = ACTIONS(2977), - [anon_sym_i128] = ACTIONS(2977), - [anon_sym_isize] = ACTIONS(2977), - [anon_sym_usize] = ACTIONS(2977), - [anon_sym_f32] = ACTIONS(2977), - [anon_sym_f64] = ACTIONS(2977), - [anon_sym_bool] = ACTIONS(2977), - [anon_sym_str] = ACTIONS(2977), - [anon_sym_char] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_BANG] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_DOT_DOT] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_POUND] = ACTIONS(2975), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_gen] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_impl] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2977), - [anon_sym_loop] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_mod] = ACTIONS(2977), - [anon_sym_pub] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_static] = ACTIONS(2977), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_trait] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_use] = ACTIONS(2977), - [anon_sym_while] = ACTIONS(2977), - [anon_sym_extern] = ACTIONS(2977), - [anon_sym_raw] = ACTIONS(2977), - [anon_sym_yield] = ACTIONS(2977), - [anon_sym_move] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [sym_integer_literal] = ACTIONS(2975), - [aux_sym_string_literal_token1] = ACTIONS(2975), - [sym_char_literal] = ACTIONS(2975), - [anon_sym_true] = ACTIONS(2977), - [anon_sym_false] = ACTIONS(2977), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2977), - [sym_super] = ACTIONS(2977), - [sym_crate] = ACTIONS(2977), - [sym_metavariable] = ACTIONS(2975), - [sym__raw_string_literal_start] = ACTIONS(2975), - [sym_float_literal] = ACTIONS(2975), + [ts_builtin_sym_end] = ACTIONS(2868), + [sym_identifier] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_macro_rules_BANG] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2868), + [anon_sym_LBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_STAR] = ACTIONS(2868), + [anon_sym_u8] = ACTIONS(2870), + [anon_sym_i8] = ACTIONS(2870), + [anon_sym_u16] = ACTIONS(2870), + [anon_sym_i16] = ACTIONS(2870), + [anon_sym_u32] = ACTIONS(2870), + [anon_sym_i32] = ACTIONS(2870), + [anon_sym_u64] = ACTIONS(2870), + [anon_sym_i64] = ACTIONS(2870), + [anon_sym_u128] = ACTIONS(2870), + [anon_sym_i128] = ACTIONS(2870), + [anon_sym_isize] = ACTIONS(2870), + [anon_sym_usize] = ACTIONS(2870), + [anon_sym_f32] = ACTIONS(2870), + [anon_sym_f64] = ACTIONS(2870), + [anon_sym_bool] = ACTIONS(2870), + [anon_sym_str] = ACTIONS(2870), + [anon_sym_char] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2868), + [anon_sym_BANG] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_DOT_DOT] = ACTIONS(2868), + [anon_sym_COLON_COLON] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_SQUOTE] = ACTIONS(2870), + [anon_sym_async] = ACTIONS(2870), + [anon_sym_become] = ACTIONS(2870), + [anon_sym_break] = ACTIONS(2870), + [anon_sym_const] = ACTIONS(2870), + [anon_sym_continue] = ACTIONS(2870), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_enum] = ACTIONS(2870), + [anon_sym_fn] = ACTIONS(2870), + [anon_sym_for] = ACTIONS(2870), + [anon_sym_gen] = ACTIONS(2870), + [anon_sym_if] = ACTIONS(2870), + [anon_sym_impl] = ACTIONS(2870), + [anon_sym_let] = ACTIONS(2870), + [anon_sym_loop] = ACTIONS(2870), + [anon_sym_match] = ACTIONS(2870), + [anon_sym_mod] = ACTIONS(2870), + [anon_sym_pub] = ACTIONS(2870), + [anon_sym_return] = ACTIONS(2870), + [anon_sym_static] = ACTIONS(2870), + [anon_sym_struct] = ACTIONS(2870), + [anon_sym_trait] = ACTIONS(2870), + [anon_sym_type] = ACTIONS(2870), + [anon_sym_union] = ACTIONS(2870), + [anon_sym_unsafe] = ACTIONS(2870), + [anon_sym_use] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2870), + [anon_sym_extern] = ACTIONS(2870), + [anon_sym_raw] = ACTIONS(2870), + [anon_sym_yield] = ACTIONS(2870), + [anon_sym_move] = ACTIONS(2870), + [anon_sym_try] = ACTIONS(2870), + [sym_integer_literal] = ACTIONS(2868), + [aux_sym_string_literal_token1] = ACTIONS(2868), + [sym_char_literal] = ACTIONS(2868), + [anon_sym_true] = ACTIONS(2870), + [anon_sym_false] = ACTIONS(2870), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2870), + [sym_super] = ACTIONS(2870), + [sym_crate] = ACTIONS(2870), + [sym_metavariable] = ACTIONS(2868), + [sym__raw_string_literal_start] = ACTIONS(2868), + [sym_float_literal] = ACTIONS(2868), }, [STATE(765)] = { [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_macro_rules_BANG] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_RBRACE] = ACTIONS(2979), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_u8] = ACTIONS(2981), - [anon_sym_i8] = ACTIONS(2981), - [anon_sym_u16] = ACTIONS(2981), - [anon_sym_i16] = ACTIONS(2981), - [anon_sym_u32] = ACTIONS(2981), - [anon_sym_i32] = ACTIONS(2981), - [anon_sym_u64] = ACTIONS(2981), - [anon_sym_i64] = ACTIONS(2981), - [anon_sym_u128] = ACTIONS(2981), - [anon_sym_i128] = ACTIONS(2981), - [anon_sym_isize] = ACTIONS(2981), - [anon_sym_usize] = ACTIONS(2981), - [anon_sym_f32] = ACTIONS(2981), - [anon_sym_f64] = ACTIONS(2981), - [anon_sym_bool] = ACTIONS(2981), - [anon_sym_str] = ACTIONS(2981), - [anon_sym_char] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_BANG] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_DOT_DOT] = ACTIONS(2979), - [anon_sym_COLON_COLON] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_async] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_default] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_gen] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_impl] = ACTIONS(2981), - [anon_sym_let] = ACTIONS(2981), - [anon_sym_loop] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_mod] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_static] = ACTIONS(2981), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_trait] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_use] = ACTIONS(2981), - [anon_sym_while] = ACTIONS(2981), - [anon_sym_extern] = ACTIONS(2981), - [anon_sym_raw] = ACTIONS(2981), - [anon_sym_yield] = ACTIONS(2981), - [anon_sym_move] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [sym_integer_literal] = ACTIONS(2979), - [aux_sym_string_literal_token1] = ACTIONS(2979), - [sym_char_literal] = ACTIONS(2979), - [anon_sym_true] = ACTIONS(2981), - [anon_sym_false] = ACTIONS(2981), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2979), - [sym__raw_string_literal_start] = ACTIONS(2979), - [sym_float_literal] = ACTIONS(2979), + [ts_builtin_sym_end] = ACTIONS(2872), + [sym_identifier] = ACTIONS(2874), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_macro_rules_BANG] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2872), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_RBRACE] = ACTIONS(2872), + [anon_sym_STAR] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym_DASH] = ACTIONS(2872), + [anon_sym_BANG] = ACTIONS(2872), + [anon_sym_AMP] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2872), + [anon_sym_DOT_DOT] = ACTIONS(2872), + [anon_sym_COLON_COLON] = ACTIONS(2872), + [anon_sym_POUND] = ACTIONS(2872), + [anon_sym_SQUOTE] = ACTIONS(2874), + [anon_sym_async] = ACTIONS(2874), + [anon_sym_become] = ACTIONS(2874), + [anon_sym_break] = ACTIONS(2874), + [anon_sym_const] = ACTIONS(2874), + [anon_sym_continue] = ACTIONS(2874), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_enum] = ACTIONS(2874), + [anon_sym_fn] = ACTIONS(2874), + [anon_sym_for] = ACTIONS(2874), + [anon_sym_gen] = ACTIONS(2874), + [anon_sym_if] = ACTIONS(2874), + [anon_sym_impl] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_loop] = ACTIONS(2874), + [anon_sym_match] = ACTIONS(2874), + [anon_sym_mod] = ACTIONS(2874), + [anon_sym_pub] = ACTIONS(2874), + [anon_sym_return] = ACTIONS(2874), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_struct] = ACTIONS(2874), + [anon_sym_trait] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_union] = ACTIONS(2874), + [anon_sym_unsafe] = ACTIONS(2874), + [anon_sym_use] = ACTIONS(2874), + [anon_sym_while] = ACTIONS(2874), + [anon_sym_extern] = ACTIONS(2874), + [anon_sym_raw] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(2874), + [anon_sym_move] = ACTIONS(2874), + [anon_sym_try] = ACTIONS(2874), + [sym_integer_literal] = ACTIONS(2872), + [aux_sym_string_literal_token1] = ACTIONS(2872), + [sym_char_literal] = ACTIONS(2872), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2874), + [sym_super] = ACTIONS(2874), + [sym_crate] = ACTIONS(2874), + [sym_metavariable] = ACTIONS(2872), + [sym__raw_string_literal_start] = ACTIONS(2872), + [sym_float_literal] = ACTIONS(2872), }, [STATE(766)] = { [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2983), - [anon_sym_macro_rules_BANG] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_u8] = ACTIONS(2985), - [anon_sym_i8] = ACTIONS(2985), - [anon_sym_u16] = ACTIONS(2985), - [anon_sym_i16] = ACTIONS(2985), - [anon_sym_u32] = ACTIONS(2985), - [anon_sym_i32] = ACTIONS(2985), - [anon_sym_u64] = ACTIONS(2985), - [anon_sym_i64] = ACTIONS(2985), - [anon_sym_u128] = ACTIONS(2985), - [anon_sym_i128] = ACTIONS(2985), - [anon_sym_isize] = ACTIONS(2985), - [anon_sym_usize] = ACTIONS(2985), - [anon_sym_f32] = ACTIONS(2985), - [anon_sym_f64] = ACTIONS(2985), - [anon_sym_bool] = ACTIONS(2985), - [anon_sym_str] = ACTIONS(2985), - [anon_sym_char] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2983), - [anon_sym_BANG] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2983), - [anon_sym_DOT_DOT] = ACTIONS(2983), - [anon_sym_COLON_COLON] = ACTIONS(2983), - [anon_sym_POUND] = ACTIONS(2983), - [anon_sym_SQUOTE] = ACTIONS(2985), - [anon_sym_async] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_default] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_gen] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_impl] = ACTIONS(2985), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_loop] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_mod] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_static] = ACTIONS(2985), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_trait] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_use] = ACTIONS(2985), - [anon_sym_while] = ACTIONS(2985), - [anon_sym_extern] = ACTIONS(2985), - [anon_sym_raw] = ACTIONS(2985), - [anon_sym_yield] = ACTIONS(2985), - [anon_sym_move] = ACTIONS(2985), - [anon_sym_try] = ACTIONS(2985), - [sym_integer_literal] = ACTIONS(2983), - [aux_sym_string_literal_token1] = ACTIONS(2983), - [sym_char_literal] = ACTIONS(2983), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2985), - [sym_super] = ACTIONS(2985), - [sym_crate] = ACTIONS(2985), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(2983), - [sym_float_literal] = ACTIONS(2983), + [ts_builtin_sym_end] = ACTIONS(2876), + [sym_identifier] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_macro_rules_BANG] = ACTIONS(2876), + [anon_sym_LPAREN] = ACTIONS(2876), + [anon_sym_LBRACK] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_STAR] = ACTIONS(2876), + [anon_sym_u8] = ACTIONS(2878), + [anon_sym_i8] = ACTIONS(2878), + [anon_sym_u16] = ACTIONS(2878), + [anon_sym_i16] = ACTIONS(2878), + [anon_sym_u32] = ACTIONS(2878), + [anon_sym_i32] = ACTIONS(2878), + [anon_sym_u64] = ACTIONS(2878), + [anon_sym_i64] = ACTIONS(2878), + [anon_sym_u128] = ACTIONS(2878), + [anon_sym_i128] = ACTIONS(2878), + [anon_sym_isize] = ACTIONS(2878), + [anon_sym_usize] = ACTIONS(2878), + [anon_sym_f32] = ACTIONS(2878), + [anon_sym_f64] = ACTIONS(2878), + [anon_sym_bool] = ACTIONS(2878), + [anon_sym_str] = ACTIONS(2878), + [anon_sym_char] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2876), + [anon_sym_BANG] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_DOT_DOT] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_SQUOTE] = ACTIONS(2878), + [anon_sym_async] = ACTIONS(2878), + [anon_sym_become] = ACTIONS(2878), + [anon_sym_break] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2878), + [anon_sym_continue] = ACTIONS(2878), + [anon_sym_default] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2878), + [anon_sym_fn] = ACTIONS(2878), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_gen] = ACTIONS(2878), + [anon_sym_if] = ACTIONS(2878), + [anon_sym_impl] = ACTIONS(2878), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_loop] = ACTIONS(2878), + [anon_sym_match] = ACTIONS(2878), + [anon_sym_mod] = ACTIONS(2878), + [anon_sym_pub] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2878), + [anon_sym_static] = ACTIONS(2878), + [anon_sym_struct] = ACTIONS(2878), + [anon_sym_trait] = ACTIONS(2878), + [anon_sym_type] = ACTIONS(2878), + [anon_sym_union] = ACTIONS(2878), + [anon_sym_unsafe] = ACTIONS(2878), + [anon_sym_use] = ACTIONS(2878), + [anon_sym_while] = ACTIONS(2878), + [anon_sym_extern] = ACTIONS(2878), + [anon_sym_raw] = ACTIONS(2878), + [anon_sym_yield] = ACTIONS(2878), + [anon_sym_move] = ACTIONS(2878), + [anon_sym_try] = ACTIONS(2878), + [sym_integer_literal] = ACTIONS(2876), + [aux_sym_string_literal_token1] = ACTIONS(2876), + [sym_char_literal] = ACTIONS(2876), + [anon_sym_true] = ACTIONS(2878), + [anon_sym_false] = ACTIONS(2878), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2878), + [sym_super] = ACTIONS(2878), + [sym_crate] = ACTIONS(2878), + [sym_metavariable] = ACTIONS(2876), + [sym__raw_string_literal_start] = ACTIONS(2876), + [sym_float_literal] = ACTIONS(2876), }, [STATE(767)] = { [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_macro_rules_BANG] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_u8] = ACTIONS(2989), - [anon_sym_i8] = ACTIONS(2989), - [anon_sym_u16] = ACTIONS(2989), - [anon_sym_i16] = ACTIONS(2989), - [anon_sym_u32] = ACTIONS(2989), - [anon_sym_i32] = ACTIONS(2989), - [anon_sym_u64] = ACTIONS(2989), - [anon_sym_i64] = ACTIONS(2989), - [anon_sym_u128] = ACTIONS(2989), - [anon_sym_i128] = ACTIONS(2989), - [anon_sym_isize] = ACTIONS(2989), - [anon_sym_usize] = ACTIONS(2989), - [anon_sym_f32] = ACTIONS(2989), - [anon_sym_f64] = ACTIONS(2989), - [anon_sym_bool] = ACTIONS(2989), - [anon_sym_str] = ACTIONS(2989), - [anon_sym_char] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2987), - [anon_sym_BANG] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2987), - [anon_sym_DOT_DOT] = ACTIONS(2987), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2989), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_default] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_gen] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_impl] = ACTIONS(2989), - [anon_sym_let] = ACTIONS(2989), - [anon_sym_loop] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_mod] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_static] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_trait] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_use] = ACTIONS(2989), - [anon_sym_while] = ACTIONS(2989), - [anon_sym_extern] = ACTIONS(2989), - [anon_sym_raw] = ACTIONS(2989), - [anon_sym_yield] = ACTIONS(2989), - [anon_sym_move] = ACTIONS(2989), - [anon_sym_try] = ACTIONS(2989), - [sym_integer_literal] = ACTIONS(2987), - [aux_sym_string_literal_token1] = ACTIONS(2987), - [sym_char_literal] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2989), - [anon_sym_false] = ACTIONS(2989), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2989), - [sym_super] = ACTIONS(2989), - [sym_crate] = ACTIONS(2989), - [sym_metavariable] = ACTIONS(2987), - [sym__raw_string_literal_start] = ACTIONS(2987), - [sym_float_literal] = ACTIONS(2987), + [ts_builtin_sym_end] = ACTIONS(2880), + [sym_identifier] = ACTIONS(2882), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_macro_rules_BANG] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2880), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LBRACE] = ACTIONS(2880), + [anon_sym_RBRACE] = ACTIONS(2880), + [anon_sym_STAR] = ACTIONS(2880), + [anon_sym_u8] = ACTIONS(2882), + [anon_sym_i8] = ACTIONS(2882), + [anon_sym_u16] = ACTIONS(2882), + [anon_sym_i16] = ACTIONS(2882), + [anon_sym_u32] = ACTIONS(2882), + [anon_sym_i32] = ACTIONS(2882), + [anon_sym_u64] = ACTIONS(2882), + [anon_sym_i64] = ACTIONS(2882), + [anon_sym_u128] = ACTIONS(2882), + [anon_sym_i128] = ACTIONS(2882), + [anon_sym_isize] = ACTIONS(2882), + [anon_sym_usize] = ACTIONS(2882), + [anon_sym_f32] = ACTIONS(2882), + [anon_sym_f64] = ACTIONS(2882), + [anon_sym_bool] = ACTIONS(2882), + [anon_sym_str] = ACTIONS(2882), + [anon_sym_char] = ACTIONS(2882), + [anon_sym_DASH] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(2880), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_PIPE] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2880), + [anon_sym_DOT_DOT] = ACTIONS(2880), + [anon_sym_COLON_COLON] = ACTIONS(2880), + [anon_sym_POUND] = ACTIONS(2880), + [anon_sym_SQUOTE] = ACTIONS(2882), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_become] = ACTIONS(2882), + [anon_sym_break] = ACTIONS(2882), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_continue] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2882), + [anon_sym_enum] = ACTIONS(2882), + [anon_sym_fn] = ACTIONS(2882), + [anon_sym_for] = ACTIONS(2882), + [anon_sym_gen] = ACTIONS(2882), + [anon_sym_if] = ACTIONS(2882), + [anon_sym_impl] = ACTIONS(2882), + [anon_sym_let] = ACTIONS(2882), + [anon_sym_loop] = ACTIONS(2882), + [anon_sym_match] = ACTIONS(2882), + [anon_sym_mod] = ACTIONS(2882), + [anon_sym_pub] = ACTIONS(2882), + [anon_sym_return] = ACTIONS(2882), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_struct] = ACTIONS(2882), + [anon_sym_trait] = ACTIONS(2882), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_union] = ACTIONS(2882), + [anon_sym_unsafe] = ACTIONS(2882), + [anon_sym_use] = ACTIONS(2882), + [anon_sym_while] = ACTIONS(2882), + [anon_sym_extern] = ACTIONS(2882), + [anon_sym_raw] = ACTIONS(2882), + [anon_sym_yield] = ACTIONS(2882), + [anon_sym_move] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2882), + [sym_integer_literal] = ACTIONS(2880), + [aux_sym_string_literal_token1] = ACTIONS(2880), + [sym_char_literal] = ACTIONS(2880), + [anon_sym_true] = ACTIONS(2882), + [anon_sym_false] = ACTIONS(2882), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2882), + [sym_super] = ACTIONS(2882), + [sym_crate] = ACTIONS(2882), + [sym_metavariable] = ACTIONS(2880), + [sym__raw_string_literal_start] = ACTIONS(2880), + [sym_float_literal] = ACTIONS(2880), }, [STATE(768)] = { [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_macro_rules_BANG] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_u8] = ACTIONS(2993), - [anon_sym_i8] = ACTIONS(2993), - [anon_sym_u16] = ACTIONS(2993), - [anon_sym_i16] = ACTIONS(2993), - [anon_sym_u32] = ACTIONS(2993), - [anon_sym_i32] = ACTIONS(2993), - [anon_sym_u64] = ACTIONS(2993), - [anon_sym_i64] = ACTIONS(2993), - [anon_sym_u128] = ACTIONS(2993), - [anon_sym_i128] = ACTIONS(2993), - [anon_sym_isize] = ACTIONS(2993), - [anon_sym_usize] = ACTIONS(2993), - [anon_sym_f32] = ACTIONS(2993), - [anon_sym_f64] = ACTIONS(2993), - [anon_sym_bool] = ACTIONS(2993), - [anon_sym_str] = ACTIONS(2993), - [anon_sym_char] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_DOT_DOT] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_async] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_default] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_gen] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_impl] = ACTIONS(2993), - [anon_sym_let] = ACTIONS(2993), - [anon_sym_loop] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_mod] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_static] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_trait] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_use] = ACTIONS(2993), - [anon_sym_while] = ACTIONS(2993), - [anon_sym_extern] = ACTIONS(2993), - [anon_sym_raw] = ACTIONS(2993), - [anon_sym_yield] = ACTIONS(2993), - [anon_sym_move] = ACTIONS(2993), - [anon_sym_try] = ACTIONS(2993), - [sym_integer_literal] = ACTIONS(2991), - [aux_sym_string_literal_token1] = ACTIONS(2991), - [sym_char_literal] = ACTIONS(2991), - [anon_sym_true] = ACTIONS(2993), - [anon_sym_false] = ACTIONS(2993), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2993), - [sym_super] = ACTIONS(2993), - [sym_crate] = ACTIONS(2993), - [sym_metavariable] = ACTIONS(2991), - [sym__raw_string_literal_start] = ACTIONS(2991), - [sym_float_literal] = ACTIONS(2991), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_macro_rules_BANG] = ACTIONS(2884), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_STAR] = ACTIONS(2884), + [anon_sym_u8] = ACTIONS(2886), + [anon_sym_i8] = ACTIONS(2886), + [anon_sym_u16] = ACTIONS(2886), + [anon_sym_i16] = ACTIONS(2886), + [anon_sym_u32] = ACTIONS(2886), + [anon_sym_i32] = ACTIONS(2886), + [anon_sym_u64] = ACTIONS(2886), + [anon_sym_i64] = ACTIONS(2886), + [anon_sym_u128] = ACTIONS(2886), + [anon_sym_i128] = ACTIONS(2886), + [anon_sym_isize] = ACTIONS(2886), + [anon_sym_usize] = ACTIONS(2886), + [anon_sym_f32] = ACTIONS(2886), + [anon_sym_f64] = ACTIONS(2886), + [anon_sym_bool] = ACTIONS(2886), + [anon_sym_str] = ACTIONS(2886), + [anon_sym_char] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2884), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_DOT_DOT] = ACTIONS(2884), + [anon_sym_COLON_COLON] = ACTIONS(2884), + [anon_sym_POUND] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2886), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_become] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), + [anon_sym_fn] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_gen] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_impl] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_loop] = ACTIONS(2886), + [anon_sym_match] = ACTIONS(2886), + [anon_sym_mod] = ACTIONS(2886), + [anon_sym_pub] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_struct] = ACTIONS(2886), + [anon_sym_trait] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_union] = ACTIONS(2886), + [anon_sym_unsafe] = ACTIONS(2886), + [anon_sym_use] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_extern] = ACTIONS(2886), + [anon_sym_raw] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_move] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [sym_integer_literal] = ACTIONS(2884), + [aux_sym_string_literal_token1] = ACTIONS(2884), + [sym_char_literal] = ACTIONS(2884), + [anon_sym_true] = ACTIONS(2886), + [anon_sym_false] = ACTIONS(2886), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2884), + [sym__raw_string_literal_start] = ACTIONS(2884), + [sym_float_literal] = ACTIONS(2884), }, [STATE(769)] = { [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2995), - [anon_sym_macro_rules_BANG] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_RBRACE] = ACTIONS(2995), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_u8] = ACTIONS(2997), - [anon_sym_i8] = ACTIONS(2997), - [anon_sym_u16] = ACTIONS(2997), - [anon_sym_i16] = ACTIONS(2997), - [anon_sym_u32] = ACTIONS(2997), - [anon_sym_i32] = ACTIONS(2997), - [anon_sym_u64] = ACTIONS(2997), - [anon_sym_i64] = ACTIONS(2997), - [anon_sym_u128] = ACTIONS(2997), - [anon_sym_i128] = ACTIONS(2997), - [anon_sym_isize] = ACTIONS(2997), - [anon_sym_usize] = ACTIONS(2997), - [anon_sym_f32] = ACTIONS(2997), - [anon_sym_f64] = ACTIONS(2997), - [anon_sym_bool] = ACTIONS(2997), - [anon_sym_str] = ACTIONS(2997), - [anon_sym_char] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2995), - [anon_sym_BANG] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2995), - [anon_sym_DOT_DOT] = ACTIONS(2995), - [anon_sym_COLON_COLON] = ACTIONS(2995), - [anon_sym_POUND] = ACTIONS(2995), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_async] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_default] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_gen] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_impl] = ACTIONS(2997), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_loop] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_mod] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_static] = ACTIONS(2997), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_trait] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_use] = ACTIONS(2997), - [anon_sym_while] = ACTIONS(2997), - [anon_sym_extern] = ACTIONS(2997), - [anon_sym_raw] = ACTIONS(2997), - [anon_sym_yield] = ACTIONS(2997), - [anon_sym_move] = ACTIONS(2997), - [anon_sym_try] = ACTIONS(2997), - [sym_integer_literal] = ACTIONS(2995), - [aux_sym_string_literal_token1] = ACTIONS(2995), - [sym_char_literal] = ACTIONS(2995), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2997), - [sym_super] = ACTIONS(2997), - [sym_crate] = ACTIONS(2997), - [sym_metavariable] = ACTIONS(2995), - [sym__raw_string_literal_start] = ACTIONS(2995), - [sym_float_literal] = ACTIONS(2995), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_macro_rules_BANG] = ACTIONS(2888), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2888), + [anon_sym_u8] = ACTIONS(2890), + [anon_sym_i8] = ACTIONS(2890), + [anon_sym_u16] = ACTIONS(2890), + [anon_sym_i16] = ACTIONS(2890), + [anon_sym_u32] = ACTIONS(2890), + [anon_sym_i32] = ACTIONS(2890), + [anon_sym_u64] = ACTIONS(2890), + [anon_sym_i64] = ACTIONS(2890), + [anon_sym_u128] = ACTIONS(2890), + [anon_sym_i128] = ACTIONS(2890), + [anon_sym_isize] = ACTIONS(2890), + [anon_sym_usize] = ACTIONS(2890), + [anon_sym_f32] = ACTIONS(2890), + [anon_sym_f64] = ACTIONS(2890), + [anon_sym_bool] = ACTIONS(2890), + [anon_sym_str] = ACTIONS(2890), + [anon_sym_char] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2888), + [anon_sym_DOT_DOT] = ACTIONS(2888), + [anon_sym_COLON_COLON] = ACTIONS(2888), + [anon_sym_POUND] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2890), + [anon_sym_async] = ACTIONS(2890), + [anon_sym_become] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), + [anon_sym_fn] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_gen] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_impl] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2890), + [anon_sym_loop] = ACTIONS(2890), + [anon_sym_match] = ACTIONS(2890), + [anon_sym_mod] = ACTIONS(2890), + [anon_sym_pub] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_struct] = ACTIONS(2890), + [anon_sym_trait] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_union] = ACTIONS(2890), + [anon_sym_unsafe] = ACTIONS(2890), + [anon_sym_use] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_extern] = ACTIONS(2890), + [anon_sym_raw] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2890), + [anon_sym_move] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(2890), + [sym_integer_literal] = ACTIONS(2888), + [aux_sym_string_literal_token1] = ACTIONS(2888), + [sym_char_literal] = ACTIONS(2888), + [anon_sym_true] = ACTIONS(2890), + [anon_sym_false] = ACTIONS(2890), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2890), + [sym_super] = ACTIONS(2890), + [sym_crate] = ACTIONS(2890), + [sym_metavariable] = ACTIONS(2888), + [sym__raw_string_literal_start] = ACTIONS(2888), + [sym_float_literal] = ACTIONS(2888), }, [STATE(770)] = { [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_macro_rules_BANG] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_u8] = ACTIONS(3001), - [anon_sym_i8] = ACTIONS(3001), - [anon_sym_u16] = ACTIONS(3001), - [anon_sym_i16] = ACTIONS(3001), - [anon_sym_u32] = ACTIONS(3001), - [anon_sym_i32] = ACTIONS(3001), - [anon_sym_u64] = ACTIONS(3001), - [anon_sym_i64] = ACTIONS(3001), - [anon_sym_u128] = ACTIONS(3001), - [anon_sym_i128] = ACTIONS(3001), - [anon_sym_isize] = ACTIONS(3001), - [anon_sym_usize] = ACTIONS(3001), - [anon_sym_f32] = ACTIONS(3001), - [anon_sym_f64] = ACTIONS(3001), - [anon_sym_bool] = ACTIONS(3001), - [anon_sym_str] = ACTIONS(3001), - [anon_sym_char] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_BANG] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(2999), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_POUND] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(3001), - [anon_sym_async] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_default] = ACTIONS(3001), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_gen] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_impl] = ACTIONS(3001), - [anon_sym_let] = ACTIONS(3001), - [anon_sym_loop] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_mod] = ACTIONS(3001), - [anon_sym_pub] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_static] = ACTIONS(3001), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_trait] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_union] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_use] = ACTIONS(3001), - [anon_sym_while] = ACTIONS(3001), - [anon_sym_extern] = ACTIONS(3001), - [anon_sym_raw] = ACTIONS(3001), - [anon_sym_yield] = ACTIONS(3001), - [anon_sym_move] = ACTIONS(3001), - [anon_sym_try] = ACTIONS(3001), - [sym_integer_literal] = ACTIONS(2999), - [aux_sym_string_literal_token1] = ACTIONS(2999), - [sym_char_literal] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3001), - [sym_super] = ACTIONS(3001), - [sym_crate] = ACTIONS(3001), - [sym_metavariable] = ACTIONS(2999), - [sym__raw_string_literal_start] = ACTIONS(2999), - [sym_float_literal] = ACTIONS(2999), + [ts_builtin_sym_end] = ACTIONS(2892), + [sym_identifier] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_macro_rules_BANG] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2892), + [anon_sym_LBRACK] = ACTIONS(2892), + [anon_sym_LBRACE] = ACTIONS(2892), + [anon_sym_RBRACE] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_u8] = ACTIONS(2894), + [anon_sym_i8] = ACTIONS(2894), + [anon_sym_u16] = ACTIONS(2894), + [anon_sym_i16] = ACTIONS(2894), + [anon_sym_u32] = ACTIONS(2894), + [anon_sym_i32] = ACTIONS(2894), + [anon_sym_u64] = ACTIONS(2894), + [anon_sym_i64] = ACTIONS(2894), + [anon_sym_u128] = ACTIONS(2894), + [anon_sym_i128] = ACTIONS(2894), + [anon_sym_isize] = ACTIONS(2894), + [anon_sym_usize] = ACTIONS(2894), + [anon_sym_f32] = ACTIONS(2894), + [anon_sym_f64] = ACTIONS(2894), + [anon_sym_bool] = ACTIONS(2894), + [anon_sym_str] = ACTIONS(2894), + [anon_sym_char] = ACTIONS(2894), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_BANG] = ACTIONS(2892), + [anon_sym_AMP] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_POUND] = ACTIONS(2892), + [anon_sym_SQUOTE] = ACTIONS(2894), + [anon_sym_async] = ACTIONS(2894), + [anon_sym_become] = ACTIONS(2894), + [anon_sym_break] = ACTIONS(2894), + [anon_sym_const] = ACTIONS(2894), + [anon_sym_continue] = ACTIONS(2894), + [anon_sym_default] = ACTIONS(2894), + [anon_sym_enum] = ACTIONS(2894), + [anon_sym_fn] = ACTIONS(2894), + [anon_sym_for] = ACTIONS(2894), + [anon_sym_gen] = ACTIONS(2894), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_impl] = ACTIONS(2894), + [anon_sym_let] = ACTIONS(2894), + [anon_sym_loop] = ACTIONS(2894), + [anon_sym_match] = ACTIONS(2894), + [anon_sym_mod] = ACTIONS(2894), + [anon_sym_pub] = ACTIONS(2894), + [anon_sym_return] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(2894), + [anon_sym_struct] = ACTIONS(2894), + [anon_sym_trait] = ACTIONS(2894), + [anon_sym_type] = ACTIONS(2894), + [anon_sym_union] = ACTIONS(2894), + [anon_sym_unsafe] = ACTIONS(2894), + [anon_sym_use] = ACTIONS(2894), + [anon_sym_while] = ACTIONS(2894), + [anon_sym_extern] = ACTIONS(2894), + [anon_sym_raw] = ACTIONS(2894), + [anon_sym_yield] = ACTIONS(2894), + [anon_sym_move] = ACTIONS(2894), + [anon_sym_try] = ACTIONS(2894), + [sym_integer_literal] = ACTIONS(2892), + [aux_sym_string_literal_token1] = ACTIONS(2892), + [sym_char_literal] = ACTIONS(2892), + [anon_sym_true] = ACTIONS(2894), + [anon_sym_false] = ACTIONS(2894), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2894), + [sym_super] = ACTIONS(2894), + [sym_crate] = ACTIONS(2894), + [sym_metavariable] = ACTIONS(2892), + [sym__raw_string_literal_start] = ACTIONS(2892), + [sym_float_literal] = ACTIONS(2892), }, [STATE(771)] = { [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_macro_rules_BANG] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_u8] = ACTIONS(3005), - [anon_sym_i8] = ACTIONS(3005), - [anon_sym_u16] = ACTIONS(3005), - [anon_sym_i16] = ACTIONS(3005), - [anon_sym_u32] = ACTIONS(3005), - [anon_sym_i32] = ACTIONS(3005), - [anon_sym_u64] = ACTIONS(3005), - [anon_sym_i64] = ACTIONS(3005), - [anon_sym_u128] = ACTIONS(3005), - [anon_sym_i128] = ACTIONS(3005), - [anon_sym_isize] = ACTIONS(3005), - [anon_sym_usize] = ACTIONS(3005), - [anon_sym_f32] = ACTIONS(3005), - [anon_sym_f64] = ACTIONS(3005), - [anon_sym_bool] = ACTIONS(3005), - [anon_sym_str] = ACTIONS(3005), - [anon_sym_char] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3003), - [anon_sym_BANG] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT] = ACTIONS(3003), - [anon_sym_COLON_COLON] = ACTIONS(3003), - [anon_sym_POUND] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3005), - [anon_sym_async] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_default] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_gen] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_impl] = ACTIONS(3005), - [anon_sym_let] = ACTIONS(3005), - [anon_sym_loop] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_mod] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_static] = ACTIONS(3005), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_trait] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_use] = ACTIONS(3005), - [anon_sym_while] = ACTIONS(3005), - [anon_sym_extern] = ACTIONS(3005), - [anon_sym_raw] = ACTIONS(3005), - [anon_sym_yield] = ACTIONS(3005), - [anon_sym_move] = ACTIONS(3005), - [anon_sym_try] = ACTIONS(3005), - [sym_integer_literal] = ACTIONS(3003), - [aux_sym_string_literal_token1] = ACTIONS(3003), - [sym_char_literal] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3005), - [sym_super] = ACTIONS(3005), - [sym_crate] = ACTIONS(3005), - [sym_metavariable] = ACTIONS(3003), - [sym__raw_string_literal_start] = ACTIONS(3003), - [sym_float_literal] = ACTIONS(3003), + [ts_builtin_sym_end] = ACTIONS(2896), + [sym_identifier] = ACTIONS(2898), + [anon_sym_SEMI] = ACTIONS(2896), + [anon_sym_macro_rules_BANG] = ACTIONS(2896), + [anon_sym_LPAREN] = ACTIONS(2896), + [anon_sym_LBRACK] = ACTIONS(2896), + [anon_sym_LBRACE] = ACTIONS(2896), + [anon_sym_RBRACE] = ACTIONS(2896), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_u8] = ACTIONS(2898), + [anon_sym_i8] = ACTIONS(2898), + [anon_sym_u16] = ACTIONS(2898), + [anon_sym_i16] = ACTIONS(2898), + [anon_sym_u32] = ACTIONS(2898), + [anon_sym_i32] = ACTIONS(2898), + [anon_sym_u64] = ACTIONS(2898), + [anon_sym_i64] = ACTIONS(2898), + [anon_sym_u128] = ACTIONS(2898), + [anon_sym_i128] = ACTIONS(2898), + [anon_sym_isize] = ACTIONS(2898), + [anon_sym_usize] = ACTIONS(2898), + [anon_sym_f32] = ACTIONS(2898), + [anon_sym_f64] = ACTIONS(2898), + [anon_sym_bool] = ACTIONS(2898), + [anon_sym_str] = ACTIONS(2898), + [anon_sym_char] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2896), + [anon_sym_BANG] = ACTIONS(2896), + [anon_sym_AMP] = ACTIONS(2896), + [anon_sym_PIPE] = ACTIONS(2896), + [anon_sym_LT] = ACTIONS(2896), + [anon_sym_DOT_DOT] = ACTIONS(2896), + [anon_sym_COLON_COLON] = ACTIONS(2896), + [anon_sym_POUND] = ACTIONS(2896), + [anon_sym_SQUOTE] = ACTIONS(2898), + [anon_sym_async] = ACTIONS(2898), + [anon_sym_become] = ACTIONS(2898), + [anon_sym_break] = ACTIONS(2898), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_continue] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2898), + [anon_sym_fn] = ACTIONS(2898), + [anon_sym_for] = ACTIONS(2898), + [anon_sym_gen] = ACTIONS(2898), + [anon_sym_if] = ACTIONS(2898), + [anon_sym_impl] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2898), + [anon_sym_loop] = ACTIONS(2898), + [anon_sym_match] = ACTIONS(2898), + [anon_sym_mod] = ACTIONS(2898), + [anon_sym_pub] = ACTIONS(2898), + [anon_sym_return] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_struct] = ACTIONS(2898), + [anon_sym_trait] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_union] = ACTIONS(2898), + [anon_sym_unsafe] = ACTIONS(2898), + [anon_sym_use] = ACTIONS(2898), + [anon_sym_while] = ACTIONS(2898), + [anon_sym_extern] = ACTIONS(2898), + [anon_sym_raw] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(2898), + [anon_sym_move] = ACTIONS(2898), + [anon_sym_try] = ACTIONS(2898), + [sym_integer_literal] = ACTIONS(2896), + [aux_sym_string_literal_token1] = ACTIONS(2896), + [sym_char_literal] = ACTIONS(2896), + [anon_sym_true] = ACTIONS(2898), + [anon_sym_false] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2898), + [sym_super] = ACTIONS(2898), + [sym_crate] = ACTIONS(2898), + [sym_metavariable] = ACTIONS(2896), + [sym__raw_string_literal_start] = ACTIONS(2896), + [sym_float_literal] = ACTIONS(2896), }, [STATE(772)] = { [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_macro_rules_BANG] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_u8] = ACTIONS(3009), - [anon_sym_i8] = ACTIONS(3009), - [anon_sym_u16] = ACTIONS(3009), - [anon_sym_i16] = ACTIONS(3009), - [anon_sym_u32] = ACTIONS(3009), - [anon_sym_i32] = ACTIONS(3009), - [anon_sym_u64] = ACTIONS(3009), - [anon_sym_i64] = ACTIONS(3009), - [anon_sym_u128] = ACTIONS(3009), - [anon_sym_i128] = ACTIONS(3009), - [anon_sym_isize] = ACTIONS(3009), - [anon_sym_usize] = ACTIONS(3009), - [anon_sym_f32] = ACTIONS(3009), - [anon_sym_f64] = ACTIONS(3009), - [anon_sym_bool] = ACTIONS(3009), - [anon_sym_str] = ACTIONS(3009), - [anon_sym_char] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3007), - [anon_sym_BANG] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3007), - [anon_sym_DOT_DOT] = ACTIONS(3007), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_default] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_gen] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_impl] = ACTIONS(3009), - [anon_sym_let] = ACTIONS(3009), - [anon_sym_loop] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_mod] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_static] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_trait] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_use] = ACTIONS(3009), - [anon_sym_while] = ACTIONS(3009), - [anon_sym_extern] = ACTIONS(3009), - [anon_sym_raw] = ACTIONS(3009), - [anon_sym_yield] = ACTIONS(3009), - [anon_sym_move] = ACTIONS(3009), - [anon_sym_try] = ACTIONS(3009), - [sym_integer_literal] = ACTIONS(3007), - [aux_sym_string_literal_token1] = ACTIONS(3007), - [sym_char_literal] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3009), - [anon_sym_false] = ACTIONS(3009), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3009), - [sym_super] = ACTIONS(3009), - [sym_crate] = ACTIONS(3009), - [sym_metavariable] = ACTIONS(3007), - [sym__raw_string_literal_start] = ACTIONS(3007), - [sym_float_literal] = ACTIONS(3007), + [ts_builtin_sym_end] = ACTIONS(2900), + [sym_identifier] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2900), + [anon_sym_macro_rules_BANG] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2900), + [anon_sym_RBRACE] = ACTIONS(2900), + [anon_sym_STAR] = ACTIONS(2900), + [anon_sym_u8] = ACTIONS(2902), + [anon_sym_i8] = ACTIONS(2902), + [anon_sym_u16] = ACTIONS(2902), + [anon_sym_i16] = ACTIONS(2902), + [anon_sym_u32] = ACTIONS(2902), + [anon_sym_i32] = ACTIONS(2902), + [anon_sym_u64] = ACTIONS(2902), + [anon_sym_i64] = ACTIONS(2902), + [anon_sym_u128] = ACTIONS(2902), + [anon_sym_i128] = ACTIONS(2902), + [anon_sym_isize] = ACTIONS(2902), + [anon_sym_usize] = ACTIONS(2902), + [anon_sym_f32] = ACTIONS(2902), + [anon_sym_f64] = ACTIONS(2902), + [anon_sym_bool] = ACTIONS(2902), + [anon_sym_str] = ACTIONS(2902), + [anon_sym_char] = ACTIONS(2902), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2900), + [anon_sym_AMP] = ACTIONS(2900), + [anon_sym_PIPE] = ACTIONS(2900), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_DOT_DOT] = ACTIONS(2900), + [anon_sym_COLON_COLON] = ACTIONS(2900), + [anon_sym_POUND] = ACTIONS(2900), + [anon_sym_SQUOTE] = ACTIONS(2902), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_become] = ACTIONS(2902), + [anon_sym_break] = ACTIONS(2902), + [anon_sym_const] = ACTIONS(2902), + [anon_sym_continue] = ACTIONS(2902), + [anon_sym_default] = ACTIONS(2902), + [anon_sym_enum] = ACTIONS(2902), + [anon_sym_fn] = ACTIONS(2902), + [anon_sym_for] = ACTIONS(2902), + [anon_sym_gen] = ACTIONS(2902), + [anon_sym_if] = ACTIONS(2902), + [anon_sym_impl] = ACTIONS(2902), + [anon_sym_let] = ACTIONS(2902), + [anon_sym_loop] = ACTIONS(2902), + [anon_sym_match] = ACTIONS(2902), + [anon_sym_mod] = ACTIONS(2902), + [anon_sym_pub] = ACTIONS(2902), + [anon_sym_return] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2902), + [anon_sym_struct] = ACTIONS(2902), + [anon_sym_trait] = ACTIONS(2902), + [anon_sym_type] = ACTIONS(2902), + [anon_sym_union] = ACTIONS(2902), + [anon_sym_unsafe] = ACTIONS(2902), + [anon_sym_use] = ACTIONS(2902), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_extern] = ACTIONS(2902), + [anon_sym_raw] = ACTIONS(2902), + [anon_sym_yield] = ACTIONS(2902), + [anon_sym_move] = ACTIONS(2902), + [anon_sym_try] = ACTIONS(2902), + [sym_integer_literal] = ACTIONS(2900), + [aux_sym_string_literal_token1] = ACTIONS(2900), + [sym_char_literal] = ACTIONS(2900), + [anon_sym_true] = ACTIONS(2902), + [anon_sym_false] = ACTIONS(2902), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2902), + [sym_super] = ACTIONS(2902), + [sym_crate] = ACTIONS(2902), + [sym_metavariable] = ACTIONS(2900), + [sym__raw_string_literal_start] = ACTIONS(2900), + [sym_float_literal] = ACTIONS(2900), }, [STATE(773)] = { [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_SEMI] = ACTIONS(3011), - [anon_sym_macro_rules_BANG] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_RBRACE] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_u8] = ACTIONS(3013), - [anon_sym_i8] = ACTIONS(3013), - [anon_sym_u16] = ACTIONS(3013), - [anon_sym_i16] = ACTIONS(3013), - [anon_sym_u32] = ACTIONS(3013), - [anon_sym_i32] = ACTIONS(3013), - [anon_sym_u64] = ACTIONS(3013), - [anon_sym_i64] = ACTIONS(3013), - [anon_sym_u128] = ACTIONS(3013), - [anon_sym_i128] = ACTIONS(3013), - [anon_sym_isize] = ACTIONS(3013), - [anon_sym_usize] = ACTIONS(3013), - [anon_sym_f32] = ACTIONS(3013), - [anon_sym_f64] = ACTIONS(3013), - [anon_sym_bool] = ACTIONS(3013), - [anon_sym_str] = ACTIONS(3013), - [anon_sym_char] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3011), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3011), - [anon_sym_DOT_DOT] = ACTIONS(3011), - [anon_sym_COLON_COLON] = ACTIONS(3011), - [anon_sym_POUND] = ACTIONS(3011), - [anon_sym_SQUOTE] = ACTIONS(3013), - [anon_sym_async] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_const] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_default] = ACTIONS(3013), - [anon_sym_enum] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_gen] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_impl] = ACTIONS(3013), - [anon_sym_let] = ACTIONS(3013), - [anon_sym_loop] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_mod] = ACTIONS(3013), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_static] = ACTIONS(3013), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_trait] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_use] = ACTIONS(3013), - [anon_sym_while] = ACTIONS(3013), - [anon_sym_extern] = ACTIONS(3013), - [anon_sym_raw] = ACTIONS(3013), - [anon_sym_yield] = ACTIONS(3013), - [anon_sym_move] = ACTIONS(3013), - [anon_sym_try] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(3011), - [aux_sym_string_literal_token1] = ACTIONS(3011), - [sym_char_literal] = ACTIONS(3011), - [anon_sym_true] = ACTIONS(3013), - [anon_sym_false] = ACTIONS(3013), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3013), - [sym_super] = ACTIONS(3013), - [sym_crate] = ACTIONS(3013), - [sym_metavariable] = ACTIONS(3011), - [sym__raw_string_literal_start] = ACTIONS(3011), - [sym_float_literal] = ACTIONS(3011), + [ts_builtin_sym_end] = ACTIONS(2904), + [sym_identifier] = ACTIONS(2906), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_macro_rules_BANG] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2904), + [anon_sym_RBRACE] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_u8] = ACTIONS(2906), + [anon_sym_i8] = ACTIONS(2906), + [anon_sym_u16] = ACTIONS(2906), + [anon_sym_i16] = ACTIONS(2906), + [anon_sym_u32] = ACTIONS(2906), + [anon_sym_i32] = ACTIONS(2906), + [anon_sym_u64] = ACTIONS(2906), + [anon_sym_i64] = ACTIONS(2906), + [anon_sym_u128] = ACTIONS(2906), + [anon_sym_i128] = ACTIONS(2906), + [anon_sym_isize] = ACTIONS(2906), + [anon_sym_usize] = ACTIONS(2906), + [anon_sym_f32] = ACTIONS(2906), + [anon_sym_f64] = ACTIONS(2906), + [anon_sym_bool] = ACTIONS(2906), + [anon_sym_str] = ACTIONS(2906), + [anon_sym_char] = ACTIONS(2906), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2904), + [anon_sym_AMP] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_POUND] = ACTIONS(2904), + [anon_sym_SQUOTE] = ACTIONS(2906), + [anon_sym_async] = ACTIONS(2906), + [anon_sym_become] = ACTIONS(2906), + [anon_sym_break] = ACTIONS(2906), + [anon_sym_const] = ACTIONS(2906), + [anon_sym_continue] = ACTIONS(2906), + [anon_sym_default] = ACTIONS(2906), + [anon_sym_enum] = ACTIONS(2906), + [anon_sym_fn] = ACTIONS(2906), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_gen] = ACTIONS(2906), + [anon_sym_if] = ACTIONS(2906), + [anon_sym_impl] = ACTIONS(2906), + [anon_sym_let] = ACTIONS(2906), + [anon_sym_loop] = ACTIONS(2906), + [anon_sym_match] = ACTIONS(2906), + [anon_sym_mod] = ACTIONS(2906), + [anon_sym_pub] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2906), + [anon_sym_struct] = ACTIONS(2906), + [anon_sym_trait] = ACTIONS(2906), + [anon_sym_type] = ACTIONS(2906), + [anon_sym_union] = ACTIONS(2906), + [anon_sym_unsafe] = ACTIONS(2906), + [anon_sym_use] = ACTIONS(2906), + [anon_sym_while] = ACTIONS(2906), + [anon_sym_extern] = ACTIONS(2906), + [anon_sym_raw] = ACTIONS(2906), + [anon_sym_yield] = ACTIONS(2906), + [anon_sym_move] = ACTIONS(2906), + [anon_sym_try] = ACTIONS(2906), + [sym_integer_literal] = ACTIONS(2904), + [aux_sym_string_literal_token1] = ACTIONS(2904), + [sym_char_literal] = ACTIONS(2904), + [anon_sym_true] = ACTIONS(2906), + [anon_sym_false] = ACTIONS(2906), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2906), + [sym_super] = ACTIONS(2906), + [sym_crate] = ACTIONS(2906), + [sym_metavariable] = ACTIONS(2904), + [sym__raw_string_literal_start] = ACTIONS(2904), + [sym_float_literal] = ACTIONS(2904), }, [STATE(774)] = { [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_SEMI] = ACTIONS(3015), - [anon_sym_macro_rules_BANG] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_u8] = ACTIONS(3017), - [anon_sym_i8] = ACTIONS(3017), - [anon_sym_u16] = ACTIONS(3017), - [anon_sym_i16] = ACTIONS(3017), - [anon_sym_u32] = ACTIONS(3017), - [anon_sym_i32] = ACTIONS(3017), - [anon_sym_u64] = ACTIONS(3017), - [anon_sym_i64] = ACTIONS(3017), - [anon_sym_u128] = ACTIONS(3017), - [anon_sym_i128] = ACTIONS(3017), - [anon_sym_isize] = ACTIONS(3017), - [anon_sym_usize] = ACTIONS(3017), - [anon_sym_f32] = ACTIONS(3017), - [anon_sym_f64] = ACTIONS(3017), - [anon_sym_bool] = ACTIONS(3017), - [anon_sym_str] = ACTIONS(3017), - [anon_sym_char] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3015), - [anon_sym_BANG] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3015), - [anon_sym_DOT_DOT] = ACTIONS(3015), - [anon_sym_COLON_COLON] = ACTIONS(3015), - [anon_sym_POUND] = ACTIONS(3015), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_async] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_default] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_gen] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_impl] = ACTIONS(3017), - [anon_sym_let] = ACTIONS(3017), - [anon_sym_loop] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_mod] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_static] = ACTIONS(3017), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_trait] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_use] = ACTIONS(3017), - [anon_sym_while] = ACTIONS(3017), - [anon_sym_extern] = ACTIONS(3017), - [anon_sym_raw] = ACTIONS(3017), - [anon_sym_yield] = ACTIONS(3017), - [anon_sym_move] = ACTIONS(3017), - [anon_sym_try] = ACTIONS(3017), - [sym_integer_literal] = ACTIONS(3015), - [aux_sym_string_literal_token1] = ACTIONS(3015), - [sym_char_literal] = ACTIONS(3015), - [anon_sym_true] = ACTIONS(3017), - [anon_sym_false] = ACTIONS(3017), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3017), - [sym_super] = ACTIONS(3017), - [sym_crate] = ACTIONS(3017), - [sym_metavariable] = ACTIONS(3015), - [sym__raw_string_literal_start] = ACTIONS(3015), - [sym_float_literal] = ACTIONS(3015), + [ts_builtin_sym_end] = ACTIONS(2908), + [sym_identifier] = ACTIONS(2910), + [anon_sym_SEMI] = ACTIONS(2908), + [anon_sym_macro_rules_BANG] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2908), + [anon_sym_RBRACE] = ACTIONS(2908), + [anon_sym_STAR] = ACTIONS(2908), + [anon_sym_u8] = ACTIONS(2910), + [anon_sym_i8] = ACTIONS(2910), + [anon_sym_u16] = ACTIONS(2910), + [anon_sym_i16] = ACTIONS(2910), + [anon_sym_u32] = ACTIONS(2910), + [anon_sym_i32] = ACTIONS(2910), + [anon_sym_u64] = ACTIONS(2910), + [anon_sym_i64] = ACTIONS(2910), + [anon_sym_u128] = ACTIONS(2910), + [anon_sym_i128] = ACTIONS(2910), + [anon_sym_isize] = ACTIONS(2910), + [anon_sym_usize] = ACTIONS(2910), + [anon_sym_f32] = ACTIONS(2910), + [anon_sym_f64] = ACTIONS(2910), + [anon_sym_bool] = ACTIONS(2910), + [anon_sym_str] = ACTIONS(2910), + [anon_sym_char] = ACTIONS(2910), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2908), + [anon_sym_AMP] = ACTIONS(2908), + [anon_sym_PIPE] = ACTIONS(2908), + [anon_sym_LT] = ACTIONS(2908), + [anon_sym_DOT_DOT] = ACTIONS(2908), + [anon_sym_COLON_COLON] = ACTIONS(2908), + [anon_sym_POUND] = ACTIONS(2908), + [anon_sym_SQUOTE] = ACTIONS(2910), + [anon_sym_async] = ACTIONS(2910), + [anon_sym_become] = ACTIONS(2910), + [anon_sym_break] = ACTIONS(2910), + [anon_sym_const] = ACTIONS(2910), + [anon_sym_continue] = ACTIONS(2910), + [anon_sym_default] = ACTIONS(2910), + [anon_sym_enum] = ACTIONS(2910), + [anon_sym_fn] = ACTIONS(2910), + [anon_sym_for] = ACTIONS(2910), + [anon_sym_gen] = ACTIONS(2910), + [anon_sym_if] = ACTIONS(2910), + [anon_sym_impl] = ACTIONS(2910), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_loop] = ACTIONS(2910), + [anon_sym_match] = ACTIONS(2910), + [anon_sym_mod] = ACTIONS(2910), + [anon_sym_pub] = ACTIONS(2910), + [anon_sym_return] = ACTIONS(2910), + [anon_sym_static] = ACTIONS(2910), + [anon_sym_struct] = ACTIONS(2910), + [anon_sym_trait] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_union] = ACTIONS(2910), + [anon_sym_unsafe] = ACTIONS(2910), + [anon_sym_use] = ACTIONS(2910), + [anon_sym_while] = ACTIONS(2910), + [anon_sym_extern] = ACTIONS(2910), + [anon_sym_raw] = ACTIONS(2910), + [anon_sym_yield] = ACTIONS(2910), + [anon_sym_move] = ACTIONS(2910), + [anon_sym_try] = ACTIONS(2910), + [sym_integer_literal] = ACTIONS(2908), + [aux_sym_string_literal_token1] = ACTIONS(2908), + [sym_char_literal] = ACTIONS(2908), + [anon_sym_true] = ACTIONS(2910), + [anon_sym_false] = ACTIONS(2910), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2910), + [sym_super] = ACTIONS(2910), + [sym_crate] = ACTIONS(2910), + [sym_metavariable] = ACTIONS(2908), + [sym__raw_string_literal_start] = ACTIONS(2908), + [sym_float_literal] = ACTIONS(2908), }, [STATE(775)] = { [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_SEMI] = ACTIONS(3019), - [anon_sym_macro_rules_BANG] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_RBRACE] = ACTIONS(3019), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_u8] = ACTIONS(3021), - [anon_sym_i8] = ACTIONS(3021), - [anon_sym_u16] = ACTIONS(3021), - [anon_sym_i16] = ACTIONS(3021), - [anon_sym_u32] = ACTIONS(3021), - [anon_sym_i32] = ACTIONS(3021), - [anon_sym_u64] = ACTIONS(3021), - [anon_sym_i64] = ACTIONS(3021), - [anon_sym_u128] = ACTIONS(3021), - [anon_sym_i128] = ACTIONS(3021), - [anon_sym_isize] = ACTIONS(3021), - [anon_sym_usize] = ACTIONS(3021), - [anon_sym_f32] = ACTIONS(3021), - [anon_sym_f64] = ACTIONS(3021), - [anon_sym_bool] = ACTIONS(3021), - [anon_sym_str] = ACTIONS(3021), - [anon_sym_char] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3019), - [anon_sym_BANG] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3019), - [anon_sym_DOT_DOT] = ACTIONS(3019), - [anon_sym_COLON_COLON] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3019), - [anon_sym_SQUOTE] = ACTIONS(3021), - [anon_sym_async] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_const] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_default] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_gen] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_impl] = ACTIONS(3021), - [anon_sym_let] = ACTIONS(3021), - [anon_sym_loop] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_mod] = ACTIONS(3021), - [anon_sym_pub] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_trait] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_union] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_use] = ACTIONS(3021), - [anon_sym_while] = ACTIONS(3021), - [anon_sym_extern] = ACTIONS(3021), - [anon_sym_raw] = ACTIONS(3021), - [anon_sym_yield] = ACTIONS(3021), - [anon_sym_move] = ACTIONS(3021), - [anon_sym_try] = ACTIONS(3021), - [sym_integer_literal] = ACTIONS(3019), - [aux_sym_string_literal_token1] = ACTIONS(3019), - [sym_char_literal] = ACTIONS(3019), - [anon_sym_true] = ACTIONS(3021), - [anon_sym_false] = ACTIONS(3021), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3021), - [sym_super] = ACTIONS(3021), - [sym_crate] = ACTIONS(3021), - [sym_metavariable] = ACTIONS(3019), - [sym__raw_string_literal_start] = ACTIONS(3019), - [sym_float_literal] = ACTIONS(3019), + [ts_builtin_sym_end] = ACTIONS(2912), + [sym_identifier] = ACTIONS(2914), + [anon_sym_SEMI] = ACTIONS(2912), + [anon_sym_macro_rules_BANG] = ACTIONS(2912), + [anon_sym_LPAREN] = ACTIONS(2912), + [anon_sym_LBRACK] = ACTIONS(2912), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_STAR] = ACTIONS(2912), + [anon_sym_u8] = ACTIONS(2914), + [anon_sym_i8] = ACTIONS(2914), + [anon_sym_u16] = ACTIONS(2914), + [anon_sym_i16] = ACTIONS(2914), + [anon_sym_u32] = ACTIONS(2914), + [anon_sym_i32] = ACTIONS(2914), + [anon_sym_u64] = ACTIONS(2914), + [anon_sym_i64] = ACTIONS(2914), + [anon_sym_u128] = ACTIONS(2914), + [anon_sym_i128] = ACTIONS(2914), + [anon_sym_isize] = ACTIONS(2914), + [anon_sym_usize] = ACTIONS(2914), + [anon_sym_f32] = ACTIONS(2914), + [anon_sym_f64] = ACTIONS(2914), + [anon_sym_bool] = ACTIONS(2914), + [anon_sym_str] = ACTIONS(2914), + [anon_sym_char] = ACTIONS(2914), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_BANG] = ACTIONS(2912), + [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_PIPE] = ACTIONS(2912), + [anon_sym_LT] = ACTIONS(2912), + [anon_sym_DOT_DOT] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(2912), + [anon_sym_POUND] = ACTIONS(2912), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(2914), + [anon_sym_become] = ACTIONS(2914), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_const] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2914), + [anon_sym_default] = ACTIONS(2914), + [anon_sym_enum] = ACTIONS(2914), + [anon_sym_fn] = ACTIONS(2914), + [anon_sym_for] = ACTIONS(2914), + [anon_sym_gen] = ACTIONS(2914), + [anon_sym_if] = ACTIONS(2914), + [anon_sym_impl] = ACTIONS(2914), + [anon_sym_let] = ACTIONS(2914), + [anon_sym_loop] = ACTIONS(2914), + [anon_sym_match] = ACTIONS(2914), + [anon_sym_mod] = ACTIONS(2914), + [anon_sym_pub] = ACTIONS(2914), + [anon_sym_return] = ACTIONS(2914), + [anon_sym_static] = ACTIONS(2914), + [anon_sym_struct] = ACTIONS(2914), + [anon_sym_trait] = ACTIONS(2914), + [anon_sym_type] = ACTIONS(2914), + [anon_sym_union] = ACTIONS(2914), + [anon_sym_unsafe] = ACTIONS(2914), + [anon_sym_use] = ACTIONS(2914), + [anon_sym_while] = ACTIONS(2914), + [anon_sym_extern] = ACTIONS(2914), + [anon_sym_raw] = ACTIONS(2914), + [anon_sym_yield] = ACTIONS(2914), + [anon_sym_move] = ACTIONS(2914), + [anon_sym_try] = ACTIONS(2914), + [sym_integer_literal] = ACTIONS(2912), + [aux_sym_string_literal_token1] = ACTIONS(2912), + [sym_char_literal] = ACTIONS(2912), + [anon_sym_true] = ACTIONS(2914), + [anon_sym_false] = ACTIONS(2914), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2914), + [sym_super] = ACTIONS(2914), + [sym_crate] = ACTIONS(2914), + [sym_metavariable] = ACTIONS(2912), + [sym__raw_string_literal_start] = ACTIONS(2912), + [sym_float_literal] = ACTIONS(2912), }, [STATE(776)] = { [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3023), - [anon_sym_macro_rules_BANG] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_u8] = ACTIONS(3025), - [anon_sym_i8] = ACTIONS(3025), - [anon_sym_u16] = ACTIONS(3025), - [anon_sym_i16] = ACTIONS(3025), - [anon_sym_u32] = ACTIONS(3025), - [anon_sym_i32] = ACTIONS(3025), - [anon_sym_u64] = ACTIONS(3025), - [anon_sym_i64] = ACTIONS(3025), - [anon_sym_u128] = ACTIONS(3025), - [anon_sym_i128] = ACTIONS(3025), - [anon_sym_isize] = ACTIONS(3025), - [anon_sym_usize] = ACTIONS(3025), - [anon_sym_f32] = ACTIONS(3025), - [anon_sym_f64] = ACTIONS(3025), - [anon_sym_bool] = ACTIONS(3025), - [anon_sym_str] = ACTIONS(3025), - [anon_sym_char] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3023), - [anon_sym_BANG] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3023), - [anon_sym_DOT_DOT] = ACTIONS(3023), - [anon_sym_COLON_COLON] = ACTIONS(3023), - [anon_sym_POUND] = ACTIONS(3023), - [anon_sym_SQUOTE] = ACTIONS(3025), - [anon_sym_async] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_const] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_default] = ACTIONS(3025), - [anon_sym_enum] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_gen] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_impl] = ACTIONS(3025), - [anon_sym_let] = ACTIONS(3025), - [anon_sym_loop] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_mod] = ACTIONS(3025), - [anon_sym_pub] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_static] = ACTIONS(3025), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_trait] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_use] = ACTIONS(3025), - [anon_sym_while] = ACTIONS(3025), - [anon_sym_extern] = ACTIONS(3025), - [anon_sym_raw] = ACTIONS(3025), - [anon_sym_yield] = ACTIONS(3025), - [anon_sym_move] = ACTIONS(3025), - [anon_sym_try] = ACTIONS(3025), - [sym_integer_literal] = ACTIONS(3023), - [aux_sym_string_literal_token1] = ACTIONS(3023), - [sym_char_literal] = ACTIONS(3023), - [anon_sym_true] = ACTIONS(3025), - [anon_sym_false] = ACTIONS(3025), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3025), - [sym_super] = ACTIONS(3025), - [sym_crate] = ACTIONS(3025), - [sym_metavariable] = ACTIONS(3023), - [sym__raw_string_literal_start] = ACTIONS(3023), - [sym_float_literal] = ACTIONS(3023), + [ts_builtin_sym_end] = ACTIONS(2916), + [sym_identifier] = ACTIONS(2918), + [anon_sym_SEMI] = ACTIONS(2916), + [anon_sym_macro_rules_BANG] = ACTIONS(2916), + [anon_sym_LPAREN] = ACTIONS(2916), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_LBRACE] = ACTIONS(2916), + [anon_sym_RBRACE] = ACTIONS(2916), + [anon_sym_STAR] = ACTIONS(2916), + [anon_sym_u8] = ACTIONS(2918), + [anon_sym_i8] = ACTIONS(2918), + [anon_sym_u16] = ACTIONS(2918), + [anon_sym_i16] = ACTIONS(2918), + [anon_sym_u32] = ACTIONS(2918), + [anon_sym_i32] = ACTIONS(2918), + [anon_sym_u64] = ACTIONS(2918), + [anon_sym_i64] = ACTIONS(2918), + [anon_sym_u128] = ACTIONS(2918), + [anon_sym_i128] = ACTIONS(2918), + [anon_sym_isize] = ACTIONS(2918), + [anon_sym_usize] = ACTIONS(2918), + [anon_sym_f32] = ACTIONS(2918), + [anon_sym_f64] = ACTIONS(2918), + [anon_sym_bool] = ACTIONS(2918), + [anon_sym_str] = ACTIONS(2918), + [anon_sym_char] = ACTIONS(2918), + [anon_sym_DASH] = ACTIONS(2916), + [anon_sym_BANG] = ACTIONS(2916), + [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_PIPE] = ACTIONS(2916), + [anon_sym_LT] = ACTIONS(2916), + [anon_sym_DOT_DOT] = ACTIONS(2916), + [anon_sym_COLON_COLON] = ACTIONS(2916), + [anon_sym_POUND] = ACTIONS(2916), + [anon_sym_SQUOTE] = ACTIONS(2918), + [anon_sym_async] = ACTIONS(2918), + [anon_sym_become] = ACTIONS(2918), + [anon_sym_break] = ACTIONS(2918), + [anon_sym_const] = ACTIONS(2918), + [anon_sym_continue] = ACTIONS(2918), + [anon_sym_default] = ACTIONS(2918), + [anon_sym_enum] = ACTIONS(2918), + [anon_sym_fn] = ACTIONS(2918), + [anon_sym_for] = ACTIONS(2918), + [anon_sym_gen] = ACTIONS(2918), + [anon_sym_if] = ACTIONS(2918), + [anon_sym_impl] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2918), + [anon_sym_loop] = ACTIONS(2918), + [anon_sym_match] = ACTIONS(2918), + [anon_sym_mod] = ACTIONS(2918), + [anon_sym_pub] = ACTIONS(2918), + [anon_sym_return] = ACTIONS(2918), + [anon_sym_static] = ACTIONS(2918), + [anon_sym_struct] = ACTIONS(2918), + [anon_sym_trait] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(2918), + [anon_sym_union] = ACTIONS(2918), + [anon_sym_unsafe] = ACTIONS(2918), + [anon_sym_use] = ACTIONS(2918), + [anon_sym_while] = ACTIONS(2918), + [anon_sym_extern] = ACTIONS(2918), + [anon_sym_raw] = ACTIONS(2918), + [anon_sym_yield] = ACTIONS(2918), + [anon_sym_move] = ACTIONS(2918), + [anon_sym_try] = ACTIONS(2918), + [sym_integer_literal] = ACTIONS(2916), + [aux_sym_string_literal_token1] = ACTIONS(2916), + [sym_char_literal] = ACTIONS(2916), + [anon_sym_true] = ACTIONS(2918), + [anon_sym_false] = ACTIONS(2918), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2918), + [sym_super] = ACTIONS(2918), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(2916), + [sym__raw_string_literal_start] = ACTIONS(2916), + [sym_float_literal] = ACTIONS(2916), }, [STATE(777)] = { [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_SEMI] = ACTIONS(3027), - [anon_sym_macro_rules_BANG] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_u8] = ACTIONS(3029), - [anon_sym_i8] = ACTIONS(3029), - [anon_sym_u16] = ACTIONS(3029), - [anon_sym_i16] = ACTIONS(3029), - [anon_sym_u32] = ACTIONS(3029), - [anon_sym_i32] = ACTIONS(3029), - [anon_sym_u64] = ACTIONS(3029), - [anon_sym_i64] = ACTIONS(3029), - [anon_sym_u128] = ACTIONS(3029), - [anon_sym_i128] = ACTIONS(3029), - [anon_sym_isize] = ACTIONS(3029), - [anon_sym_usize] = ACTIONS(3029), - [anon_sym_f32] = ACTIONS(3029), - [anon_sym_f64] = ACTIONS(3029), - [anon_sym_bool] = ACTIONS(3029), - [anon_sym_str] = ACTIONS(3029), - [anon_sym_char] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_BANG] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_DOT_DOT] = ACTIONS(3027), - [anon_sym_COLON_COLON] = ACTIONS(3027), - [anon_sym_POUND] = ACTIONS(3027), - [anon_sym_SQUOTE] = ACTIONS(3029), - [anon_sym_async] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_default] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_gen] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_impl] = ACTIONS(3029), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_loop] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_mod] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_static] = ACTIONS(3029), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_trait] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_use] = ACTIONS(3029), - [anon_sym_while] = ACTIONS(3029), - [anon_sym_extern] = ACTIONS(3029), - [anon_sym_raw] = ACTIONS(3029), - [anon_sym_yield] = ACTIONS(3029), - [anon_sym_move] = ACTIONS(3029), - [anon_sym_try] = ACTIONS(3029), - [sym_integer_literal] = ACTIONS(3027), - [aux_sym_string_literal_token1] = ACTIONS(3027), - [sym_char_literal] = ACTIONS(3027), - [anon_sym_true] = ACTIONS(3029), - [anon_sym_false] = ACTIONS(3029), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3029), - [sym_super] = ACTIONS(3029), - [sym_crate] = ACTIONS(3029), - [sym_metavariable] = ACTIONS(3027), - [sym__raw_string_literal_start] = ACTIONS(3027), - [sym_float_literal] = ACTIONS(3027), + [ts_builtin_sym_end] = ACTIONS(2920), + [sym_identifier] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2920), + [anon_sym_macro_rules_BANG] = ACTIONS(2920), + [anon_sym_LPAREN] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2920), + [anon_sym_LBRACE] = ACTIONS(2920), + [anon_sym_RBRACE] = ACTIONS(2920), + [anon_sym_STAR] = ACTIONS(2920), + [anon_sym_u8] = ACTIONS(2922), + [anon_sym_i8] = ACTIONS(2922), + [anon_sym_u16] = ACTIONS(2922), + [anon_sym_i16] = ACTIONS(2922), + [anon_sym_u32] = ACTIONS(2922), + [anon_sym_i32] = ACTIONS(2922), + [anon_sym_u64] = ACTIONS(2922), + [anon_sym_i64] = ACTIONS(2922), + [anon_sym_u128] = ACTIONS(2922), + [anon_sym_i128] = ACTIONS(2922), + [anon_sym_isize] = ACTIONS(2922), + [anon_sym_usize] = ACTIONS(2922), + [anon_sym_f32] = ACTIONS(2922), + [anon_sym_f64] = ACTIONS(2922), + [anon_sym_bool] = ACTIONS(2922), + [anon_sym_str] = ACTIONS(2922), + [anon_sym_char] = ACTIONS(2922), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_BANG] = ACTIONS(2920), + [anon_sym_AMP] = ACTIONS(2920), + [anon_sym_PIPE] = ACTIONS(2920), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_DOT_DOT] = ACTIONS(2920), + [anon_sym_COLON_COLON] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(2920), + [anon_sym_SQUOTE] = ACTIONS(2922), + [anon_sym_async] = ACTIONS(2922), + [anon_sym_become] = ACTIONS(2922), + [anon_sym_break] = ACTIONS(2922), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_continue] = ACTIONS(2922), + [anon_sym_default] = ACTIONS(2922), + [anon_sym_enum] = ACTIONS(2922), + [anon_sym_fn] = ACTIONS(2922), + [anon_sym_for] = ACTIONS(2922), + [anon_sym_gen] = ACTIONS(2922), + [anon_sym_if] = ACTIONS(2922), + [anon_sym_impl] = ACTIONS(2922), + [anon_sym_let] = ACTIONS(2922), + [anon_sym_loop] = ACTIONS(2922), + [anon_sym_match] = ACTIONS(2922), + [anon_sym_mod] = ACTIONS(2922), + [anon_sym_pub] = ACTIONS(2922), + [anon_sym_return] = ACTIONS(2922), + [anon_sym_static] = ACTIONS(2922), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_trait] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2922), + [anon_sym_union] = ACTIONS(2922), + [anon_sym_unsafe] = ACTIONS(2922), + [anon_sym_use] = ACTIONS(2922), + [anon_sym_while] = ACTIONS(2922), + [anon_sym_extern] = ACTIONS(2922), + [anon_sym_raw] = ACTIONS(2922), + [anon_sym_yield] = ACTIONS(2922), + [anon_sym_move] = ACTIONS(2922), + [anon_sym_try] = ACTIONS(2922), + [sym_integer_literal] = ACTIONS(2920), + [aux_sym_string_literal_token1] = ACTIONS(2920), + [sym_char_literal] = ACTIONS(2920), + [anon_sym_true] = ACTIONS(2922), + [anon_sym_false] = ACTIONS(2922), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2922), + [sym_super] = ACTIONS(2922), + [sym_crate] = ACTIONS(2922), + [sym_metavariable] = ACTIONS(2920), + [sym__raw_string_literal_start] = ACTIONS(2920), + [sym_float_literal] = ACTIONS(2920), }, [STATE(778)] = { [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3033), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_macro_rules_BANG] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_RBRACE] = ACTIONS(3031), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_u8] = ACTIONS(3033), - [anon_sym_i8] = ACTIONS(3033), - [anon_sym_u16] = ACTIONS(3033), - [anon_sym_i16] = ACTIONS(3033), - [anon_sym_u32] = ACTIONS(3033), - [anon_sym_i32] = ACTIONS(3033), - [anon_sym_u64] = ACTIONS(3033), - [anon_sym_i64] = ACTIONS(3033), - [anon_sym_u128] = ACTIONS(3033), - [anon_sym_i128] = ACTIONS(3033), - [anon_sym_isize] = ACTIONS(3033), - [anon_sym_usize] = ACTIONS(3033), - [anon_sym_f32] = ACTIONS(3033), - [anon_sym_f64] = ACTIONS(3033), - [anon_sym_bool] = ACTIONS(3033), - [anon_sym_str] = ACTIONS(3033), - [anon_sym_char] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3031), - [anon_sym_BANG] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3031), - [anon_sym_DOT_DOT] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(3031), - [anon_sym_POUND] = ACTIONS(3031), - [anon_sym_SQUOTE] = ACTIONS(3033), - [anon_sym_async] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_continue] = ACTIONS(3033), - [anon_sym_default] = ACTIONS(3033), - [anon_sym_enum] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_gen] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_impl] = ACTIONS(3033), - [anon_sym_let] = ACTIONS(3033), - [anon_sym_loop] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_mod] = ACTIONS(3033), - [anon_sym_pub] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_static] = ACTIONS(3033), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_trait] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_union] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_use] = ACTIONS(3033), - [anon_sym_while] = ACTIONS(3033), - [anon_sym_extern] = ACTIONS(3033), - [anon_sym_raw] = ACTIONS(3033), - [anon_sym_yield] = ACTIONS(3033), - [anon_sym_move] = ACTIONS(3033), - [anon_sym_try] = ACTIONS(3033), - [sym_integer_literal] = ACTIONS(3031), - [aux_sym_string_literal_token1] = ACTIONS(3031), - [sym_char_literal] = ACTIONS(3031), - [anon_sym_true] = ACTIONS(3033), - [anon_sym_false] = ACTIONS(3033), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3033), - [sym_super] = ACTIONS(3033), - [sym_crate] = ACTIONS(3033), - [sym_metavariable] = ACTIONS(3031), - [sym__raw_string_literal_start] = ACTIONS(3031), - [sym_float_literal] = ACTIONS(3031), + [ts_builtin_sym_end] = ACTIONS(2924), + [sym_identifier] = ACTIONS(2926), + [anon_sym_SEMI] = ACTIONS(2924), + [anon_sym_macro_rules_BANG] = ACTIONS(2924), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(2924), + [anon_sym_LBRACE] = ACTIONS(2924), + [anon_sym_RBRACE] = ACTIONS(2924), + [anon_sym_STAR] = ACTIONS(2924), + [anon_sym_u8] = ACTIONS(2926), + [anon_sym_i8] = ACTIONS(2926), + [anon_sym_u16] = ACTIONS(2926), + [anon_sym_i16] = ACTIONS(2926), + [anon_sym_u32] = ACTIONS(2926), + [anon_sym_i32] = ACTIONS(2926), + [anon_sym_u64] = ACTIONS(2926), + [anon_sym_i64] = ACTIONS(2926), + [anon_sym_u128] = ACTIONS(2926), + [anon_sym_i128] = ACTIONS(2926), + [anon_sym_isize] = ACTIONS(2926), + [anon_sym_usize] = ACTIONS(2926), + [anon_sym_f32] = ACTIONS(2926), + [anon_sym_f64] = ACTIONS(2926), + [anon_sym_bool] = ACTIONS(2926), + [anon_sym_str] = ACTIONS(2926), + [anon_sym_char] = ACTIONS(2926), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_BANG] = ACTIONS(2924), + [anon_sym_AMP] = ACTIONS(2924), + [anon_sym_PIPE] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2924), + [anon_sym_DOT_DOT] = ACTIONS(2924), + [anon_sym_COLON_COLON] = ACTIONS(2924), + [anon_sym_POUND] = ACTIONS(2924), + [anon_sym_SQUOTE] = ACTIONS(2926), + [anon_sym_async] = ACTIONS(2926), + [anon_sym_become] = ACTIONS(2926), + [anon_sym_break] = ACTIONS(2926), + [anon_sym_const] = ACTIONS(2926), + [anon_sym_continue] = ACTIONS(2926), + [anon_sym_default] = ACTIONS(2926), + [anon_sym_enum] = ACTIONS(2926), + [anon_sym_fn] = ACTIONS(2926), + [anon_sym_for] = ACTIONS(2926), + [anon_sym_gen] = ACTIONS(2926), + [anon_sym_if] = ACTIONS(2926), + [anon_sym_impl] = ACTIONS(2926), + [anon_sym_let] = ACTIONS(2926), + [anon_sym_loop] = ACTIONS(2926), + [anon_sym_match] = ACTIONS(2926), + [anon_sym_mod] = ACTIONS(2926), + [anon_sym_pub] = ACTIONS(2926), + [anon_sym_return] = ACTIONS(2926), + [anon_sym_static] = ACTIONS(2926), + [anon_sym_struct] = ACTIONS(2926), + [anon_sym_trait] = ACTIONS(2926), + [anon_sym_type] = ACTIONS(2926), + [anon_sym_union] = ACTIONS(2926), + [anon_sym_unsafe] = ACTIONS(2926), + [anon_sym_use] = ACTIONS(2926), + [anon_sym_while] = ACTIONS(2926), + [anon_sym_extern] = ACTIONS(2926), + [anon_sym_raw] = ACTIONS(2926), + [anon_sym_yield] = ACTIONS(2926), + [anon_sym_move] = ACTIONS(2926), + [anon_sym_try] = ACTIONS(2926), + [sym_integer_literal] = ACTIONS(2924), + [aux_sym_string_literal_token1] = ACTIONS(2924), + [sym_char_literal] = ACTIONS(2924), + [anon_sym_true] = ACTIONS(2926), + [anon_sym_false] = ACTIONS(2926), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2926), + [sym_super] = ACTIONS(2926), + [sym_crate] = ACTIONS(2926), + [sym_metavariable] = ACTIONS(2924), + [sym__raw_string_literal_start] = ACTIONS(2924), + [sym_float_literal] = ACTIONS(2924), }, [STATE(779)] = { [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_macro_rules_BANG] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_RBRACE] = ACTIONS(3035), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(3037), - [anon_sym_i8] = ACTIONS(3037), - [anon_sym_u16] = ACTIONS(3037), - [anon_sym_i16] = ACTIONS(3037), - [anon_sym_u32] = ACTIONS(3037), - [anon_sym_i32] = ACTIONS(3037), - [anon_sym_u64] = ACTIONS(3037), - [anon_sym_i64] = ACTIONS(3037), - [anon_sym_u128] = ACTIONS(3037), - [anon_sym_i128] = ACTIONS(3037), - [anon_sym_isize] = ACTIONS(3037), - [anon_sym_usize] = ACTIONS(3037), - [anon_sym_f32] = ACTIONS(3037), - [anon_sym_f64] = ACTIONS(3037), - [anon_sym_bool] = ACTIONS(3037), - [anon_sym_str] = ACTIONS(3037), - [anon_sym_char] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3035), - [anon_sym_BANG] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3035), - [anon_sym_DOT_DOT] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(3035), - [anon_sym_POUND] = ACTIONS(3035), - [anon_sym_SQUOTE] = ACTIONS(3037), - [anon_sym_async] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_default] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_gen] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_impl] = ACTIONS(3037), - [anon_sym_let] = ACTIONS(3037), - [anon_sym_loop] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_mod] = ACTIONS(3037), - [anon_sym_pub] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_trait] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_use] = ACTIONS(3037), - [anon_sym_while] = ACTIONS(3037), - [anon_sym_extern] = ACTIONS(3037), - [anon_sym_raw] = ACTIONS(3037), - [anon_sym_yield] = ACTIONS(3037), - [anon_sym_move] = ACTIONS(3037), - [anon_sym_try] = ACTIONS(3037), - [sym_integer_literal] = ACTIONS(3035), - [aux_sym_string_literal_token1] = ACTIONS(3035), - [sym_char_literal] = ACTIONS(3035), - [anon_sym_true] = ACTIONS(3037), - [anon_sym_false] = ACTIONS(3037), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3037), - [sym_super] = ACTIONS(3037), - [sym_crate] = ACTIONS(3037), - [sym_metavariable] = ACTIONS(3035), - [sym__raw_string_literal_start] = ACTIONS(3035), - [sym_float_literal] = ACTIONS(3035), + [ts_builtin_sym_end] = ACTIONS(2928), + [sym_identifier] = ACTIONS(2930), + [anon_sym_SEMI] = ACTIONS(2928), + [anon_sym_macro_rules_BANG] = ACTIONS(2928), + [anon_sym_LPAREN] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(2928), + [anon_sym_LBRACE] = ACTIONS(2928), + [anon_sym_RBRACE] = ACTIONS(2928), + [anon_sym_STAR] = ACTIONS(2928), + [anon_sym_u8] = ACTIONS(2930), + [anon_sym_i8] = ACTIONS(2930), + [anon_sym_u16] = ACTIONS(2930), + [anon_sym_i16] = ACTIONS(2930), + [anon_sym_u32] = ACTIONS(2930), + [anon_sym_i32] = ACTIONS(2930), + [anon_sym_u64] = ACTIONS(2930), + [anon_sym_i64] = ACTIONS(2930), + [anon_sym_u128] = ACTIONS(2930), + [anon_sym_i128] = ACTIONS(2930), + [anon_sym_isize] = ACTIONS(2930), + [anon_sym_usize] = ACTIONS(2930), + [anon_sym_f32] = ACTIONS(2930), + [anon_sym_f64] = ACTIONS(2930), + [anon_sym_bool] = ACTIONS(2930), + [anon_sym_str] = ACTIONS(2930), + [anon_sym_char] = ACTIONS(2930), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_BANG] = ACTIONS(2928), + [anon_sym_AMP] = ACTIONS(2928), + [anon_sym_PIPE] = ACTIONS(2928), + [anon_sym_LT] = ACTIONS(2928), + [anon_sym_DOT_DOT] = ACTIONS(2928), + [anon_sym_COLON_COLON] = ACTIONS(2928), + [anon_sym_POUND] = ACTIONS(2928), + [anon_sym_SQUOTE] = ACTIONS(2930), + [anon_sym_async] = ACTIONS(2930), + [anon_sym_become] = ACTIONS(2930), + [anon_sym_break] = ACTIONS(2930), + [anon_sym_const] = ACTIONS(2930), + [anon_sym_continue] = ACTIONS(2930), + [anon_sym_default] = ACTIONS(2930), + [anon_sym_enum] = ACTIONS(2930), + [anon_sym_fn] = ACTIONS(2930), + [anon_sym_for] = ACTIONS(2930), + [anon_sym_gen] = ACTIONS(2930), + [anon_sym_if] = ACTIONS(2930), + [anon_sym_impl] = ACTIONS(2930), + [anon_sym_let] = ACTIONS(2930), + [anon_sym_loop] = ACTIONS(2930), + [anon_sym_match] = ACTIONS(2930), + [anon_sym_mod] = ACTIONS(2930), + [anon_sym_pub] = ACTIONS(2930), + [anon_sym_return] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2930), + [anon_sym_struct] = ACTIONS(2930), + [anon_sym_trait] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(2930), + [anon_sym_union] = ACTIONS(2930), + [anon_sym_unsafe] = ACTIONS(2930), + [anon_sym_use] = ACTIONS(2930), + [anon_sym_while] = ACTIONS(2930), + [anon_sym_extern] = ACTIONS(2930), + [anon_sym_raw] = ACTIONS(2930), + [anon_sym_yield] = ACTIONS(2930), + [anon_sym_move] = ACTIONS(2930), + [anon_sym_try] = ACTIONS(2930), + [sym_integer_literal] = ACTIONS(2928), + [aux_sym_string_literal_token1] = ACTIONS(2928), + [sym_char_literal] = ACTIONS(2928), + [anon_sym_true] = ACTIONS(2930), + [anon_sym_false] = ACTIONS(2930), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2930), + [sym_super] = ACTIONS(2930), + [sym_crate] = ACTIONS(2930), + [sym_metavariable] = ACTIONS(2928), + [sym__raw_string_literal_start] = ACTIONS(2928), + [sym_float_literal] = ACTIONS(2928), }, [STATE(780)] = { [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3039), - [anon_sym_macro_rules_BANG] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_RBRACE] = ACTIONS(3039), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_u8] = ACTIONS(3041), - [anon_sym_i8] = ACTIONS(3041), - [anon_sym_u16] = ACTIONS(3041), - [anon_sym_i16] = ACTIONS(3041), - [anon_sym_u32] = ACTIONS(3041), - [anon_sym_i32] = ACTIONS(3041), - [anon_sym_u64] = ACTIONS(3041), - [anon_sym_i64] = ACTIONS(3041), - [anon_sym_u128] = ACTIONS(3041), - [anon_sym_i128] = ACTIONS(3041), - [anon_sym_isize] = ACTIONS(3041), - [anon_sym_usize] = ACTIONS(3041), - [anon_sym_f32] = ACTIONS(3041), - [anon_sym_f64] = ACTIONS(3041), - [anon_sym_bool] = ACTIONS(3041), - [anon_sym_str] = ACTIONS(3041), - [anon_sym_char] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3039), - [anon_sym_BANG] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3039), - [anon_sym_DOT_DOT] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(3039), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_SQUOTE] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_gen] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_impl] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_loop] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_mod] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_trait] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_use] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_raw] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_move] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(3039), - [aux_sym_string_literal_token1] = ACTIONS(3039), - [sym_char_literal] = ACTIONS(3039), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3041), - [sym_super] = ACTIONS(3041), - [sym_crate] = ACTIONS(3041), - [sym_metavariable] = ACTIONS(3039), - [sym__raw_string_literal_start] = ACTIONS(3039), - [sym_float_literal] = ACTIONS(3039), + [ts_builtin_sym_end] = ACTIONS(2932), + [sym_identifier] = ACTIONS(2934), + [anon_sym_SEMI] = ACTIONS(2932), + [anon_sym_macro_rules_BANG] = ACTIONS(2932), + [anon_sym_LPAREN] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(2932), + [anon_sym_LBRACE] = ACTIONS(2932), + [anon_sym_RBRACE] = ACTIONS(2932), + [anon_sym_STAR] = ACTIONS(2932), + [anon_sym_u8] = ACTIONS(2934), + [anon_sym_i8] = ACTIONS(2934), + [anon_sym_u16] = ACTIONS(2934), + [anon_sym_i16] = ACTIONS(2934), + [anon_sym_u32] = ACTIONS(2934), + [anon_sym_i32] = ACTIONS(2934), + [anon_sym_u64] = ACTIONS(2934), + [anon_sym_i64] = ACTIONS(2934), + [anon_sym_u128] = ACTIONS(2934), + [anon_sym_i128] = ACTIONS(2934), + [anon_sym_isize] = ACTIONS(2934), + [anon_sym_usize] = ACTIONS(2934), + [anon_sym_f32] = ACTIONS(2934), + [anon_sym_f64] = ACTIONS(2934), + [anon_sym_bool] = ACTIONS(2934), + [anon_sym_str] = ACTIONS(2934), + [anon_sym_char] = ACTIONS(2934), + [anon_sym_DASH] = ACTIONS(2932), + [anon_sym_BANG] = ACTIONS(2932), + [anon_sym_AMP] = ACTIONS(2932), + [anon_sym_PIPE] = ACTIONS(2932), + [anon_sym_LT] = ACTIONS(2932), + [anon_sym_DOT_DOT] = ACTIONS(2932), + [anon_sym_COLON_COLON] = ACTIONS(2932), + [anon_sym_POUND] = ACTIONS(2932), + [anon_sym_SQUOTE] = ACTIONS(2934), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_become] = ACTIONS(2934), + [anon_sym_break] = ACTIONS(2934), + [anon_sym_const] = ACTIONS(2934), + [anon_sym_continue] = ACTIONS(2934), + [anon_sym_default] = ACTIONS(2934), + [anon_sym_enum] = ACTIONS(2934), + [anon_sym_fn] = ACTIONS(2934), + [anon_sym_for] = ACTIONS(2934), + [anon_sym_gen] = ACTIONS(2934), + [anon_sym_if] = ACTIONS(2934), + [anon_sym_impl] = ACTIONS(2934), + [anon_sym_let] = ACTIONS(2934), + [anon_sym_loop] = ACTIONS(2934), + [anon_sym_match] = ACTIONS(2934), + [anon_sym_mod] = ACTIONS(2934), + [anon_sym_pub] = ACTIONS(2934), + [anon_sym_return] = ACTIONS(2934), + [anon_sym_static] = ACTIONS(2934), + [anon_sym_struct] = ACTIONS(2934), + [anon_sym_trait] = ACTIONS(2934), + [anon_sym_type] = ACTIONS(2934), + [anon_sym_union] = ACTIONS(2934), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2934), + [anon_sym_while] = ACTIONS(2934), + [anon_sym_extern] = ACTIONS(2934), + [anon_sym_raw] = ACTIONS(2934), + [anon_sym_yield] = ACTIONS(2934), + [anon_sym_move] = ACTIONS(2934), + [anon_sym_try] = ACTIONS(2934), + [sym_integer_literal] = ACTIONS(2932), + [aux_sym_string_literal_token1] = ACTIONS(2932), + [sym_char_literal] = ACTIONS(2932), + [anon_sym_true] = ACTIONS(2934), + [anon_sym_false] = ACTIONS(2934), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2934), + [sym_super] = ACTIONS(2934), + [sym_crate] = ACTIONS(2934), + [sym_metavariable] = ACTIONS(2932), + [sym__raw_string_literal_start] = ACTIONS(2932), + [sym_float_literal] = ACTIONS(2932), }, [STATE(781)] = { [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_macro_rules_BANG] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_u8] = ACTIONS(3045), - [anon_sym_i8] = ACTIONS(3045), - [anon_sym_u16] = ACTIONS(3045), - [anon_sym_i16] = ACTIONS(3045), - [anon_sym_u32] = ACTIONS(3045), - [anon_sym_i32] = ACTIONS(3045), - [anon_sym_u64] = ACTIONS(3045), - [anon_sym_i64] = ACTIONS(3045), - [anon_sym_u128] = ACTIONS(3045), - [anon_sym_i128] = ACTIONS(3045), - [anon_sym_isize] = ACTIONS(3045), - [anon_sym_usize] = ACTIONS(3045), - [anon_sym_f32] = ACTIONS(3045), - [anon_sym_f64] = ACTIONS(3045), - [anon_sym_bool] = ACTIONS(3045), - [anon_sym_str] = ACTIONS(3045), - [anon_sym_char] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3043), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(3043), - [anon_sym_POUND] = ACTIONS(3043), - [anon_sym_SQUOTE] = ACTIONS(3045), - [anon_sym_async] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_default] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_gen] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_impl] = ACTIONS(3045), - [anon_sym_let] = ACTIONS(3045), - [anon_sym_loop] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_mod] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_static] = ACTIONS(3045), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_trait] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_use] = ACTIONS(3045), - [anon_sym_while] = ACTIONS(3045), - [anon_sym_extern] = ACTIONS(3045), - [anon_sym_raw] = ACTIONS(3045), - [anon_sym_yield] = ACTIONS(3045), - [anon_sym_move] = ACTIONS(3045), - [anon_sym_try] = ACTIONS(3045), - [sym_integer_literal] = ACTIONS(3043), - [aux_sym_string_literal_token1] = ACTIONS(3043), - [sym_char_literal] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3045), - [anon_sym_false] = ACTIONS(3045), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3045), - [sym_super] = ACTIONS(3045), - [sym_crate] = ACTIONS(3045), - [sym_metavariable] = ACTIONS(3043), - [sym__raw_string_literal_start] = ACTIONS(3043), - [sym_float_literal] = ACTIONS(3043), + [ts_builtin_sym_end] = ACTIONS(2936), + [sym_identifier] = ACTIONS(2938), + [anon_sym_SEMI] = ACTIONS(2936), + [anon_sym_macro_rules_BANG] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_LBRACK] = ACTIONS(2936), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_RBRACE] = ACTIONS(2936), + [anon_sym_STAR] = ACTIONS(2936), + [anon_sym_u8] = ACTIONS(2938), + [anon_sym_i8] = ACTIONS(2938), + [anon_sym_u16] = ACTIONS(2938), + [anon_sym_i16] = ACTIONS(2938), + [anon_sym_u32] = ACTIONS(2938), + [anon_sym_i32] = ACTIONS(2938), + [anon_sym_u64] = ACTIONS(2938), + [anon_sym_i64] = ACTIONS(2938), + [anon_sym_u128] = ACTIONS(2938), + [anon_sym_i128] = ACTIONS(2938), + [anon_sym_isize] = ACTIONS(2938), + [anon_sym_usize] = ACTIONS(2938), + [anon_sym_f32] = ACTIONS(2938), + [anon_sym_f64] = ACTIONS(2938), + [anon_sym_bool] = ACTIONS(2938), + [anon_sym_str] = ACTIONS(2938), + [anon_sym_char] = ACTIONS(2938), + [anon_sym_DASH] = ACTIONS(2936), + [anon_sym_BANG] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2936), + [anon_sym_PIPE] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_DOT_DOT] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2936), + [anon_sym_POUND] = ACTIONS(2936), + [anon_sym_SQUOTE] = ACTIONS(2938), + [anon_sym_async] = ACTIONS(2938), + [anon_sym_become] = ACTIONS(2938), + [anon_sym_break] = ACTIONS(2938), + [anon_sym_const] = ACTIONS(2938), + [anon_sym_continue] = ACTIONS(2938), + [anon_sym_default] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2938), + [anon_sym_fn] = ACTIONS(2938), + [anon_sym_for] = ACTIONS(2938), + [anon_sym_gen] = ACTIONS(2938), + [anon_sym_if] = ACTIONS(2938), + [anon_sym_impl] = ACTIONS(2938), + [anon_sym_let] = ACTIONS(2938), + [anon_sym_loop] = ACTIONS(2938), + [anon_sym_match] = ACTIONS(2938), + [anon_sym_mod] = ACTIONS(2938), + [anon_sym_pub] = ACTIONS(2938), + [anon_sym_return] = ACTIONS(2938), + [anon_sym_static] = ACTIONS(2938), + [anon_sym_struct] = ACTIONS(2938), + [anon_sym_trait] = ACTIONS(2938), + [anon_sym_type] = ACTIONS(2938), + [anon_sym_union] = ACTIONS(2938), + [anon_sym_unsafe] = ACTIONS(2938), + [anon_sym_use] = ACTIONS(2938), + [anon_sym_while] = ACTIONS(2938), + [anon_sym_extern] = ACTIONS(2938), + [anon_sym_raw] = ACTIONS(2938), + [anon_sym_yield] = ACTIONS(2938), + [anon_sym_move] = ACTIONS(2938), + [anon_sym_try] = ACTIONS(2938), + [sym_integer_literal] = ACTIONS(2936), + [aux_sym_string_literal_token1] = ACTIONS(2936), + [sym_char_literal] = ACTIONS(2936), + [anon_sym_true] = ACTIONS(2938), + [anon_sym_false] = ACTIONS(2938), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2938), + [sym_super] = ACTIONS(2938), + [sym_crate] = ACTIONS(2938), + [sym_metavariable] = ACTIONS(2936), + [sym__raw_string_literal_start] = ACTIONS(2936), + [sym_float_literal] = ACTIONS(2936), }, [STATE(782)] = { [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3047), - [anon_sym_macro_rules_BANG] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_RBRACE] = ACTIONS(3047), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_u8] = ACTIONS(3049), - [anon_sym_i8] = ACTIONS(3049), - [anon_sym_u16] = ACTIONS(3049), - [anon_sym_i16] = ACTIONS(3049), - [anon_sym_u32] = ACTIONS(3049), - [anon_sym_i32] = ACTIONS(3049), - [anon_sym_u64] = ACTIONS(3049), - [anon_sym_i64] = ACTIONS(3049), - [anon_sym_u128] = ACTIONS(3049), - [anon_sym_i128] = ACTIONS(3049), - [anon_sym_isize] = ACTIONS(3049), - [anon_sym_usize] = ACTIONS(3049), - [anon_sym_f32] = ACTIONS(3049), - [anon_sym_f64] = ACTIONS(3049), - [anon_sym_bool] = ACTIONS(3049), - [anon_sym_str] = ACTIONS(3049), - [anon_sym_char] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3047), - [anon_sym_BANG] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3047), - [anon_sym_DOT_DOT] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(3047), - [anon_sym_POUND] = ACTIONS(3047), - [anon_sym_SQUOTE] = ACTIONS(3049), - [anon_sym_async] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_gen] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_impl] = ACTIONS(3049), - [anon_sym_let] = ACTIONS(3049), - [anon_sym_loop] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_mod] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_trait] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_use] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym_raw] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3049), - [anon_sym_move] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(3047), - [aux_sym_string_literal_token1] = ACTIONS(3047), - [sym_char_literal] = ACTIONS(3047), - [anon_sym_true] = ACTIONS(3049), - [anon_sym_false] = ACTIONS(3049), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3049), - [sym_super] = ACTIONS(3049), - [sym_crate] = ACTIONS(3049), - [sym_metavariable] = ACTIONS(3047), - [sym__raw_string_literal_start] = ACTIONS(3047), - [sym_float_literal] = ACTIONS(3047), + [ts_builtin_sym_end] = ACTIONS(2940), + [sym_identifier] = ACTIONS(2942), + [anon_sym_SEMI] = ACTIONS(2940), + [anon_sym_macro_rules_BANG] = ACTIONS(2940), + [anon_sym_LPAREN] = ACTIONS(2940), + [anon_sym_LBRACK] = ACTIONS(2940), + [anon_sym_LBRACE] = ACTIONS(2940), + [anon_sym_RBRACE] = ACTIONS(2940), + [anon_sym_STAR] = ACTIONS(2940), + [anon_sym_u8] = ACTIONS(2942), + [anon_sym_i8] = ACTIONS(2942), + [anon_sym_u16] = ACTIONS(2942), + [anon_sym_i16] = ACTIONS(2942), + [anon_sym_u32] = ACTIONS(2942), + [anon_sym_i32] = ACTIONS(2942), + [anon_sym_u64] = ACTIONS(2942), + [anon_sym_i64] = ACTIONS(2942), + [anon_sym_u128] = ACTIONS(2942), + [anon_sym_i128] = ACTIONS(2942), + [anon_sym_isize] = ACTIONS(2942), + [anon_sym_usize] = ACTIONS(2942), + [anon_sym_f32] = ACTIONS(2942), + [anon_sym_f64] = ACTIONS(2942), + [anon_sym_bool] = ACTIONS(2942), + [anon_sym_str] = ACTIONS(2942), + [anon_sym_char] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2940), + [anon_sym_BANG] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2940), + [anon_sym_PIPE] = ACTIONS(2940), + [anon_sym_LT] = ACTIONS(2940), + [anon_sym_DOT_DOT] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2940), + [anon_sym_POUND] = ACTIONS(2940), + [anon_sym_SQUOTE] = ACTIONS(2942), + [anon_sym_async] = ACTIONS(2942), + [anon_sym_become] = ACTIONS(2942), + [anon_sym_break] = ACTIONS(2942), + [anon_sym_const] = ACTIONS(2942), + [anon_sym_continue] = ACTIONS(2942), + [anon_sym_default] = ACTIONS(2942), + [anon_sym_enum] = ACTIONS(2942), + [anon_sym_fn] = ACTIONS(2942), + [anon_sym_for] = ACTIONS(2942), + [anon_sym_gen] = ACTIONS(2942), + [anon_sym_if] = ACTIONS(2942), + [anon_sym_impl] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2942), + [anon_sym_loop] = ACTIONS(2942), + [anon_sym_match] = ACTIONS(2942), + [anon_sym_mod] = ACTIONS(2942), + [anon_sym_pub] = ACTIONS(2942), + [anon_sym_return] = ACTIONS(2942), + [anon_sym_static] = ACTIONS(2942), + [anon_sym_struct] = ACTIONS(2942), + [anon_sym_trait] = ACTIONS(2942), + [anon_sym_type] = ACTIONS(2942), + [anon_sym_union] = ACTIONS(2942), + [anon_sym_unsafe] = ACTIONS(2942), + [anon_sym_use] = ACTIONS(2942), + [anon_sym_while] = ACTIONS(2942), + [anon_sym_extern] = ACTIONS(2942), + [anon_sym_raw] = ACTIONS(2942), + [anon_sym_yield] = ACTIONS(2942), + [anon_sym_move] = ACTIONS(2942), + [anon_sym_try] = ACTIONS(2942), + [sym_integer_literal] = ACTIONS(2940), + [aux_sym_string_literal_token1] = ACTIONS(2940), + [sym_char_literal] = ACTIONS(2940), + [anon_sym_true] = ACTIONS(2942), + [anon_sym_false] = ACTIONS(2942), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2942), + [sym_super] = ACTIONS(2942), + [sym_crate] = ACTIONS(2942), + [sym_metavariable] = ACTIONS(2940), + [sym__raw_string_literal_start] = ACTIONS(2940), + [sym_float_literal] = ACTIONS(2940), }, [STATE(783)] = { [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_macro_rules_BANG] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_u8] = ACTIONS(3053), - [anon_sym_i8] = ACTIONS(3053), - [anon_sym_u16] = ACTIONS(3053), - [anon_sym_i16] = ACTIONS(3053), - [anon_sym_u32] = ACTIONS(3053), - [anon_sym_i32] = ACTIONS(3053), - [anon_sym_u64] = ACTIONS(3053), - [anon_sym_i64] = ACTIONS(3053), - [anon_sym_u128] = ACTIONS(3053), - [anon_sym_i128] = ACTIONS(3053), - [anon_sym_isize] = ACTIONS(3053), - [anon_sym_usize] = ACTIONS(3053), - [anon_sym_f32] = ACTIONS(3053), - [anon_sym_f64] = ACTIONS(3053), - [anon_sym_bool] = ACTIONS(3053), - [anon_sym_str] = ACTIONS(3053), - [anon_sym_char] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3051), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_DOT_DOT] = ACTIONS(3051), - [anon_sym_COLON_COLON] = ACTIONS(3051), - [anon_sym_POUND] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3053), - [anon_sym_async] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_gen] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_impl] = ACTIONS(3053), - [anon_sym_let] = ACTIONS(3053), - [anon_sym_loop] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_mod] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_trait] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_use] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym_raw] = ACTIONS(3053), - [anon_sym_yield] = ACTIONS(3053), - [anon_sym_move] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(3051), - [aux_sym_string_literal_token1] = ACTIONS(3051), - [sym_char_literal] = ACTIONS(3051), - [anon_sym_true] = ACTIONS(3053), - [anon_sym_false] = ACTIONS(3053), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3053), - [sym_super] = ACTIONS(3053), - [sym_crate] = ACTIONS(3053), - [sym_metavariable] = ACTIONS(3051), - [sym__raw_string_literal_start] = ACTIONS(3051), - [sym_float_literal] = ACTIONS(3051), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1459), + [anon_sym_become] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_impl] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_pub] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_trait] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_raw] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_move] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), }, [STATE(784)] = { + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym_closure_expression] = STATE(3293), + [sym_closure_parameters] = STATE(206), + [sym__pattern] = STATE(3086), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_macro_rules_BANG] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_u8] = ACTIONS(3057), - [anon_sym_i8] = ACTIONS(3057), - [anon_sym_u16] = ACTIONS(3057), - [anon_sym_i16] = ACTIONS(3057), - [anon_sym_u32] = ACTIONS(3057), - [anon_sym_i32] = ACTIONS(3057), - [anon_sym_u64] = ACTIONS(3057), - [anon_sym_i64] = ACTIONS(3057), - [anon_sym_u128] = ACTIONS(3057), - [anon_sym_i128] = ACTIONS(3057), - [anon_sym_isize] = ACTIONS(3057), - [anon_sym_usize] = ACTIONS(3057), - [anon_sym_f32] = ACTIONS(3057), - [anon_sym_f64] = ACTIONS(3057), - [anon_sym_bool] = ACTIONS(3057), - [anon_sym_str] = ACTIONS(3057), - [anon_sym_char] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3055), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3055), - [anon_sym_DOT_DOT] = ACTIONS(3055), - [anon_sym_COLON_COLON] = ACTIONS(3055), - [anon_sym_POUND] = ACTIONS(3055), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_default] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_gen] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_impl] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_loop] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_mod] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_trait] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_use] = ACTIONS(3057), - [anon_sym_while] = ACTIONS(3057), - [anon_sym_extern] = ACTIONS(3057), - [anon_sym_raw] = ACTIONS(3057), - [anon_sym_yield] = ACTIONS(3057), - [anon_sym_move] = ACTIONS(3057), - [anon_sym_try] = ACTIONS(3057), - [sym_integer_literal] = ACTIONS(3055), - [aux_sym_string_literal_token1] = ACTIONS(3055), - [sym_char_literal] = ACTIONS(3055), - [anon_sym_true] = ACTIONS(3057), - [anon_sym_false] = ACTIONS(3057), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3057), - [sym_super] = ACTIONS(3057), - [sym_crate] = ACTIONS(3057), - [sym_metavariable] = ACTIONS(3055), - [sym__raw_string_literal_start] = ACTIONS(3055), - [sym_float_literal] = ACTIONS(3055), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_async] = ACTIONS(1765), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [anon_sym_move] = ACTIONS(1453), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(785)] = { + [sym_empty_statement] = STATE(1115), + [sym_macro_definition] = STATE(1115), + [sym_attribute_item] = STATE(1115), + [sym_inner_attribute_item] = STATE(1115), + [sym_mod_item] = STATE(1115), + [sym_foreign_mod_item] = STATE(1115), + [sym_struct_item] = STATE(1115), + [sym_union_item] = STATE(1115), + [sym_enum_item] = STATE(1115), + [sym_extern_crate_declaration] = STATE(1115), + [sym_const_item] = STATE(1115), + [sym_static_item] = STATE(1115), + [sym_type_item] = STATE(1115), + [sym_function_item] = STATE(1115), + [sym_function_signature_item] = STATE(1115), + [sym_function_modifiers] = STATE(3791), + [sym_impl_item] = STATE(1115), + [sym_trait_item] = STATE(1115), + [sym_associated_type] = STATE(1115), + [sym_let_declaration] = STATE(1115), + [sym_use_declaration] = STATE(1115), + [sym_extern_modifier] = STATE(2269), + [sym_visibility_modifier] = STATE(2038), + [sym_bracketed_type] = STATE(3742), + [sym_generic_type_with_turbofish] = STATE(3805), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(3463), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym_macro_rules_BANG] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_u8] = ACTIONS(3061), - [anon_sym_i8] = ACTIONS(3061), - [anon_sym_u16] = ACTIONS(3061), - [anon_sym_i16] = ACTIONS(3061), - [anon_sym_u32] = ACTIONS(3061), - [anon_sym_i32] = ACTIONS(3061), - [anon_sym_u64] = ACTIONS(3061), - [anon_sym_i64] = ACTIONS(3061), - [anon_sym_u128] = ACTIONS(3061), - [anon_sym_i128] = ACTIONS(3061), - [anon_sym_isize] = ACTIONS(3061), - [anon_sym_usize] = ACTIONS(3061), - [anon_sym_f32] = ACTIONS(3061), - [anon_sym_f64] = ACTIONS(3061), - [anon_sym_bool] = ACTIONS(3061), - [anon_sym_str] = ACTIONS(3061), - [anon_sym_char] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_DOT_DOT] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(3059), - [anon_sym_POUND] = ACTIONS(3059), - [anon_sym_SQUOTE] = ACTIONS(3061), - [anon_sym_async] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_default] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_gen] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_impl] = ACTIONS(3061), - [anon_sym_let] = ACTIONS(3061), - [anon_sym_loop] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_mod] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_static] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_trait] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_use] = ACTIONS(3061), - [anon_sym_while] = ACTIONS(3061), - [anon_sym_extern] = ACTIONS(3061), - [anon_sym_raw] = ACTIONS(3061), - [anon_sym_yield] = ACTIONS(3061), - [anon_sym_move] = ACTIONS(3061), - [anon_sym_try] = ACTIONS(3061), - [sym_integer_literal] = ACTIONS(3059), - [aux_sym_string_literal_token1] = ACTIONS(3059), - [sym_char_literal] = ACTIONS(3059), - [anon_sym_true] = ACTIONS(3061), - [anon_sym_false] = ACTIONS(3061), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(3061), - [sym_crate] = ACTIONS(3061), - [sym_metavariable] = ACTIONS(3059), - [sym__raw_string_literal_start] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3059), + [aux_sym_declaration_list_repeat1] = STATE(786), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2948), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2966), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_raw] = ACTIONS(2966), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2994), }, [STATE(786)] = { + [sym_empty_statement] = STATE(1115), + [sym_macro_definition] = STATE(1115), + [sym_attribute_item] = STATE(1115), + [sym_inner_attribute_item] = STATE(1115), + [sym_mod_item] = STATE(1115), + [sym_foreign_mod_item] = STATE(1115), + [sym_struct_item] = STATE(1115), + [sym_union_item] = STATE(1115), + [sym_enum_item] = STATE(1115), + [sym_extern_crate_declaration] = STATE(1115), + [sym_const_item] = STATE(1115), + [sym_static_item] = STATE(1115), + [sym_type_item] = STATE(1115), + [sym_function_item] = STATE(1115), + [sym_function_signature_item] = STATE(1115), + [sym_function_modifiers] = STATE(3791), + [sym_impl_item] = STATE(1115), + [sym_trait_item] = STATE(1115), + [sym_associated_type] = STATE(1115), + [sym_let_declaration] = STATE(1115), + [sym_use_declaration] = STATE(1115), + [sym_extern_modifier] = STATE(2269), + [sym_visibility_modifier] = STATE(2038), + [sym_bracketed_type] = STATE(3742), + [sym_generic_type_with_turbofish] = STATE(3805), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(3463), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_macro_rules_BANG] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_u8] = ACTIONS(3065), - [anon_sym_i8] = ACTIONS(3065), - [anon_sym_u16] = ACTIONS(3065), - [anon_sym_i16] = ACTIONS(3065), - [anon_sym_u32] = ACTIONS(3065), - [anon_sym_i32] = ACTIONS(3065), - [anon_sym_u64] = ACTIONS(3065), - [anon_sym_i64] = ACTIONS(3065), - [anon_sym_u128] = ACTIONS(3065), - [anon_sym_i128] = ACTIONS(3065), - [anon_sym_isize] = ACTIONS(3065), - [anon_sym_usize] = ACTIONS(3065), - [anon_sym_f32] = ACTIONS(3065), - [anon_sym_f64] = ACTIONS(3065), - [anon_sym_bool] = ACTIONS(3065), - [anon_sym_str] = ACTIONS(3065), - [anon_sym_char] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_POUND] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_async] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_gen] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_impl] = ACTIONS(3065), - [anon_sym_let] = ACTIONS(3065), - [anon_sym_loop] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_trait] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_use] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym_raw] = ACTIONS(3065), - [anon_sym_yield] = ACTIONS(3065), - [anon_sym_move] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [sym_integer_literal] = ACTIONS(3063), - [aux_sym_string_literal_token1] = ACTIONS(3063), - [sym_char_literal] = ACTIONS(3063), - [anon_sym_true] = ACTIONS(3065), - [anon_sym_false] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3065), - [sym_super] = ACTIONS(3065), - [sym_crate] = ACTIONS(3065), - [sym_metavariable] = ACTIONS(3063), - [sym__raw_string_literal_start] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3063), + [aux_sym_declaration_list_repeat1] = STATE(786), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(2996), + [anon_sym_SEMI] = ACTIONS(2999), + [anon_sym_macro_rules_BANG] = ACTIONS(3002), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_u8] = ACTIONS(3007), + [anon_sym_i8] = ACTIONS(3007), + [anon_sym_u16] = ACTIONS(3007), + [anon_sym_i16] = ACTIONS(3007), + [anon_sym_u32] = ACTIONS(3007), + [anon_sym_i32] = ACTIONS(3007), + [anon_sym_u64] = ACTIONS(3007), + [anon_sym_i64] = ACTIONS(3007), + [anon_sym_u128] = ACTIONS(3007), + [anon_sym_i128] = ACTIONS(3007), + [anon_sym_isize] = ACTIONS(3007), + [anon_sym_usize] = ACTIONS(3007), + [anon_sym_f32] = ACTIONS(3007), + [anon_sym_f64] = ACTIONS(3007), + [anon_sym_bool] = ACTIONS(3007), + [anon_sym_str] = ACTIONS(3007), + [anon_sym_char] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3010), + [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_const] = ACTIONS(3022), + [anon_sym_default] = ACTIONS(3025), + [anon_sym_enum] = ACTIONS(3028), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_gen] = ACTIONS(3034), + [anon_sym_impl] = ACTIONS(3037), + [anon_sym_let] = ACTIONS(3040), + [anon_sym_mod] = ACTIONS(3043), + [anon_sym_pub] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3049), + [anon_sym_struct] = ACTIONS(3052), + [anon_sym_trait] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3058), + [anon_sym_union] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3064), + [anon_sym_use] = ACTIONS(3067), + [anon_sym_extern] = ACTIONS(3070), + [anon_sym_raw] = ACTIONS(3034), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3073), + [sym_super] = ACTIONS(3073), + [sym_crate] = ACTIONS(3076), + [sym_metavariable] = ACTIONS(3079), }, [STATE(787)] = { + [sym_empty_statement] = STATE(1115), + [sym_macro_definition] = STATE(1115), + [sym_attribute_item] = STATE(1115), + [sym_inner_attribute_item] = STATE(1115), + [sym_mod_item] = STATE(1115), + [sym_foreign_mod_item] = STATE(1115), + [sym_struct_item] = STATE(1115), + [sym_union_item] = STATE(1115), + [sym_enum_item] = STATE(1115), + [sym_extern_crate_declaration] = STATE(1115), + [sym_const_item] = STATE(1115), + [sym_static_item] = STATE(1115), + [sym_type_item] = STATE(1115), + [sym_function_item] = STATE(1115), + [sym_function_signature_item] = STATE(1115), + [sym_function_modifiers] = STATE(3791), + [sym_impl_item] = STATE(1115), + [sym_trait_item] = STATE(1115), + [sym_associated_type] = STATE(1115), + [sym_let_declaration] = STATE(1115), + [sym_use_declaration] = STATE(1115), + [sym_extern_modifier] = STATE(2269), + [sym_visibility_modifier] = STATE(2038), + [sym_bracketed_type] = STATE(3742), + [sym_generic_type_with_turbofish] = STATE(3805), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(3463), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_macro_rules_BANG] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_u8] = ACTIONS(3069), - [anon_sym_i8] = ACTIONS(3069), - [anon_sym_u16] = ACTIONS(3069), - [anon_sym_i16] = ACTIONS(3069), - [anon_sym_u32] = ACTIONS(3069), - [anon_sym_i32] = ACTIONS(3069), - [anon_sym_u64] = ACTIONS(3069), - [anon_sym_i64] = ACTIONS(3069), - [anon_sym_u128] = ACTIONS(3069), - [anon_sym_i128] = ACTIONS(3069), - [anon_sym_isize] = ACTIONS(3069), - [anon_sym_usize] = ACTIONS(3069), - [anon_sym_f32] = ACTIONS(3069), - [anon_sym_f64] = ACTIONS(3069), - [anon_sym_bool] = ACTIONS(3069), - [anon_sym_str] = ACTIONS(3069), - [anon_sym_char] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_POUND] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_default] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_gen] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_impl] = ACTIONS(3069), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_loop] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_trait] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_use] = ACTIONS(3069), - [anon_sym_while] = ACTIONS(3069), - [anon_sym_extern] = ACTIONS(3069), - [anon_sym_raw] = ACTIONS(3069), - [anon_sym_yield] = ACTIONS(3069), - [anon_sym_move] = ACTIONS(3069), - [anon_sym_try] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [aux_sym_string_literal_token1] = ACTIONS(3067), - [sym_char_literal] = ACTIONS(3067), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3069), - [sym_super] = ACTIONS(3069), - [sym_crate] = ACTIONS(3069), - [sym_metavariable] = ACTIONS(3067), - [sym__raw_string_literal_start] = ACTIONS(3067), - [sym_float_literal] = ACTIONS(3067), + [aux_sym_declaration_list_repeat1] = STATE(789), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3082), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2966), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_raw] = ACTIONS(2966), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2994), }, [STATE(788)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(1048), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_pattern] = STATE(3572), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(796), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_match_arm_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(789)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_const_parameter] = STATE(2962), - [sym_type_parameter] = STATE(2962), - [sym_lifetime_parameter] = STATE(2962), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3194), - [sym_bracketed_type] = STATE(3750), - [sym_qualified_type] = STATE(3676), - [sym_lifetime] = STATE(2554), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_empty_statement] = STATE(1115), + [sym_macro_definition] = STATE(1115), + [sym_attribute_item] = STATE(1115), + [sym_inner_attribute_item] = STATE(1115), + [sym_mod_item] = STATE(1115), + [sym_foreign_mod_item] = STATE(1115), + [sym_struct_item] = STATE(1115), + [sym_union_item] = STATE(1115), + [sym_enum_item] = STATE(1115), + [sym_extern_crate_declaration] = STATE(1115), + [sym_const_item] = STATE(1115), + [sym_static_item] = STATE(1115), + [sym_type_item] = STATE(1115), + [sym_function_item] = STATE(1115), + [sym_function_signature_item] = STATE(1115), + [sym_function_modifiers] = STATE(3791), + [sym_impl_item] = STATE(1115), + [sym_trait_item] = STATE(1115), + [sym_associated_type] = STATE(1115), + [sym_let_declaration] = STATE(1115), + [sym_use_declaration] = STATE(1115), + [sym_extern_modifier] = STATE(2269), + [sym_visibility_modifier] = STATE(2038), + [sym_bracketed_type] = STATE(3742), + [sym_generic_type_with_turbofish] = STATE(3805), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(3463), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(2140), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(3093), + [aux_sym_declaration_list_repeat1] = STATE(786), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3084), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2966), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_raw] = ACTIONS(2966), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2994), }, [STATE(790)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_attribute_item] = STATE(1390), + [sym_inner_attribute_item] = STATE(1390), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_match_pattern] = STATE(3755), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3151), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_match_arm_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(1717), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(791)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_empty_statement] = STATE(1115), + [sym_macro_definition] = STATE(1115), + [sym_attribute_item] = STATE(1115), + [sym_inner_attribute_item] = STATE(1115), + [sym_mod_item] = STATE(1115), + [sym_foreign_mod_item] = STATE(1115), + [sym_struct_item] = STATE(1115), + [sym_union_item] = STATE(1115), + [sym_enum_item] = STATE(1115), + [sym_extern_crate_declaration] = STATE(1115), + [sym_const_item] = STATE(1115), + [sym_static_item] = STATE(1115), + [sym_type_item] = STATE(1115), + [sym_function_item] = STATE(1115), + [sym_function_signature_item] = STATE(1115), + [sym_function_modifiers] = STATE(3791), + [sym_impl_item] = STATE(1115), + [sym_trait_item] = STATE(1115), + [sym_associated_type] = STATE(1115), + [sym_let_declaration] = STATE(1115), + [sym_use_declaration] = STATE(1115), + [sym_extern_modifier] = STATE(2269), + [sym_visibility_modifier] = STATE(2038), + [sym_bracketed_type] = STATE(3742), + [sym_generic_type_with_turbofish] = STATE(3805), + [sym_macro_invocation] = STATE(1115), + [sym_scoped_identifier] = STATE(3463), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_declaration_list_repeat1] = STATE(785), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2946), + [anon_sym_macro_rules_BANG] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(3086), + [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_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(2958), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2962), + [anon_sym_fn] = ACTIONS(2964), + [anon_sym_gen] = ACTIONS(2966), + [anon_sym_impl] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2970), + [anon_sym_mod] = ACTIONS(2972), + [anon_sym_pub] = ACTIONS(71), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_struct] = ACTIONS(2976), + [anon_sym_trait] = ACTIONS(2978), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_union] = ACTIONS(2982), + [anon_sym_unsafe] = ACTIONS(2984), + [anon_sym_use] = ACTIONS(2986), + [anon_sym_extern] = ACTIONS(2988), + [anon_sym_raw] = ACTIONS(2966), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2990), + [sym_super] = ACTIONS(2990), + [sym_crate] = ACTIONS(2992), + [sym_metavariable] = ACTIONS(2994), }, [STATE(792)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_const_parameter] = STATE(3067), + [sym_type_parameter] = STATE(3067), + [sym_lifetime_parameter] = STATE(3067), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3756), + [sym_qualified_type] = STATE(3549), + [sym_lifetime] = STATE(2555), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_enum_variant_list_repeat1] = STATE(2162), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(3096), }, [STATE(793)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(933), + [sym__type] = STATE(2772), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_enum_variant_list_repeat1] = STATE(805), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(794)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(795)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(796)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(909), - [sym__type] = STATE(2751), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [aux_sym_enum_variant_list_repeat1] = STATE(1086), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(797)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2645), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(798)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2810), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(799)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2664), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_enum_variant_list_repeat1] = STATE(803), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2670), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2721), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3124), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(801)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(987), + [sym__type] = STATE(2940), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2722), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2657), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(3130), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(803)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(1034), - [sym__type] = STATE(3143), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(968), + [sym__type] = STATE(3129), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [aux_sym_enum_variant_list_repeat1] = STATE(1086), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_enum_variant_list_repeat1] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2636), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2690), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(1583), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_attribute_item] = STATE(1122), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym_visibility_modifier] = STATE(963), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [aux_sym_enum_variant_list_repeat1] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_POUND] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(3108), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(3110), + [sym_metavariable] = ACTIONS(1669), }, [STATE(806)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2830), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2640), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(3138), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(808)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2641), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COMMA] = ACTIONS(3142), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(810)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(811)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(812)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(813)] = { - [sym_parameter] = STATE(3172), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2870), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_parameter] = STATE(3179), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2668), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3154), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3156), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(814)] = { - [sym_parameter] = STATE(3172), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2598), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_parameter] = STATE(3179), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2543), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3154), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3156), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(815)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(816)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_parameter] = STATE(3395), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3014), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3154), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3156), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(817)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(818)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(819)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2765), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2822), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3159), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3164), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3166), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(820)] = { - [sym_parameter] = STATE(3371), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2993), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(821)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3450), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(3170), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(822)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3479), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(3172), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3471), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_RBRACK] = ACTIONS(3176), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3104), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2826), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3178), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2931), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2521), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3180), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(827)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2559), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3161), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(828)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2228), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3114), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3012), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3198), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3134), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2843), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2197), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3163), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3061), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2785), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(833)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2578), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3350), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(834)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3348), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3007), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3010), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3122), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3023), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2220), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2903), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3341), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3056), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2229), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2231), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3226), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2594), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2221), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3167), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(841)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3407), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3380), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(842)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2615), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2562), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(843)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2550), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(3028), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3169), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(844)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2201), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(845)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2215), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(2980), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(3182), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(846)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2209), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2236), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(847)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3017), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2990), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(848)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3252), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(2995), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(849)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2892), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2224), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [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(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3184), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(850)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3474), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3704), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3426), + [sym_macro_invocation] = STATE(3080), + [sym_scoped_identifier] = STATE(2245), + [sym_scoped_type_identifier] = STATE(3108), + [sym_const_block] = STATE(3080), + [sym__pattern] = STATE(2981), + [sym_generic_pattern] = STATE(3080), + [sym_tuple_pattern] = STATE(3080), + [sym_slice_pattern] = STATE(3080), + [sym_tuple_struct_pattern] = STATE(3080), + [sym_struct_pattern] = STATE(3080), + [sym_remaining_field_pattern] = STATE(3080), + [sym_mut_pattern] = STATE(3080), + [sym_range_pattern] = STATE(3080), + [sym_ref_pattern] = STATE(3080), + [sym_captured_pattern] = STATE(3080), + [sym_reference_pattern] = STATE(3080), + [sym_or_pattern] = STATE(3080), + [sym__literal_pattern] = STATE(2429), + [sym_negative_literal] = STATE(2517), + [sym_string_literal] = STATE(2517), + [sym_raw_string_literal] = STATE(2517), + [sym_boolean_literal] = STATE(2517), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1695), + [anon_sym_LBRACK] = ACTIONS(1697), + [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(1703), + [anon_sym_AMP] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), + [anon_sym_COLON_COLON] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_default] = ACTIONS(1721), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_union] = ACTIONS(1721), + [anon_sym_ref] = ACTIONS(1723), + [sym_mutable_specifier] = ACTIONS(1725), + [anon_sym_raw] = ACTIONS(1721), + [sym_integer_literal] = ACTIONS(1727), + [aux_sym_string_literal_token1] = ACTIONS(1729), + [sym_char_literal] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(1731), + [anon_sym_false] = ACTIONS(1731), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1733), + [sym_super] = ACTIONS(1733), + [sym_crate] = ACTIONS(1733), + [sym_metavariable] = ACTIONS(1735), + [sym__raw_string_literal_start] = ACTIONS(1737), + [sym_float_literal] = ACTIONS(1727), }, [STATE(851)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3477), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(2553), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(3186), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(852)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3478), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3460), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(853)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3480), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3483), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3256), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3489), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3175), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(855)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1753), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3490), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [sym_mutable_specifier] = ACTIONS(3207), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(856)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3491), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3215), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3217), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(857)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_bracketed_type] = STATE(3748), + [sym_generic_type] = STATE(3685), + [sym_generic_type_with_turbofish] = STATE(3209), + [sym_macro_invocation] = STATE(2211), + [sym_scoped_identifier] = STATE(2045), + [sym_scoped_type_identifier] = STATE(2955), + [sym_const_block] = STATE(2211), + [sym__pattern] = STATE(3492), + [sym_generic_pattern] = STATE(2211), + [sym_tuple_pattern] = STATE(2211), + [sym_slice_pattern] = STATE(2211), + [sym_tuple_struct_pattern] = STATE(2211), + [sym_struct_pattern] = STATE(2211), + [sym_remaining_field_pattern] = STATE(2211), + [sym_mut_pattern] = STATE(2211), + [sym_range_pattern] = STATE(2211), + [sym_ref_pattern] = STATE(2211), + [sym_captured_pattern] = STATE(2211), + [sym_reference_pattern] = STATE(2211), + [sym_or_pattern] = STATE(2211), + [sym__literal_pattern] = STATE(2132), + [sym_negative_literal] = STATE(2119), + [sym_string_literal] = STATE(2119), + [sym_raw_string_literal] = STATE(2119), + [sym_boolean_literal] = STATE(2119), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3219), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [sym_identifier] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_LBRACK] = ACTIONS(1757), + [anon_sym_u8] = ACTIONS(1759), + [anon_sym_i8] = ACTIONS(1759), + [anon_sym_u16] = ACTIONS(1759), + [anon_sym_i16] = ACTIONS(1759), + [anon_sym_u32] = ACTIONS(1759), + [anon_sym_i32] = ACTIONS(1759), + [anon_sym_u64] = ACTIONS(1759), + [anon_sym_i64] = ACTIONS(1759), + [anon_sym_u128] = ACTIONS(1759), + [anon_sym_i128] = ACTIONS(1759), + [anon_sym_isize] = ACTIONS(1759), + [anon_sym_usize] = ACTIONS(1759), + [anon_sym_f32] = ACTIONS(1759), + [anon_sym_f64] = ACTIONS(1759), + [anon_sym_bool] = ACTIONS(1759), + [anon_sym_str] = ACTIONS(1759), + [anon_sym_char] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1767), + [anon_sym_default] = ACTIONS(1769), + [anon_sym_gen] = ACTIONS(1769), + [anon_sym_union] = ACTIONS(1769), + [anon_sym_ref] = ACTIONS(1341), + [sym_mutable_specifier] = ACTIONS(1451), + [anon_sym_raw] = ACTIONS(1769), + [sym_integer_literal] = ACTIONS(1347), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1347), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1771), + [sym_super] = ACTIONS(1771), + [sym_crate] = ACTIONS(1771), + [sym_metavariable] = ACTIONS(1773), + [sym__raw_string_literal_start] = ACTIONS(1359), + [sym_float_literal] = ACTIONS(1347), }, [STATE(858)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(3190), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3192), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(859)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1496), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3422), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [sym_mutable_specifier] = ACTIONS(3253), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [sym_mutable_specifier] = ACTIONS(3198), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(860)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(962), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2500), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2252), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [sym_mutable_specifier] = ACTIONS(3230), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(861)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1462), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [sym_mutable_specifier] = ACTIONS(3266), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(862)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [sym_mutable_specifier] = ACTIONS(3272), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(863)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3269), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(3274), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(864)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3370), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(859), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [sym_mutable_specifier] = ACTIONS(3276), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(865)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(980), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2469), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_higher_ranked_trait_bound] = STATE(2335), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2336), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2505), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2260), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(866)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2332), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2334), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_higher_ranked_trait_bound] = STATE(2335), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2339), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(867)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_higher_ranked_trait_bound] = STATE(2253), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2295), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(868)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(869)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2796), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(870)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(871)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2729), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3054), + [sym_bracketed_type] = STATE(3756), + [sym_qualified_type] = STATE(3549), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(873)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(898), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2443), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2273), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(874)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(875)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(938), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2493), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2440), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2244), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(876)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2332), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2333), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(877)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [sym_mutable_specifier] = ACTIONS(3297), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(878)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3194), - [sym_bracketed_type] = STATE(3750), - [sym_qualified_type] = STATE(3676), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(879)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(921), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2502), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2257), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(862), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [sym_mutable_specifier] = ACTIONS(3304), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(880)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(932), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2504), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2417), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2252), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3303), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(881)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2699), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3310), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(882)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1551), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(859), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(971), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2476), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2481), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2278), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [sym_mutable_specifier] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(883)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_type_parameters] = STATE(986), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2491), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2492), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2284), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(884)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2282), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2284), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(885)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3285), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1501), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(861), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [sym_mutable_specifier] = ACTIONS(3320), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(886)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2090), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2729), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(887)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3263), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(860), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [sym_mutable_specifier] = ACTIONS(3322), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(888)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2099), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(863), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(3324), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(889)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2504), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_RPAREN] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(890)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3003), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2702), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(891)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2852), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(892)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2853), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(893)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2969), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3421), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(894)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1527), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1793), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(1793), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(1793), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(3330), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(895)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1531), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1459), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(896)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1462), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(897)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3422), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(898)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2242), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(899)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2599), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2478), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(900)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3127), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(901)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2800), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2512), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(902)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1552), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(903)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(904)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1796), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(905)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2510), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(906)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1441), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1857), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(907)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1496), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1801), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(908)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2878), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1803), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(909)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1479), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(1479), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(1479), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(3334), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(910)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3136), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(911)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(912)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1810), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(913)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2464), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(914)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3315), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(915)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3321), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(916)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2761), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1461), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(917)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1807), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3038), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(918)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1810), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3802), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1810), - [sym_tuple_type] = STATE(1810), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1810), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3443), - [sym_scoped_type_identifier] = STATE(1604), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1815), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3321), - [anon_sym_i8] = ACTIONS(3321), - [anon_sym_u16] = ACTIONS(3321), - [anon_sym_i16] = ACTIONS(3321), - [anon_sym_u32] = ACTIONS(3321), - [anon_sym_i32] = ACTIONS(3321), - [anon_sym_u64] = ACTIONS(3321), - [anon_sym_i64] = ACTIONS(3321), - [anon_sym_u128] = ACTIONS(3321), - [anon_sym_i128] = ACTIONS(3321), - [anon_sym_isize] = ACTIONS(3321), - [anon_sym_usize] = ACTIONS(3321), - [anon_sym_f32] = ACTIONS(3321), - [anon_sym_f64] = ACTIONS(3321), - [anon_sym_bool] = ACTIONS(3321), - [anon_sym_str] = ACTIONS(3321), - [anon_sym_char] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_gen] = ACTIONS(3327), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3329), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(919)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(920)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1768), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(921)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2472), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2281), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1770), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3799), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1770), + [sym_tuple_type] = STATE(1770), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1674), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1770), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3451), + [sym_scoped_type_identifier] = STATE(1619), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3340), + [anon_sym_i8] = ACTIONS(3340), + [anon_sym_u16] = ACTIONS(3340), + [anon_sym_i16] = ACTIONS(3340), + [anon_sym_u32] = ACTIONS(3340), + [anon_sym_i32] = ACTIONS(3340), + [anon_sym_u64] = ACTIONS(3340), + [anon_sym_i64] = ACTIONS(3340), + [anon_sym_u128] = ACTIONS(3340), + [anon_sym_i128] = ACTIONS(3340), + [anon_sym_isize] = ACTIONS(3340), + [anon_sym_usize] = ACTIONS(3340), + [anon_sym_f32] = ACTIONS(3340), + [anon_sym_f64] = ACTIONS(3340), + [anon_sym_bool] = ACTIONS(3340), + [anon_sym_str] = ACTIONS(3340), + [anon_sym_char] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_gen] = ACTIONS(3346), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3348), }, [STATE(922)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1893), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3802), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1893), - [sym_tuple_type] = STATE(1893), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1702), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1893), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3443), - [sym_scoped_type_identifier] = STATE(1610), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1463), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3321), - [anon_sym_i8] = ACTIONS(3321), - [anon_sym_u16] = ACTIONS(3321), - [anon_sym_i16] = ACTIONS(3321), - [anon_sym_u32] = ACTIONS(3321), - [anon_sym_i32] = ACTIONS(3321), - [anon_sym_u64] = ACTIONS(3321), - [anon_sym_i64] = ACTIONS(3321), - [anon_sym_u128] = ACTIONS(3321), - [anon_sym_i128] = ACTIONS(3321), - [anon_sym_isize] = ACTIONS(3321), - [anon_sym_usize] = ACTIONS(3321), - [anon_sym_f32] = ACTIONS(3321), - [anon_sym_f64] = ACTIONS(3321), - [anon_sym_bool] = ACTIONS(3321), - [anon_sym_str] = ACTIONS(3321), - [anon_sym_char] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3327), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3329), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(923)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3013), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2729), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(924)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2646), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(925)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2647), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(926)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1529), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(927)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2405), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1468), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(928)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2076), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(929)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2645), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(930)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1753), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1470), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(931)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1874), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(1874), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(1874), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1797), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3799), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1797), + [sym_tuple_type] = STATE(1797), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1689), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1797), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3451), + [sym_scoped_type_identifier] = STATE(1621), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3340), + [anon_sym_i8] = ACTIONS(3340), + [anon_sym_u16] = ACTIONS(3340), + [anon_sym_i16] = ACTIONS(3340), + [anon_sym_u32] = ACTIONS(3340), + [anon_sym_i32] = ACTIONS(3340), + [anon_sym_u64] = ACTIONS(3340), + [anon_sym_i64] = ACTIONS(3340), + [anon_sym_u128] = ACTIONS(3340), + [anon_sym_i128] = ACTIONS(3340), + [anon_sym_isize] = ACTIONS(3340), + [anon_sym_usize] = ACTIONS(3340), + [anon_sym_f32] = ACTIONS(3340), + [anon_sym_f64] = ACTIONS(3340), + [anon_sym_bool] = ACTIONS(3340), + [anon_sym_str] = ACTIONS(3340), + [anon_sym_char] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3346), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(3346), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(3346), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3348), }, [STATE(932)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2528), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2467), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2518), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2247), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(933)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(934)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2821), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2096), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3624), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2096), + [sym_tuple_type] = STATE(2096), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2064), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2096), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2275), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(935)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1438), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2609), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(936)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2537), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(937)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3196), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(938)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2489), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2465), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2273), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(939)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3143), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(940)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1550), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2871), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(941)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3171), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2689), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(942)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1499), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3537), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1499), - [sym_tuple_type] = STATE(1499), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1411), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1499), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3425), - [sym_scoped_type_identifier] = STATE(1096), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2488), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3345), - [anon_sym_i8] = ACTIONS(3345), - [anon_sym_u16] = ACTIONS(3345), - [anon_sym_i16] = ACTIONS(3345), - [anon_sym_u32] = ACTIONS(3345), - [anon_sym_i32] = ACTIONS(3345), - [anon_sym_u64] = ACTIONS(3345), - [anon_sym_i64] = ACTIONS(3345), - [anon_sym_u128] = ACTIONS(3345), - [anon_sym_i128] = ACTIONS(3345), - [anon_sym_isize] = ACTIONS(3345), - [anon_sym_usize] = ACTIONS(3345), - [anon_sym_f32] = ACTIONS(3345), - [anon_sym_f64] = ACTIONS(3345), - [anon_sym_bool] = ACTIONS(3345), - [anon_sym_str] = ACTIONS(3345), - [anon_sym_char] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_gen] = ACTIONS(3351), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3353), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(943)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1440), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(944)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2888), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(945)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3115), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(946)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3364), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(947)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1890), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1522), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2599), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1906), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2098), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1909), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1448), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2490), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1523), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1825), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2528), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2867), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2292), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1524), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2089), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3584), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2056), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2089), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2263), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3120), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2090), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2491), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2093), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1932), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2299), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2886), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3124), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3201), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2510), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2503), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2258), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3255), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2642), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3256), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1444), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2076), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(2076), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(2076), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3092), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1503), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(1503), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(1503), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2993), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2972), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2333), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1542), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3537), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1542), - [sym_tuple_type] = STATE(1542), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1406), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1542), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3425), - [sym_scoped_type_identifier] = STATE(1094), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2956), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3345), - [anon_sym_i8] = ACTIONS(3345), - [anon_sym_u16] = ACTIONS(3345), - [anon_sym_i16] = ACTIONS(3345), - [anon_sym_u32] = ACTIONS(3345), - [anon_sym_i32] = ACTIONS(3345), - [anon_sym_u64] = ACTIONS(3345), - [anon_sym_i64] = ACTIONS(3345), - [anon_sym_u128] = ACTIONS(3345), - [anon_sym_i128] = ACTIONS(3345), - [anon_sym_isize] = ACTIONS(3345), - [anon_sym_usize] = ACTIONS(3345), - [anon_sym_f32] = ACTIONS(3345), - [anon_sym_f64] = ACTIONS(3345), - [anon_sym_bool] = ACTIONS(3345), - [anon_sym_str] = ACTIONS(3345), - [anon_sym_char] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3351), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3353), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2492), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2885), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2520), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2489), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2243), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2565), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2480), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2325), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2081), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3624), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2055), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2081), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2248), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2770), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1752), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2910), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2568), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2787), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2904), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2469), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2506), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2265), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1940), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2414), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2781), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2649), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2666), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2914), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2498), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2287), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3129), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2096), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3776), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2699), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2096), - [sym_tuple_type] = STATE(2096), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2058), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2096), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2032), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2080), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2077), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2090), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3146), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2081), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3773), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2055), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2081), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2039), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2311), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2509), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2573), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2713), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2676), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2957), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2430), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2733), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2671), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2964), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2085), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1004)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2755), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2963), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1005)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2673), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1006)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2674), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1007)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2972), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1008)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2677), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1009)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2315), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2090), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1010)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2093), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1011)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2095), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1012)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3315), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2549), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1014)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2471), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1015)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2796), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1016)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2577), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1017)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1018)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1019)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2477), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1020)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2479), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1021)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2480), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1022)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2842), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2482), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1023)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2844), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1024)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2691), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1025)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2692), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1026)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2424), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2773), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1027)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2098), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1028)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3029), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1029)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2998), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2449), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1030)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2499), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1031)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2319), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2501), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1032)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2345), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1033)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1034)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3011), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1035)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1541), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3167), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1036)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3024), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1037)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2301), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2297), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1038)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2976), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3459), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1039)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1040)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2096), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3584), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2096), - [sym_tuple_type] = STATE(2096), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2058), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2096), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2235), + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1848), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(1041)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2080), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1042)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2337), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1043)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2081), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2457), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1044)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2447), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1045)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2592), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1046)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3107), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1047)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2459), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1048)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2751), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2460), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1049)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3178), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1050)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3168), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1051)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2473), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1052)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2089), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3776), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2872), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2056), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2089), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2036), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1053)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1054)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1464), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3598), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1464), + [sym_tuple_type] = STATE(1464), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1414), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1464), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3431), + [sym_scoped_type_identifier] = STATE(1103), [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3382), + [anon_sym_i8] = ACTIONS(3382), + [anon_sym_u16] = ACTIONS(3382), + [anon_sym_i16] = ACTIONS(3382), + [anon_sym_u32] = ACTIONS(3382), + [anon_sym_i32] = ACTIONS(3382), + [anon_sym_u64] = ACTIONS(3382), + [anon_sym_i64] = ACTIONS(3382), + [anon_sym_u128] = ACTIONS(3382), + [anon_sym_i128] = ACTIONS(3382), + [anon_sym_isize] = ACTIONS(3382), + [anon_sym_usize] = ACTIONS(3382), + [anon_sym_f32] = ACTIONS(3382), + [anon_sym_f64] = ACTIONS(3382), + [anon_sym_bool] = ACTIONS(3382), + [anon_sym_str] = ACTIONS(3382), + [anon_sym_char] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3386), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(3386), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3388), }, [STATE(1055)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3340), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2096), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3773), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2096), + [sym_tuple_type] = STATE(2096), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2064), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2096), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2042), [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1056)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3116), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2079), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1056), [sym_block_comment] = STATE(1056), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1057)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2081), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_function_modifiers] = STATE(3571), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3367), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3624), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3624), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2294), [sym_line_comment] = STATE(1057), [sym_block_comment] = STATE(1057), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1641), + [anon_sym_QMARK] = ACTIONS(1643), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(1647), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1657), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1661), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1663), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1058)] = { - [sym_attribute_item] = STATE(1060), + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1483), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1500), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(1483), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1483), + [sym_tuple_type] = STATE(1483), + [sym_unit_type] = STATE(1483), + [sym_generic_type] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1483), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(1483), + [sym_pointer_type] = STATE(1483), + [sym_never_type] = STATE(1483), + [sym_abstract_type] = STATE(1483), + [sym_dynamic_type] = STATE(1483), + [sym_macro_invocation] = STATE(1483), + [sym_scoped_identifier] = STATE(3355), + [sym_scoped_type_identifier] = STATE(1109), [sym_line_comment] = STATE(1058), [sym_block_comment] = STATE(1058), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(776), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_u8] = ACTIONS(3381), - [anon_sym_i8] = ACTIONS(3381), - [anon_sym_u16] = ACTIONS(3381), - [anon_sym_i16] = ACTIONS(3381), - [anon_sym_u32] = ACTIONS(3381), - [anon_sym_i32] = ACTIONS(3381), - [anon_sym_u64] = ACTIONS(3381), - [anon_sym_i64] = ACTIONS(3381), - [anon_sym_u128] = ACTIONS(3381), - [anon_sym_i128] = ACTIONS(3381), - [anon_sym_isize] = ACTIONS(3381), - [anon_sym_usize] = ACTIONS(3381), - [anon_sym_f32] = ACTIONS(3381), - [anon_sym_f64] = ACTIONS(3381), - [anon_sym_bool] = ACTIONS(3381), - [anon_sym_str] = ACTIONS(3381), - [anon_sym_char] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(776), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(776), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(776), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(776), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_gen] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_loop] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_union] = ACTIONS(3381), - [anon_sym_unsafe] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(776), - [aux_sym_string_literal_token1] = ACTIONS(776), - [sym_char_literal] = ACTIONS(776), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_crate] = ACTIONS(3381), - [sym_metavariable] = ACTIONS(776), - [sym__raw_string_literal_start] = ACTIONS(776), - [sym_float_literal] = ACTIONS(776), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_STAR] = ACTIONS(3244), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3248), + [anon_sym_i8] = ACTIONS(3248), + [anon_sym_u16] = ACTIONS(3248), + [anon_sym_i16] = ACTIONS(3248), + [anon_sym_u32] = ACTIONS(3248), + [anon_sym_i32] = ACTIONS(3248), + [anon_sym_u64] = ACTIONS(3248), + [anon_sym_i64] = ACTIONS(3248), + [anon_sym_u128] = ACTIONS(3248), + [anon_sym_i128] = ACTIONS(3248), + [anon_sym_isize] = ACTIONS(3248), + [anon_sym_usize] = ACTIONS(3248), + [anon_sym_f32] = ACTIONS(3248), + [anon_sym_f64] = ACTIONS(3248), + [anon_sym_bool] = ACTIONS(3248), + [anon_sym_str] = ACTIONS(3248), + [anon_sym_char] = ACTIONS(3248), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_AMP] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3256), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3260), + [anon_sym_impl] = ACTIONS(3262), + [anon_sym_union] = ACTIONS(3260), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3264), + [anon_sym_raw] = ACTIONS(3260), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3270), }, [STATE(1059)] = { + [sym_function_modifiers] = STATE(3649), + [sym_removed_trait_bound] = STATE(1760), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(3710), + [sym_lifetime] = STATE(3799), + [sym_array_type] = STATE(1760), + [sym_for_lifetimes] = STATE(1630), + [sym_function_type] = STATE(1760), + [sym_tuple_type] = STATE(1760), + [sym_unit_type] = STATE(1760), + [sym_generic_type] = STATE(1667), + [sym_generic_type_with_turbofish] = STATE(3701), + [sym_bounded_type] = STATE(1760), + [sym_use_bounds] = STATE(3799), + [sym_reference_type] = STATE(1760), + [sym_pointer_type] = STATE(1760), + [sym_never_type] = STATE(1760), + [sym_abstract_type] = STATE(1760), + [sym_dynamic_type] = STATE(1760), + [sym_macro_invocation] = STATE(1760), + [sym_scoped_identifier] = STATE(3446), + [sym_scoped_type_identifier] = STATE(1626), [sym_line_comment] = STATE(1059), [sym_block_comment] = STATE(1059), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_LBRACE] = 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_COMMA] = 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_for] = ACTIONS(1905), - [anon_sym_gen] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_raw] = 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(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_STAR] = ACTIONS(3208), + [anon_sym_QMARK] = ACTIONS(3210), + [anon_sym_u8] = ACTIONS(3212), + [anon_sym_i8] = ACTIONS(3212), + [anon_sym_u16] = ACTIONS(3212), + [anon_sym_i16] = ACTIONS(3212), + [anon_sym_u32] = ACTIONS(3212), + [anon_sym_i32] = ACTIONS(3212), + [anon_sym_u64] = ACTIONS(3212), + [anon_sym_i64] = ACTIONS(3212), + [anon_sym_u128] = ACTIONS(3212), + [anon_sym_i128] = ACTIONS(3212), + [anon_sym_isize] = ACTIONS(3212), + [anon_sym_usize] = ACTIONS(3212), + [anon_sym_f32] = ACTIONS(3212), + [anon_sym_f64] = ACTIONS(3212), + [anon_sym_bool] = ACTIONS(3212), + [anon_sym_str] = ACTIONS(3212), + [anon_sym_char] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_fn] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(3224), + [anon_sym_impl] = ACTIONS(3226), + [anon_sym_union] = ACTIONS(3224), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(3228), + [anon_sym_raw] = ACTIONS(3224), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_crate] = ACTIONS(3232), + [sym_metavariable] = ACTIONS(3234), }, [STATE(1060)] = { + [sym_function_modifiers] = STATE(3772), + [sym_removed_trait_bound] = STATE(1504), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(3598), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3598), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1622), + [sym_function_type] = STATE(1504), + [sym_tuple_type] = STATE(1504), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(1427), + [sym_generic_type_with_turbofish] = STATE(3825), + [sym_bounded_type] = STATE(1504), + [sym_use_bounds] = STATE(3598), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3431), + [sym_scoped_type_identifier] = STATE(1099), [sym_line_comment] = STATE(1060), [sym_block_comment] = STATE(1060), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_u8] = ACTIONS(3383), - [anon_sym_i8] = ACTIONS(3383), - [anon_sym_u16] = ACTIONS(3383), - [anon_sym_i16] = ACTIONS(3383), - [anon_sym_u32] = ACTIONS(3383), - [anon_sym_i32] = ACTIONS(3383), - [anon_sym_u64] = ACTIONS(3383), - [anon_sym_i64] = ACTIONS(3383), - [anon_sym_u128] = ACTIONS(3383), - [anon_sym_i128] = ACTIONS(3383), - [anon_sym_isize] = ACTIONS(3383), - [anon_sym_usize] = ACTIONS(3383), - [anon_sym_f32] = ACTIONS(3383), - [anon_sym_f64] = ACTIONS(3383), - [anon_sym_bool] = ACTIONS(3383), - [anon_sym_str] = ACTIONS(3383), - [anon_sym_char] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_gen] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_loop] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_raw] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_move] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [sym_integer_literal] = ACTIONS(3385), - [aux_sym_string_literal_token1] = ACTIONS(3385), - [sym_char_literal] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3383), - [sym_super] = ACTIONS(3383), - [sym_crate] = ACTIONS(3383), - [sym_metavariable] = ACTIONS(3385), - [sym__raw_string_literal_start] = ACTIONS(3385), - [sym_float_literal] = ACTIONS(3385), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(3246), + [anon_sym_u8] = ACTIONS(3382), + [anon_sym_i8] = ACTIONS(3382), + [anon_sym_u16] = ACTIONS(3382), + [anon_sym_i16] = ACTIONS(3382), + [anon_sym_u32] = ACTIONS(3382), + [anon_sym_i32] = ACTIONS(3382), + [anon_sym_u64] = ACTIONS(3382), + [anon_sym_i64] = ACTIONS(3382), + [anon_sym_u128] = ACTIONS(3382), + [anon_sym_i128] = ACTIONS(3382), + [anon_sym_isize] = ACTIONS(3382), + [anon_sym_usize] = ACTIONS(3382), + [anon_sym_f32] = ACTIONS(3382), + [anon_sym_f64] = ACTIONS(3382), + [anon_sym_bool] = ACTIONS(3382), + [anon_sym_str] = ACTIONS(3382), + [anon_sym_char] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(3384), + [anon_sym_fn] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_gen] = ACTIONS(3386), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(3386), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(3386), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_crate] = ACTIONS(3268), + [sym_metavariable] = ACTIONS(3388), }, [STATE(1061)] = { + [sym_function_modifiers] = STATE(3822), + [sym_removed_trait_bound] = STATE(2101), + [sym_extern_modifier] = STATE(2450), + [sym__type] = STATE(2067), + [sym_bracketed_type] = STATE(3756), + [sym_lifetime] = STATE(3773), + [sym_array_type] = STATE(2101), + [sym_for_lifetimes] = STATE(1624), + [sym_function_type] = STATE(2101), + [sym_tuple_type] = STATE(2101), + [sym_unit_type] = STATE(2101), + [sym_generic_type] = STATE(2050), + [sym_generic_type_with_turbofish] = STATE(3604), + [sym_bounded_type] = STATE(2101), + [sym_use_bounds] = STATE(3773), + [sym_reference_type] = STATE(2101), + [sym_pointer_type] = STATE(2101), + [sym_never_type] = STATE(2101), + [sym_abstract_type] = STATE(2101), + [sym_dynamic_type] = STATE(2101), + [sym_macro_invocation] = STATE(2101), + [sym_scoped_identifier] = STATE(3418), + [sym_scoped_type_identifier] = STATE(2040), [sym_line_comment] = STATE(1061), [sym_block_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_u8] = ACTIONS(3387), - [anon_sym_i8] = ACTIONS(3387), - [anon_sym_u16] = ACTIONS(3387), - [anon_sym_i16] = ACTIONS(3387), - [anon_sym_u32] = ACTIONS(3387), - [anon_sym_i32] = ACTIONS(3387), - [anon_sym_u64] = ACTIONS(3387), - [anon_sym_i64] = ACTIONS(3387), - [anon_sym_u128] = ACTIONS(3387), - [anon_sym_i128] = ACTIONS(3387), - [anon_sym_isize] = ACTIONS(3387), - [anon_sym_usize] = ACTIONS(3387), - [anon_sym_f32] = ACTIONS(3387), - [anon_sym_f64] = ACTIONS(3387), - [anon_sym_bool] = ACTIONS(3387), - [anon_sym_str] = ACTIONS(3387), - [anon_sym_char] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym__] = ACTIONS(3387), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_DASH_GT] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_gen] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_loop] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_raw] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_move] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [sym_integer_literal] = ACTIONS(3389), - [aux_sym_string_literal_token1] = ACTIONS(3389), - [sym_char_literal] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_crate] = ACTIONS(3387), - [sym_metavariable] = ACTIONS(3389), - [sym__raw_string_literal_start] = ACTIONS(3389), - [sym_float_literal] = ACTIONS(3389), + [aux_sym_function_modifiers_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(1635), + [anon_sym_LBRACK] = ACTIONS(1637), + [anon_sym_STAR] = ACTIONS(1293), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1651), + [anon_sym_SQUOTE] = ACTIONS(3106), + [anon_sym_async] = ACTIONS(1323), + [anon_sym_const] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_fn] = ACTIONS(1329), + [anon_sym_for] = ACTIONS(1331), + [anon_sym_gen] = ACTIONS(1659), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1659), + [anon_sym_unsafe] = ACTIONS(1323), + [anon_sym_use] = ACTIONS(1337), + [anon_sym_extern] = ACTIONS(1339), + [anon_sym_dyn] = ACTIONS(1343), + [anon_sym_raw] = ACTIONS(1659), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(1667), + [sym_super] = ACTIONS(1667), + [sym_crate] = ACTIONS(1667), + [sym_metavariable] = ACTIONS(1669), }, [STATE(1062)] = { + [sym_attribute_item] = STATE(1064), [sym_line_comment] = STATE(1062), [sym_block_comment] = STATE(1062), - [sym_identifier] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [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(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym__] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_DASH_GT] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_gen] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_raw] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1614), - [sym__raw_string_literal_start] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [sym_identifier] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_RBRACK] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_u8] = ACTIONS(3398), + [anon_sym_i8] = ACTIONS(3398), + [anon_sym_u16] = ACTIONS(3398), + [anon_sym_i16] = ACTIONS(3398), + [anon_sym_u32] = ACTIONS(3398), + [anon_sym_i32] = ACTIONS(3398), + [anon_sym_u64] = ACTIONS(3398), + [anon_sym_i64] = ACTIONS(3398), + [anon_sym_u128] = ACTIONS(3398), + [anon_sym_i128] = ACTIONS(3398), + [anon_sym_isize] = ACTIONS(3398), + [anon_sym_usize] = ACTIONS(3398), + [anon_sym_f32] = ACTIONS(3398), + [anon_sym_f64] = ACTIONS(3398), + [anon_sym_bool] = ACTIONS(3398), + [anon_sym_str] = ACTIONS(3398), + [anon_sym_char] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_COMMA] = ACTIONS(779), + [anon_sym_COLON_COLON] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(805), + [anon_sym_SQUOTE] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_become] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_gen] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_loop] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_union] = ACTIONS(3398), + [anon_sym_unsafe] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_raw] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_move] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [sym_integer_literal] = ACTIONS(779), + [aux_sym_string_literal_token1] = ACTIONS(779), + [sym_char_literal] = ACTIONS(779), + [anon_sym_true] = ACTIONS(3398), + [anon_sym_false] = ACTIONS(3398), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_crate] = ACTIONS(3398), + [sym_metavariable] = ACTIONS(779), + [sym__raw_string_literal_start] = ACTIONS(779), + [sym_float_literal] = ACTIONS(779), }, [STATE(1063)] = { [sym_line_comment] = STATE(1063), [sym_block_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(3391), - [anon_sym_i8] = ACTIONS(3391), - [anon_sym_u16] = ACTIONS(3391), - [anon_sym_i16] = ACTIONS(3391), - [anon_sym_u32] = ACTIONS(3391), - [anon_sym_i32] = ACTIONS(3391), - [anon_sym_u64] = ACTIONS(3391), - [anon_sym_i64] = ACTIONS(3391), - [anon_sym_u128] = ACTIONS(3391), - [anon_sym_i128] = ACTIONS(3391), - [anon_sym_isize] = ACTIONS(3391), - [anon_sym_usize] = ACTIONS(3391), - [anon_sym_f32] = ACTIONS(3391), - [anon_sym_f64] = ACTIONS(3391), - [anon_sym_bool] = ACTIONS(3391), - [anon_sym_str] = ACTIONS(3391), - [anon_sym_char] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_gen] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_loop] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_crate] = ACTIONS(3391), - [sym_metavariable] = ACTIONS(1224), - [sym__raw_string_literal_start] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), + [sym_identifier] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_RBRACK] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_u8] = ACTIONS(2162), + [anon_sym_i8] = ACTIONS(2162), + [anon_sym_u16] = ACTIONS(2162), + [anon_sym_i16] = ACTIONS(2162), + [anon_sym_u32] = ACTIONS(2162), + [anon_sym_i32] = ACTIONS(2162), + [anon_sym_u64] = ACTIONS(2162), + [anon_sym_i64] = ACTIONS(2162), + [anon_sym_u128] = ACTIONS(2162), + [anon_sym_i128] = ACTIONS(2162), + [anon_sym_isize] = ACTIONS(2162), + [anon_sym_usize] = ACTIONS(2162), + [anon_sym_f32] = ACTIONS(2162), + [anon_sym_f64] = ACTIONS(2162), + [anon_sym_bool] = ACTIONS(2162), + [anon_sym_str] = ACTIONS(2162), + [anon_sym_char] = ACTIONS(2162), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_COLON_COLON] = ACTIONS(2160), + [anon_sym_POUND] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2162), + [anon_sym_async] = ACTIONS(2162), + [anon_sym_become] = ACTIONS(2162), + [anon_sym_break] = ACTIONS(2162), + [anon_sym_const] = ACTIONS(2162), + [anon_sym_continue] = ACTIONS(2162), + [anon_sym_default] = ACTIONS(2162), + [anon_sym_for] = ACTIONS(2162), + [anon_sym_gen] = ACTIONS(2162), + [anon_sym_if] = ACTIONS(2162), + [anon_sym_loop] = ACTIONS(2162), + [anon_sym_match] = ACTIONS(2162), + [anon_sym_return] = ACTIONS(2162), + [anon_sym_static] = ACTIONS(2162), + [anon_sym_union] = ACTIONS(2162), + [anon_sym_unsafe] = ACTIONS(2162), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_raw] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2162), + [anon_sym_move] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2162), + [sym_integer_literal] = ACTIONS(2160), + [aux_sym_string_literal_token1] = ACTIONS(2160), + [sym_char_literal] = ACTIONS(2160), + [anon_sym_true] = ACTIONS(2162), + [anon_sym_false] = ACTIONS(2162), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(2162), + [sym_super] = ACTIONS(2162), + [sym_crate] = ACTIONS(2162), + [sym_metavariable] = ACTIONS(2160), + [sym__raw_string_literal_start] = ACTIONS(2160), + [sym_float_literal] = ACTIONS(2160), + }, + [STATE(1064)] = { + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [sym_identifier] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_RBRACK] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_u8] = ACTIONS(3400), + [anon_sym_i8] = ACTIONS(3400), + [anon_sym_u16] = ACTIONS(3400), + [anon_sym_i16] = ACTIONS(3400), + [anon_sym_u32] = ACTIONS(3400), + [anon_sym_i32] = ACTIONS(3400), + [anon_sym_u64] = ACTIONS(3400), + [anon_sym_i64] = ACTIONS(3400), + [anon_sym_u128] = ACTIONS(3400), + [anon_sym_i128] = ACTIONS(3400), + [anon_sym_isize] = ACTIONS(3400), + [anon_sym_usize] = ACTIONS(3400), + [anon_sym_f32] = ACTIONS(3400), + [anon_sym_f64] = ACTIONS(3400), + [anon_sym_bool] = ACTIONS(3400), + [anon_sym_str] = ACTIONS(3400), + [anon_sym_char] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3402), + [anon_sym_DOT_DOT] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_COLON_COLON] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3402), + [anon_sym_SQUOTE] = ACTIONS(3400), + [anon_sym_async] = ACTIONS(3400), + [anon_sym_become] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_default] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_gen] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_loop] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3400), + [anon_sym_union] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_while] = ACTIONS(3400), + [anon_sym_raw] = ACTIONS(3400), + [anon_sym_yield] = ACTIONS(3400), + [anon_sym_move] = ACTIONS(3400), + [anon_sym_try] = ACTIONS(3400), + [sym_integer_literal] = ACTIONS(3402), + [aux_sym_string_literal_token1] = ACTIONS(3402), + [sym_char_literal] = ACTIONS(3402), + [anon_sym_true] = ACTIONS(3400), + [anon_sym_false] = ACTIONS(3400), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3400), + [sym_super] = ACTIONS(3400), + [sym_crate] = ACTIONS(3400), + [sym_metavariable] = ACTIONS(3402), + [sym__raw_string_literal_start] = ACTIONS(3402), + [sym_float_literal] = ACTIONS(3402), + }, + [STATE(1065)] = { + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [sym_identifier] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_u8] = ACTIONS(3404), + [anon_sym_i8] = ACTIONS(3404), + [anon_sym_u16] = ACTIONS(3404), + [anon_sym_i16] = ACTIONS(3404), + [anon_sym_u32] = ACTIONS(3404), + [anon_sym_i32] = ACTIONS(3404), + [anon_sym_u64] = ACTIONS(3404), + [anon_sym_i64] = ACTIONS(3404), + [anon_sym_u128] = ACTIONS(3404), + [anon_sym_i128] = ACTIONS(3404), + [anon_sym_isize] = ACTIONS(3404), + [anon_sym_usize] = ACTIONS(3404), + [anon_sym_f32] = ACTIONS(3404), + [anon_sym_f64] = ACTIONS(3404), + [anon_sym_bool] = ACTIONS(3404), + [anon_sym_str] = ACTIONS(3404), + [anon_sym_char] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3406), + [anon_sym__] = ACTIONS(3404), + [anon_sym_DOT_DOT] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3406), + [anon_sym_DASH_GT] = ACTIONS(3406), + [anon_sym_SQUOTE] = ACTIONS(3404), + [anon_sym_async] = ACTIONS(3404), + [anon_sym_become] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_default] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_gen] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_loop] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3404), + [anon_sym_union] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_while] = ACTIONS(3404), + [anon_sym_raw] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3404), + [anon_sym_move] = ACTIONS(3404), + [anon_sym_try] = ACTIONS(3404), + [sym_integer_literal] = ACTIONS(3406), + [aux_sym_string_literal_token1] = ACTIONS(3406), + [sym_char_literal] = ACTIONS(3406), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3404), + [sym_super] = ACTIONS(3404), + [sym_crate] = ACTIONS(3404), + [sym_metavariable] = ACTIONS(3406), + [sym__raw_string_literal_start] = ACTIONS(3406), + [sym_float_literal] = ACTIONS(3406), + }, + [STATE(1066)] = { + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [sym_identifier] = ACTIONS(1629), + [anon_sym_LPAREN] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1631), + [anon_sym_STAR] = ACTIONS(1631), + [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_BANG] = ACTIONS(1631), + [anon_sym_AMP] = ACTIONS(1631), + [anon_sym_PIPE] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(1631), + [anon_sym__] = ACTIONS(1629), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_COLON_COLON] = ACTIONS(1631), + [anon_sym_DASH_GT] = ACTIONS(1631), + [anon_sym_SQUOTE] = ACTIONS(1629), + [anon_sym_async] = ACTIONS(1629), + [anon_sym_become] = ACTIONS(1629), + [anon_sym_break] = ACTIONS(1629), + [anon_sym_const] = ACTIONS(1629), + [anon_sym_continue] = ACTIONS(1629), + [anon_sym_default] = ACTIONS(1629), + [anon_sym_for] = ACTIONS(1629), + [anon_sym_gen] = ACTIONS(1629), + [anon_sym_if] = ACTIONS(1629), + [anon_sym_loop] = ACTIONS(1629), + [anon_sym_match] = ACTIONS(1629), + [anon_sym_return] = ACTIONS(1629), + [anon_sym_static] = ACTIONS(1629), + [anon_sym_union] = ACTIONS(1629), + [anon_sym_unsafe] = ACTIONS(1629), + [anon_sym_while] = ACTIONS(1629), + [anon_sym_raw] = ACTIONS(1629), + [anon_sym_yield] = ACTIONS(1629), + [anon_sym_move] = ACTIONS(1629), + [anon_sym_try] = 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(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [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), + }, + [STATE(1067)] = { + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [sym_identifier] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_RPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1102), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_STAR] = ACTIONS(1102), + [anon_sym_u8] = ACTIONS(3408), + [anon_sym_i8] = ACTIONS(3408), + [anon_sym_u16] = ACTIONS(3408), + [anon_sym_i16] = ACTIONS(3408), + [anon_sym_u32] = ACTIONS(3408), + [anon_sym_i32] = ACTIONS(3408), + [anon_sym_u64] = ACTIONS(3408), + [anon_sym_i64] = ACTIONS(3408), + [anon_sym_u128] = ACTIONS(3408), + [anon_sym_i128] = ACTIONS(3408), + [anon_sym_isize] = ACTIONS(3408), + [anon_sym_usize] = ACTIONS(3408), + [anon_sym_f32] = ACTIONS(3408), + [anon_sym_f64] = ACTIONS(3408), + [anon_sym_bool] = ACTIONS(3408), + [anon_sym_str] = ACTIONS(3408), + [anon_sym_char] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(1102), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1102), + [anon_sym_LT] = ACTIONS(1102), + [anon_sym_DOT_DOT] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1102), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_async] = ACTIONS(3408), + [anon_sym_become] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_default] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_gen] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_loop] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_while] = ACTIONS(3408), + [anon_sym_raw] = ACTIONS(3408), + [anon_sym_yield] = ACTIONS(3408), + [anon_sym_move] = ACTIONS(3408), + [anon_sym_try] = ACTIONS(3408), + [sym_integer_literal] = ACTIONS(1102), + [aux_sym_string_literal_token1] = ACTIONS(1102), + [sym_char_literal] = ACTIONS(1102), + [anon_sym_true] = ACTIONS(3408), + [anon_sym_false] = ACTIONS(3408), + [anon_sym_SLASH_SLASH] = ACTIONS(107), + [anon_sym_SLASH_STAR] = ACTIONS(109), + [sym_self] = ACTIONS(3408), + [sym_super] = ACTIONS(3408), + [sym_crate] = ACTIONS(3408), + [sym_metavariable] = ACTIONS(1102), + [sym__raw_string_literal_start] = ACTIONS(1102), + [sym_float_literal] = ACTIONS(1102), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 18, + ACTIONS(2160), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117049,7 +118517,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1905), 41, + ACTIONS(2162), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117092,14 +118560,14 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [74] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 20, + ACTIONS(3412), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117120,7 +118588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3393), 37, + ACTIONS(3410), 37, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117161,54 +118629,54 @@ static const uint16_t ts_small_parse_table[] = { [146] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1299), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1359), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(3397), 1, + ACTIONS(3414), 1, sym_identifier, - ACTIONS(3407), 1, + ACTIONS(3424), 1, sym_metavariable, - STATE(2174), 1, + STATE(2164), 1, sym_scoped_identifier, - STATE(2225), 1, + STATE(2198), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1351), 2, anon_sym_true, anon_sym_false, - STATE(1066), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1347), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3401), 3, + ACTIONS(3418), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3405), 3, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2119), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3399), 7, + ACTIONS(3416), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117216,7 +118684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3403), 21, + ACTIONS(3420), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117241,54 +118709,54 @@ static const uint16_t ts_small_parse_table[] = { [247] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1299), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1359), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3426), 1, sym_identifier, - ACTIONS(3419), 1, + ACTIONS(3436), 1, sym_metavariable, - STATE(2162), 1, + STATE(2186), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2240), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1351), 2, anon_sym_true, anon_sym_false, - STATE(1067), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1347), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3413), 3, + ACTIONS(3430), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3417), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2119), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3411), 7, + ACTIONS(3428), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117296,7 +118764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3415), 21, + ACTIONS(3432), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117321,54 +118789,54 @@ static const uint16_t ts_small_parse_table[] = { [348] = 21, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1299), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1359), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(3421), 1, + ACTIONS(3438), 1, sym_identifier, - ACTIONS(3431), 1, + ACTIONS(3448), 1, sym_metavariable, - STATE(2149), 1, + STATE(2160), 1, sym_scoped_identifier, - STATE(2222), 1, + STATE(2194), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1351), 2, anon_sym_true, anon_sym_false, - STATE(1068), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1347), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3425), 3, + ACTIONS(3442), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3429), 3, + ACTIONS(3446), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2119), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3423), 7, + ACTIONS(3440), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117376,7 +118844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3427), 21, + ACTIONS(3444), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117399,14 +118867,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_raw, [449] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(1519), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117416,7 +118884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1444), 41, + ACTIONS(1521), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117459,26 +118927,26 @@ static const uint16_t ts_small_parse_table[] = { sym_super, sym_crate, [514] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(3456), 1, anon_sym_BANG, - ACTIONS(3441), 1, + ACTIONS(3458), 1, anon_sym_COLON_COLON, - ACTIONS(3443), 1, + ACTIONS(3460), 1, anon_sym_LT2, - STATE(1430), 1, + STATE(1423), 1, sym_type_arguments, - STATE(1434), 1, + STATE(1429), 1, sym_parameters, - STATE(1070), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 17, + ACTIONS(3454), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117496,7 +118964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3433), 27, + ACTIONS(3450), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117524,27 +118992,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [591] = 11, - ACTIONS(105), 1, + [591] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1255), 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(1253), 41, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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, + anon_sym_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [656] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3441), 1, + ACTIONS(3458), 1, anon_sym_COLON_COLON, - ACTIONS(3443), 1, + ACTIONS(3460), 1, anon_sym_LT2, - ACTIONS(3449), 1, + ACTIONS(3466), 1, anon_sym_BANG, - STATE(1430), 1, + STATE(1423), 1, sym_type_arguments, - STATE(1434), 1, + STATE(1429), 1, sym_parameters, - STATE(1071), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 17, + ACTIONS(3464), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117562,7 +119090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3445), 27, + ACTIONS(3462), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -117590,92 +119118,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [668] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [733] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3461), 1, - anon_sym_move, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1072), 2, + ACTIONS(3472), 1, + anon_sym_POUND, + STATE(1390), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1077), 3, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, - anon_sym_PLUS, - anon_sym_STAR, + aux_sym_match_arm_repeat1, + ACTIONS(3470), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, 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(3451), 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, - [747] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1512), 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_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1514), 41, + ACTIONS(3468), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117693,39 +119165,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - 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, + anon_sym_ref, + sym_mutable_specifier, anon_sym_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [812] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [802] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1454), 9, + ACTIONS(1471), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117735,7 +119198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1456), 41, + ACTIONS(1473), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117777,75 +119240,81 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [877] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [867] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(3458), 1, + anon_sym_COLON_COLON, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1423), 1, + sym_type_arguments, + STATE(1429), 1, + sym_parameters, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(1438), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3477), 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1440), 41, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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, - anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [942] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3475), 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, + [944] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(1136), 9, + ACTIONS(1465), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117855,7 +119324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1134), 41, + ACTIONS(1467), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117897,77 +119366,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1007] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1009] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3467), 1, - anon_sym_POUND, - STATE(1369), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1077), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3465), 14, - 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_EQ, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3463), 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__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_raw, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1076] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1446), 9, + ACTIONS(1457), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117977,7 +119384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1448), 41, + ACTIONS(1459), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118019,15 +119426,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1141] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1074] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(1528), 9, + ACTIONS(1433), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118037,7 +119444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1530), 41, + ACTIONS(1435), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118079,27 +119486,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1206] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1139] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3483), 1, anon_sym_BANG, - ACTIONS(3441), 1, + ACTIONS(3485), 1, anon_sym_COLON_COLON, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1430), 1, - sym_type_arguments, - STATE(1434), 1, - sym_parameters, - STATE(1080), 2, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3489), 1, + anon_sym_move, + STATE(1488), 1, + sym_block, + STATE(3724), 1, + sym_label, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3472), 17, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118110,19 +119519,17 @@ 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(3470), 27, + ACTIONS(3479), 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, @@ -118135,85 +119542,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_SQUOTE, - anon_sym_as, - anon_sym_else, - [1283] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1450), 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(1452), 41, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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, - anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1348] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [1218] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1056), 9, + ACTIONS(1461), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118223,7 +119571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1054), 41, + ACTIONS(1463), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118265,103 +119613,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1413] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1283] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1620), 1, - anon_sym_LBRACK, - ACTIONS(3363), 1, - anon_sym_SQUOTE, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3478), 1, - anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_STAR, - ACTIONS(3484), 1, - anon_sym_AMP, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - anon_sym_for, - ACTIONS(3494), 1, - sym_metavariable, - STATE(2586), 1, - sym_where_predicate, - STATE(2812), 1, - sym_scoped_type_identifier, - STATE(3140), 1, - sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3476), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3488), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - STATE(3400), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3482), 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, - [1515] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 9, + ACTIONS(1243), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2069), 40, + ACTIONS(1241), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118385,6 +119655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -118402,110 +119673,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1579] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1348] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1620), 1, - anon_sym_LBRACK, - ACTIONS(3363), 1, - anon_sym_SQUOTE, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3478), 1, - anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_STAR, - ACTIONS(3484), 1, - anon_sym_AMP, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - anon_sym_for, - ACTIONS(3494), 1, - sym_metavariable, - STATE(2482), 1, - sym_where_predicate, - STATE(2812), 1, - sym_scoped_type_identifier, - STATE(3140), 1, - sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3496), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3488), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - STATE(3400), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3482), 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, - [1681] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_POUND, - STATE(1386), 1, - sym_attribute_item, - STATE(1086), 3, + STATE(1086), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(776), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, + ACTIONS(1483), 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_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3381), 35, + ACTIONS(1485), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118526,30 +119712,36 @@ 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_gen, + 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, - anon_sym_dyn, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [1749] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1413] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 9, + ACTIONS(2584), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118559,7 +119751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 40, + ACTIONS(2586), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118600,25 +119792,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1813] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1477] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3460), 1, anon_sym_LT2, - ACTIONS(3505), 1, + ACTIONS(3495), 1, anon_sym_COLON_COLON, - STATE(1430), 1, + STATE(1423), 1, sym_type_arguments, - STATE(1434), 1, + STATE(1429), 1, sym_parameters, STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3493), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118636,7 +119828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 27, + ACTIONS(3491), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -118664,67 +119856,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1887] = 24, + [1551] = 24, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, + ACTIONS(1637), 1, anon_sym_LBRACK, - ACTIONS(3363), 1, + ACTIONS(3332), 1, anon_sym_SQUOTE, - ACTIONS(3474), 1, + ACTIONS(3497), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3501), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3484), 1, + ACTIONS(3507), 1, anon_sym_AMP, - ACTIONS(3486), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3513), 1, anon_sym_for, - ACTIONS(3494), 1, + ACTIONS(3517), 1, sym_metavariable, - STATE(2586), 1, + STATE(2622), 1, sym_where_predicate, - STATE(2812), 1, + STATE(2881), 1, sym_scoped_type_identifier, - STATE(3140), 1, + STATE(2890), 1, sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3641), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, sym_generic_type_with_turbofish, STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3507), 3, + ACTIONS(3499), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3488), 4, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3511), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - STATE(3400), 6, + STATE(3472), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3482), 17, + ACTIONS(3505), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118742,15 +119934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1989] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1653] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 9, + ACTIONS(2280), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118760,7 +119952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 40, + ACTIONS(2282), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118801,15 +119993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2053] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1717] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(2343), 9, + ACTIONS(2844), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118819,7 +120011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2345), 40, + ACTIONS(2846), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118860,15 +120052,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2117] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1781] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 9, + ACTIONS(2048), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118878,7 +120070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1913), 40, + ACTIONS(2050), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118919,157 +120111,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2181] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, - sym_type_arguments, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3511), 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, + [1845] = 24, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 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, - [2252] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, - sym_type_arguments, - STATE(1094), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 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(3513), 27, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1637), 1, 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, + ACTIONS(3332), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2323] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3521), 1, - anon_sym_RBRACE, - STATE(1095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3519), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(3501), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3503), 1, + anon_sym_STAR, + ACTIONS(3507), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3513), 1, + anon_sym_for, + ACTIONS(3517), 1, sym_metavariable, - ACTIONS(3517), 32, + STATE(2455), 1, + sym_where_predicate, + STATE(2881), 1, + sym_scoped_type_identifier, + STATE(2890), 1, + sym_generic_type, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(1093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3519), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3511), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + STATE(3472), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3505), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119087,106 +120189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_raw, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2388] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [1947] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, - sym_type_arguments, - STATE(1096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3525), 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(3523), 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, - [2459] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 13, + ACTIONS(1888), 9, 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_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3527), 35, + ACTIONS(1890), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119207,106 +120228,87 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [2522] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2011] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(1637), 1, + anon_sym_LBRACK, + ACTIONS(3332), 1, + anon_sym_SQUOTE, + ACTIONS(3497), 1, + sym_identifier, + ACTIONS(3501), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, - sym_type_arguments, - STATE(1098), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3533), 17, - anon_sym_PLUS, + ACTIONS(3503), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3507), 1, 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(3531), 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, - [2593] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1099), 2, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3513), 1, + anon_sym_for, + ACTIONS(3517), 1, + sym_metavariable, + STATE(2622), 1, + sym_where_predicate, + STATE(2881), 1, + sym_scoped_type_identifier, + STATE(2890), 1, + sym_generic_type, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3537), 13, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3521), 3, 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_SQUOTE, - sym_metavariable, - ACTIONS(3535), 35, + ACTIONS(3511), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + STATE(3472), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3505), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119324,47 +120326,32 @@ 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2656] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2113] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + ACTIONS(3523), 1, + anon_sym_POUND, + STATE(1122), 1, + sym_attribute_item, + STATE(1096), 3, sym_line_comment, sym_block_comment, - ACTIONS(3541), 13, - anon_sym_SEMI, + aux_sym_enum_variant_list_repeat1, + ACTIONS(779), 11, 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_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3539), 35, + ACTIONS(3398), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119389,10 +120376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, anon_sym_use, - anon_sym_where, anon_sym_extern, anon_sym_dyn, anon_sym_raw, @@ -119400,19 +120387,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2719] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2181] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_BANG, - ACTIONS(3549), 1, - anon_sym_COLON_COLON, - STATE(1101), 2, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1424), 1, + sym_type_arguments, + STATE(1430), 1, + sym_parameters, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 17, + ACTIONS(3528), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119430,9 +120421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 29, + ACTIONS(3526), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -119459,20 +120449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2786] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2252] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, + ACTIONS(3534), 1, anon_sym_BANG, - ACTIONS(3557), 1, + ACTIONS(3536), 1, anon_sym_COLON_COLON, - STATE(1102), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3532), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119490,7 +120479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 29, + ACTIONS(3530), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119520,77 +120509,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2853] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2319] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1424), 1, + sym_type_arguments, + STATE(1430), 1, + sym_parameters, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3540), 17, + 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_LT_LT_EQ, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3538), 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, - sym_metavariable, - ACTIONS(3559), 35, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2916] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [2390] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, + ACTIONS(3546), 1, anon_sym_BANG, - ACTIONS(3569), 1, + ACTIONS(3548), 1, anon_sym_COLON_COLON, - STATE(1104), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 17, + ACTIONS(3544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119608,7 +120601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 29, + ACTIONS(3542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119638,17 +120631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2983] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2457] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3575), 1, + ACTIONS(3554), 1, anon_sym_RBRACE, - STATE(1105), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3552), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -119664,7 +120657,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3571), 32, + ACTIONS(3550), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119697,19 +120690,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3048] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2522] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(3583), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - STATE(1106), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 17, + ACTIONS(3558), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119727,7 +120720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3577), 29, + ACTIONS(3556), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119757,386 +120750,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [3115] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2589] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2641), 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(2643), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3177] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, - anon_sym_fn, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3277), 1, - anon_sym_for, - ACTIONS(3478), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3585), 1, - sym_identifier, - ACTIONS(3589), 1, - anon_sym_default, - STATE(1624), 1, - sym_for_lifetimes, - STATE(2027), 1, - sym_scoped_type_identifier, - STATE(2042), 1, - sym_generic_type, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(3815), 1, - sym_function_modifiers, - STATE(1108), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - STATE(2074), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3587), 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, - [3281] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2537), 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(2539), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3343] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1110), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2549), 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(2551), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3405] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1111), 2, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1424), 1, + sym_type_arguments, + STATE(1430), 1, + sym_parameters, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3566), 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_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2555), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3467] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1112), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2557), 7, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3564), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2559), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3529] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + 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, + [2660] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2569), 7, + ACTIONS(3570), 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(2571), 40, + ACTIONS(3568), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120157,100 +120855,104 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [3591] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2723] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + ACTIONS(3576), 1, + anon_sym_BANG, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2573), 7, + ACTIONS(3574), 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(3572), 29, 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(2575), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3653] = 5, - ACTIONS(105), 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_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, + [2790] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2577), 7, + ACTIONS(3582), 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(2579), 40, + ACTIONS(3580), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120271,43 +120973,44 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [3715] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2853] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2605), 7, + ACTIONS(3586), 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(2607), 40, + ACTIONS(3584), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120328,43 +121031,48 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [3777] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2916] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + ACTIONS(3592), 1, + anon_sym_RBRACE, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3590), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2639), 40, + ACTIONS(3588), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120382,46 +121090,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - 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_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [3839] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [2981] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1424), 1, + sym_type_arguments, + STATE(1430), 1, + sym_parameters, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(3596), 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(3594), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + 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, + [3052] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1110), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3600), 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(2651), 40, + ACTIONS(3598), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120442,35 +121210,30 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [3901] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3115] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2824), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120478,7 +121241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 40, + ACTIONS(2826), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120519,72 +121282,189 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3963] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3177] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + ACTIONS(3602), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(3481), 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(3479), 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, + [3245] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1113), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3576), 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(3578), 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_POUND, - sym_metavariable, - ACTIONS(2663), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4025] = 5, - ACTIONS(105), 1, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3307] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 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(3548), 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, + [3369] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 7, + ACTIONS(3606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +121472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2747), 40, + ACTIONS(3604), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120633,80 +121513,124 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4087] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3431] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(3534), 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(3536), 31, 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_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3493] = 26, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(1657), 1, + anon_sym_fn, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3517), 1, sym_metavariable, - ACTIONS(2751), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(3608), 1, + sym_identifier, + ACTIONS(3612), 1, + anon_sym_default, + ACTIONS(3614), 1, + anon_sym_for, + STATE(1616), 1, + sym_for_lifetimes, + STATE(2059), 1, + sym_generic_type, + STATE(2254), 1, + sym_scoped_type_identifier, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(3571), 1, + sym_function_modifiers, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(1117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1323), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, + anon_sym_unsafe, + ACTIONS(3511), 3, anon_sym_gen, - 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_raw, - sym_identifier, + ACTIONS(3515), 3, sym_self, sym_super, sym_crate, - [4149] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2805), 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(2807), 40, + STATE(2094), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3610), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120724,46 +121648,31 @@ 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_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4211] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3597] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3590), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2825), 40, + ACTIONS(3588), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120781,46 +121690,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - 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_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [4273] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3659] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3552), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2249), 40, + ACTIONS(3550), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120838,38 +121747,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - 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_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [4335] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3721] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 7, + ACTIONS(2452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120877,7 +121778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2253), 40, + ACTIONS(2454), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120918,23 +121819,85 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4397] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3783] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2255), 7, + ACTIONS(3560), 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(3562), 31, 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_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3845] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1122), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3402), 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(2257), 40, + ACTIONS(3400), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120955,43 +121918,73 @@ 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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [4459] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [3907] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2259), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1703), 1, + anon_sym_DASH, + ACTIONS(1729), 1, + aux_sym_string_literal_token1, + ACTIONS(1737), 1, + sym__raw_string_literal_start, + ACTIONS(3418), 1, + anon_sym_if, + ACTIONS(3616), 1, + sym_identifier, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3624), 1, sym_metavariable, - ACTIONS(2261), 40, + STATE(2685), 1, + sym_scoped_identifier, + STATE(2989), 1, + sym__literal_pattern, + STATE(3637), 1, + sym_bracketed_type, + STATE(3654), 1, + sym_generic_type_with_turbofish, + ACTIONS(1731), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3416), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1123), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1727), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3622), 3, + sym_self, + sym_super, + sym_crate, + STATE(2517), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3618), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121009,38 +122002,19 @@ 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_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4521] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4001] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2263), 7, + ACTIONS(2352), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121048,7 +122022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2265), 40, + ACTIONS(2354), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121089,15 +122063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4583] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4063] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 7, + ACTIONS(1852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121105,7 +122079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2269), 40, + ACTIONS(1854), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121146,23 +122120,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4645] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4125] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2271), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1703), 1, + anon_sym_DASH, + ACTIONS(1729), 1, + aux_sym_string_literal_token1, + ACTIONS(1737), 1, + sym__raw_string_literal_start, + ACTIONS(3442), 1, + anon_sym_if, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3632), 1, sym_metavariable, - ACTIONS(2273), 40, + STATE(2807), 1, + sym_scoped_identifier, + STATE(3112), 1, + sym__literal_pattern, + STATE(3637), 1, + sym_bracketed_type, + STATE(3654), 1, + sym_generic_type_with_turbofish, + ACTIONS(1731), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3440), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1126), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1727), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3630), 3, + sym_self, + sym_super, + sym_crate, + STATE(2517), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3628), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121180,46 +122189,62 @@ 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_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4707] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4219] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2275), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1703), 1, + anon_sym_DASH, + ACTIONS(1729), 1, + aux_sym_string_literal_token1, + ACTIONS(1737), 1, + sym__raw_string_literal_start, + ACTIONS(3430), 1, + anon_sym_if, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3634), 1, + sym_identifier, + ACTIONS(3640), 1, sym_metavariable, - ACTIONS(2277), 40, + STATE(2821), 1, + sym_scoped_identifier, + STATE(3126), 1, + sym__literal_pattern, + STATE(3637), 1, + sym_bracketed_type, + STATE(3654), 1, + sym_generic_type_with_turbofish, + ACTIONS(1731), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3428), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1727), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3638), 3, + sym_self, + sym_super, + sym_crate, + STATE(2517), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3636), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121237,38 +122262,19 @@ 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_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4769] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4313] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 7, + ACTIONS(2406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121276,7 +122282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2281), 40, + ACTIONS(2408), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121317,15 +122323,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4831] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4375] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 7, + ACTIONS(2444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121333,7 +122339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2285), 40, + ACTIONS(2446), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121374,15 +122380,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4893] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4437] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2347), 7, + ACTIONS(2448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121390,7 +122396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2349), 40, + ACTIONS(2450), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121431,15 +122437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4955] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4499] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121447,7 +122453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2353), 40, + ACTIONS(2458), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121488,15 +122494,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5017] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4561] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2355), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121504,7 +122510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2357), 40, + ACTIONS(2478), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121545,15 +122551,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5079] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4623] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2359), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121561,7 +122567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2361), 40, + ACTIONS(2522), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121602,15 +122608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5141] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4685] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2363), 7, + ACTIONS(2552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121618,7 +122624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2365), 40, + ACTIONS(2554), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121659,15 +122665,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5203] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4747] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2367), 7, + ACTIONS(2568), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121675,7 +122681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2369), 40, + ACTIONS(2570), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121716,15 +122722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5265] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4809] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2371), 7, + ACTIONS(2580), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121732,7 +122738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2373), 40, + ACTIONS(2582), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121773,15 +122779,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5327] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4871] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2375), 7, + ACTIONS(2664), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121789,7 +122795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2377), 40, + ACTIONS(2666), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121830,15 +122836,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5389] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4933] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2379), 7, + ACTIONS(2716), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121846,7 +122852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2381), 40, + ACTIONS(2718), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121887,15 +122893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5451] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [4995] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2383), 7, + ACTIONS(2720), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121903,7 +122909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2385), 40, + ACTIONS(2722), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121944,15 +122950,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5513] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5057] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 7, + ACTIONS(2724), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121960,7 +122966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2389), 40, + ACTIONS(2726), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122001,15 +123007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5575] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5119] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2391), 7, + ACTIONS(2728), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122017,7 +123023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2393), 40, + ACTIONS(2730), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122058,15 +123064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5637] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5181] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2395), 7, + ACTIONS(2736), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122074,7 +123080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2397), 40, + ACTIONS(2738), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122115,15 +123121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5699] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5243] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2399), 7, + ACTIONS(2832), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122131,7 +123137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2401), 40, + ACTIONS(2834), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122172,15 +123178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5761] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5305] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2403), 7, + ACTIONS(2836), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122188,7 +123194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2405), 40, + ACTIONS(2838), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122229,15 +123235,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5823] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5367] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2407), 7, + ACTIONS(2232), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122245,7 +123251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2409), 40, + ACTIONS(2234), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122286,15 +123292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5885] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5429] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2415), 7, + ACTIONS(2236), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122302,7 +123308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2417), 40, + ACTIONS(2238), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122343,15 +123349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5947] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5491] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 7, + ACTIONS(2240), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122359,7 +123365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2507), 40, + ACTIONS(2242), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122400,15 +123406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6009] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5553] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 7, + ACTIONS(2244), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122416,7 +123422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2511), 40, + ACTIONS(2246), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122457,15 +123463,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6071] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5615] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 7, + ACTIONS(2248), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122473,7 +123479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2515), 40, + ACTIONS(2250), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122514,15 +123520,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6133] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5677] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 7, + ACTIONS(2256), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122530,7 +123536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2519), 40, + ACTIONS(2258), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122571,15 +123577,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6195] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5739] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2521), 7, + ACTIONS(2260), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122587,7 +123593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2523), 40, + ACTIONS(2262), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122628,15 +123634,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6257] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5801] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 7, + ACTIONS(2264), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122644,7 +123650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2527), 40, + ACTIONS(2266), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122685,15 +123691,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6319] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5863] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2529), 7, + ACTIONS(2268), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122701,7 +123707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2531), 40, + ACTIONS(2270), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122742,15 +123748,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6381] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [5925] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2541), 7, + ACTIONS(2272), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122758,7 +123764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2543), 40, + ACTIONS(2274), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122799,15 +123805,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6443] = 5, - ACTIONS(105), 1, + [5987] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2284), 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(2286), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6049] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2545), 7, + ACTIONS(2288), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122815,7 +123878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2547), 40, + ACTIONS(2290), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122856,15 +123919,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6505] = 5, - ACTIONS(105), 1, + [6111] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2292), 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(2294), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6173] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 7, + ACTIONS(2296), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122872,7 +123992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2563), 40, + ACTIONS(2298), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122913,15 +124033,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6567] = 5, - ACTIONS(105), 1, + [6235] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2300), 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(2302), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6297] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 7, + ACTIONS(2304), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122929,7 +124106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2567), 40, + ACTIONS(2306), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122970,15 +124147,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6629] = 5, - ACTIONS(105), 1, + [6359] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2308), 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(2310), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6421] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2581), 7, + ACTIONS(2312), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122986,7 +124220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2583), 40, + ACTIONS(2314), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123027,15 +124261,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6691] = 5, - ACTIONS(105), 1, + [6483] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2316), 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(2318), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6545] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 7, + ACTIONS(2320), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123043,7 +124334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2587), 40, + ACTIONS(2322), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123084,15 +124375,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6753] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6607] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2589), 7, + ACTIONS(2324), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123100,7 +124391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2591), 40, + ACTIONS(2326), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123141,15 +124432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6815] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6669] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2593), 7, + ACTIONS(2328), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123157,7 +124448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2595), 40, + ACTIONS(2330), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123198,15 +124489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6877] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6731] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2597), 7, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123214,7 +124505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2599), 40, + ACTIONS(2334), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123255,15 +124546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6939] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6793] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 7, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123271,7 +124562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2603), 40, + ACTIONS(2338), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123312,15 +124603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7001] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6855] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123328,7 +124619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2611), 40, + ACTIONS(2342), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123369,15 +124660,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7063] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6917] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 7, + ACTIONS(2344), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123385,7 +124676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2615), 40, + ACTIONS(2346), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123426,15 +124717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7125] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [6979] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 7, + ACTIONS(2358), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123442,7 +124733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2619), 40, + ACTIONS(2360), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123483,15 +124774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7187] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7041] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2621), 7, + ACTIONS(2362), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123499,7 +124790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2623), 40, + ACTIONS(2364), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123540,15 +124831,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7249] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7103] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2625), 7, + ACTIONS(2366), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +124847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2627), 40, + ACTIONS(2368), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123597,15 +124888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7311] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7165] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2629), 7, + ACTIONS(2370), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123613,7 +124904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2631), 40, + ACTIONS(2372), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123654,15 +124945,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7373] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7227] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(2374), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123670,7 +124961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2635), 40, + ACTIONS(2376), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123711,15 +125002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7435] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7289] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2378), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123727,7 +125018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 40, + ACTIONS(2380), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123768,15 +125059,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7497] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7351] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2382), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123784,7 +125075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 40, + ACTIONS(2384), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123825,15 +125116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7559] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7413] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(2386), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123841,7 +125132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 40, + ACTIONS(2388), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123882,15 +125173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7621] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7475] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(2410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123898,7 +125189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 40, + ACTIONS(2412), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123939,15 +125230,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7683] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7537] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123955,7 +125246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 40, + ACTIONS(2436), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123996,15 +125287,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7745] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7599] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124012,7 +125303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 40, + ACTIONS(2462), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124053,15 +125344,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7807] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7661] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +125360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 40, + ACTIONS(2466), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124110,15 +125401,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7869] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7723] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124126,7 +125417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 40, + ACTIONS(2474), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124167,15 +125458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7931] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7785] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124183,7 +125474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 40, + ACTIONS(2486), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124224,15 +125515,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7993] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7847] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124240,7 +125531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 40, + ACTIONS(2490), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124281,15 +125572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8055] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7909] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(2500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124297,7 +125588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 40, + ACTIONS(2502), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124338,15 +125629,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8117] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [7971] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124354,7 +125645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 40, + ACTIONS(2514), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124395,15 +125686,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8179] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8033] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124411,7 +125702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 40, + ACTIONS(2518), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124452,15 +125743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8241] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8095] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 7, + ACTIONS(2524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124468,7 +125759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2717), 40, + ACTIONS(2526), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124509,15 +125800,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8303] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8157] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 7, + ACTIONS(2528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124525,7 +125816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2721), 40, + ACTIONS(2530), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124566,15 +125857,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8365] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8219] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 7, + ACTIONS(2532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124582,7 +125873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2725), 40, + ACTIONS(2534), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124623,15 +125914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8427] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8281] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2727), 7, + ACTIONS(2536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124639,7 +125930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2729), 40, + ACTIONS(2538), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124680,15 +125971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8489] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8343] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 7, + ACTIONS(2540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124696,7 +125987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2733), 40, + ACTIONS(2542), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124737,15 +126028,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8551] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8405] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 7, + ACTIONS(2544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124753,7 +126044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2737), 40, + ACTIONS(2546), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124794,15 +126085,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8613] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8467] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 7, + ACTIONS(2548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124810,7 +126101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2743), 40, + ACTIONS(2550), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124851,15 +126142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8675] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8529] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 7, + ACTIONS(2560), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124867,7 +126158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2755), 40, + ACTIONS(2562), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124908,15 +126199,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8737] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8591] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 7, + ACTIONS(2564), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124924,7 +126215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2759), 40, + ACTIONS(2566), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124965,15 +126256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8799] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8653] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 7, + ACTIONS(2576), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124981,7 +126272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2763), 40, + ACTIONS(2578), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125022,15 +126313,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8861] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8715] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2765), 7, + ACTIONS(2588), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125038,7 +126329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2767), 40, + ACTIONS(2590), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125079,15 +126370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8923] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8777] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2769), 7, + ACTIONS(2594), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125095,7 +126386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2771), 40, + ACTIONS(2596), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125136,15 +126427,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8985] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8839] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2773), 7, + ACTIONS(2598), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125152,7 +126443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2775), 40, + ACTIONS(2600), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125193,15 +126484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9047] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8901] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2777), 7, + ACTIONS(2602), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125209,7 +126500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2779), 40, + ACTIONS(2604), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125250,15 +126541,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9109] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [8963] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 7, + ACTIONS(2606), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125266,7 +126557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2783), 40, + ACTIONS(2608), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125307,15 +126598,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9171] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9025] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2785), 7, + ACTIONS(2610), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125323,7 +126614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2787), 40, + ACTIONS(2612), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125364,15 +126655,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9233] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9087] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2789), 7, + ACTIONS(2614), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125380,7 +126671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2791), 40, + ACTIONS(2616), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125421,15 +126712,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9295] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9149] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 7, + ACTIONS(2618), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125437,7 +126728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2795), 40, + ACTIONS(2620), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125478,15 +126769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9357] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9211] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2797), 7, + ACTIONS(2622), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125494,7 +126785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2799), 40, + ACTIONS(2624), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125535,15 +126826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9419] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9273] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125551,7 +126842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 40, + ACTIONS(2630), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125592,15 +126883,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9481] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9335] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +126899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 40, + ACTIONS(2634), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125649,15 +126940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9543] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9397] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(2636), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125665,7 +126956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 40, + ACTIONS(2638), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125706,15 +126997,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9605] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9459] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2640), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125722,7 +127013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 40, + ACTIONS(2642), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125763,15 +127054,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9667] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9521] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(2644), 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(2646), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9583] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2648), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125779,7 +127127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 40, + ACTIONS(2650), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125820,72 +127168,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9729] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9645] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1213), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2839), 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(2841), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9791] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2652), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125893,7 +127184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 40, + ACTIONS(2654), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125934,15 +127225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9853] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9707] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2656), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125950,7 +127241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 40, + ACTIONS(2658), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125991,15 +127282,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9915] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9769] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2660), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126007,7 +127298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 40, + ACTIONS(2662), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126048,15 +127339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9977] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9831] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2668), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126064,7 +127355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 40, + ACTIONS(2670), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126105,15 +127396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10039] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9893] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2672), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126121,7 +127412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 40, + ACTIONS(2674), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126162,15 +127453,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10101] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [9955] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2676), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126178,7 +127469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 40, + ACTIONS(2678), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126219,15 +127510,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10163] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10017] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2680), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126235,7 +127526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 40, + ACTIONS(2682), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126276,15 +127567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10225] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10079] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(2684), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126292,7 +127583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 40, + ACTIONS(2686), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126333,15 +127624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10287] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10141] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2688), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126349,7 +127640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 40, + ACTIONS(2690), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126390,15 +127681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10349] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10203] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2692), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126406,7 +127697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 40, + ACTIONS(2694), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126447,15 +127738,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10411] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10265] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(2696), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126463,7 +127754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 40, + ACTIONS(2698), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126504,15 +127795,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10473] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10327] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(2700), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126520,7 +127811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 40, + ACTIONS(2702), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126561,15 +127852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10535] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10389] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(2704), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126577,7 +127868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 40, + ACTIONS(2706), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126618,15 +127909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10597] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10451] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2708), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126634,7 +127925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 40, + ACTIONS(2710), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126675,15 +127966,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10659] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10513] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(2712), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126691,7 +127982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 40, + ACTIONS(2714), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126732,15 +128023,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10721] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10575] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2903), 7, + ACTIONS(2732), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126748,7 +128039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2905), 40, + ACTIONS(2734), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126789,15 +128080,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10783] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10637] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2740), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126805,7 +128096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 40, + ACTIONS(2742), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126846,15 +128137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10845] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10699] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2748), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126862,7 +128153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 40, + ACTIONS(2750), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126903,15 +128194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10907] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10761] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2919), 7, + ACTIONS(2752), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126919,7 +128210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2921), 40, + ACTIONS(2754), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126960,15 +128251,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10969] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10823] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2923), 7, + ACTIONS(2756), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126976,7 +128267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2925), 40, + ACTIONS(2758), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127017,15 +128308,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11031] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10885] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2927), 7, + ACTIONS(2760), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127033,7 +128324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2929), 40, + ACTIONS(2762), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127074,15 +128365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11093] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [10947] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 7, + ACTIONS(2764), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127090,7 +128381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2933), 40, + ACTIONS(2766), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127131,15 +128422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11155] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11009] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 7, + ACTIONS(2768), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127147,7 +128438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2937), 40, + ACTIONS(2770), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127188,15 +128479,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11217] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11071] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2939), 7, + ACTIONS(2772), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127204,7 +128495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2941), 40, + ACTIONS(2774), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127245,15 +128536,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11279] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11133] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2943), 7, + ACTIONS(2776), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +128552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2945), 40, + ACTIONS(2778), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127302,15 +128593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11341] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11195] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 7, + ACTIONS(2780), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127318,7 +128609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2949), 40, + ACTIONS(2782), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127359,15 +128650,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11403] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11257] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2951), 7, + ACTIONS(2784), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127375,7 +128666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2953), 40, + ACTIONS(2786), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127416,15 +128707,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11465] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11319] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2955), 7, + ACTIONS(2788), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127432,7 +128723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2957), 40, + ACTIONS(2790), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127473,15 +128764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11527] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11381] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2959), 7, + ACTIONS(2792), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127489,7 +128780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2961), 40, + ACTIONS(2794), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127530,15 +128821,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11589] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11443] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2963), 7, + ACTIONS(2796), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127546,7 +128837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2965), 40, + ACTIONS(2798), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127587,15 +128878,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11651] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11505] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2967), 7, + ACTIONS(2800), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127603,7 +128894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2969), 40, + ACTIONS(2802), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127644,15 +128935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11713] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11567] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2971), 7, + ACTIONS(2804), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127660,7 +128951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2973), 40, + ACTIONS(2806), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127701,15 +128992,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11775] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11629] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2975), 7, + ACTIONS(2808), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127717,7 +129008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2977), 40, + ACTIONS(2810), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127758,15 +129049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11837] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11691] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2979), 7, + ACTIONS(2812), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127774,7 +129065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2981), 40, + ACTIONS(2814), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127815,15 +129106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11899] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11753] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2983), 7, + ACTIONS(2816), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127831,7 +129122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2985), 40, + ACTIONS(2818), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127872,15 +129163,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11961] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11815] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2987), 7, + ACTIONS(2820), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127888,7 +129179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2989), 40, + ACTIONS(2822), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127929,15 +129220,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12023] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11877] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2991), 7, + ACTIONS(2840), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127945,7 +129236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2993), 40, + ACTIONS(2842), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127986,15 +129277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12085] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [11939] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 7, + ACTIONS(2848), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128002,7 +129293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2997), 40, + ACTIONS(2850), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128043,15 +129334,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12147] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12001] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2999), 7, + ACTIONS(2856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128059,7 +129350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3001), 40, + ACTIONS(2858), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128100,15 +129391,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12209] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12063] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3003), 7, + ACTIONS(2860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128116,7 +129407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3005), 40, + ACTIONS(2862), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128157,15 +129448,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12271] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12125] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3007), 7, + ACTIONS(2864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128173,7 +129464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3009), 40, + ACTIONS(2866), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128214,15 +129505,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12333] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12187] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 7, + ACTIONS(2868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128230,7 +129521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3013), 40, + ACTIONS(2870), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128271,15 +129562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12395] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12249] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 7, + ACTIONS(2872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128287,7 +129578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3017), 40, + ACTIONS(2874), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128328,15 +129619,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12457] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12311] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 7, + ACTIONS(2876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128344,7 +129635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3021), 40, + ACTIONS(2878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128385,15 +129676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12519] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12373] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 7, + ACTIONS(2880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128401,7 +129692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3025), 40, + ACTIONS(2882), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128442,15 +129733,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12581] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12435] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 7, + ACTIONS(2884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128458,7 +129749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3029), 40, + ACTIONS(2886), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128499,15 +129790,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12643] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12497] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 7, + ACTIONS(2888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128515,7 +129806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3033), 40, + ACTIONS(2890), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128556,15 +129847,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12705] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12559] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 7, + ACTIONS(2892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128572,7 +129863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3037), 40, + ACTIONS(2894), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128613,15 +129904,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12767] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12621] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 7, + ACTIONS(2896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128629,7 +129920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3041), 40, + ACTIONS(2898), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128670,15 +129961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12829] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12683] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 7, + ACTIONS(2900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128686,7 +129977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3045), 40, + ACTIONS(2902), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128727,15 +130018,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12891] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12745] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 7, + ACTIONS(2904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128743,7 +130034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3049), 40, + ACTIONS(2906), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128784,15 +130075,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12953] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12807] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(3051), 7, + ACTIONS(2908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128800,7 +130091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3053), 40, + ACTIONS(2910), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128841,15 +130132,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13015] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12869] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3055), 7, + ACTIONS(2916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128857,7 +130148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3057), 40, + ACTIONS(2918), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128898,23 +130189,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13077] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [12931] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(1329), 1, + anon_sym_fn, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(3278), 1, + anon_sym_for, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3517), 1, + sym_metavariable, + ACTIONS(3612), 1, + anon_sym_default, + ACTIONS(3642), 1, + sym_identifier, + STATE(1624), 1, + sym_for_lifetimes, + STATE(2043), 1, + sym_scoped_type_identifier, + STATE(2059), 1, + sym_generic_type, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(3822), 1, + sym_function_modifiers, STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(3059), 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(3061), 40, + ACTIONS(1323), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3511), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + STATE(2094), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3610), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128932,38 +130267,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_enum, - anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13139] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13035] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3063), 7, + ACTIONS(2924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128971,7 +130283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3065), 40, + ACTIONS(2926), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129012,15 +130324,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13201] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13097] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(2928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129028,7 +130340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1849), 40, + ACTIONS(2930), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129069,15 +130381,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13263] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13159] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(2932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129085,7 +130397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1853), 40, + ACTIONS(2934), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129126,15 +130438,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13325] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13221] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(2936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129142,7 +130454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1857), 40, + ACTIONS(2938), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129183,15 +130495,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13387] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13283] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(1859), 7, + ACTIONS(2940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129199,7 +130511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1861), 40, + ACTIONS(2942), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129240,15 +130552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13449] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13345] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, + ACTIONS(2390), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129256,7 +130568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1865), 40, + ACTIONS(2392), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129297,15 +130609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13511] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13407] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1867), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129313,7 +130625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1869), 40, + ACTIONS(2470), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129354,15 +130666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13573] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13469] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, + ACTIONS(1876), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129370,7 +130682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1873), 40, + ACTIONS(1878), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129411,15 +130723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13635] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13531] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1875), 7, + ACTIONS(2252), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129427,7 +130739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1877), 40, + ACTIONS(2254), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129468,15 +130780,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13697] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13593] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, + ACTIONS(2276), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129484,7 +130796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1881), 40, + ACTIONS(2278), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129525,15 +130837,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13759] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13655] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1883), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129541,7 +130853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1885), 40, + ACTIONS(2350), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129582,15 +130894,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13821] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13717] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 7, + ACTIONS(2398), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129598,7 +130910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1889), 40, + ACTIONS(2400), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129639,15 +130951,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13883] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13779] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(2402), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129655,7 +130967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1893), 40, + ACTIONS(2404), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129696,15 +131008,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13945] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13841] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(2414), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129712,7 +131024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1897), 40, + ACTIONS(2416), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129753,15 +131065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14007] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13903] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(2418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129769,7 +131081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 40, + ACTIONS(2420), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129810,15 +131122,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14069] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [13965] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 7, + ACTIONS(2422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129826,7 +131138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1909), 40, + ACTIONS(2424), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129867,15 +131179,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14131] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14027] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 7, + ACTIONS(2426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129883,7 +131195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1917), 40, + ACTIONS(2428), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129924,15 +131236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14193] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14089] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 7, + ACTIONS(2430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129940,7 +131252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1921), 40, + ACTIONS(2432), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129981,15 +131293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14255] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14151] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(1923), 7, + ACTIONS(2440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129997,7 +131309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1925), 40, + ACTIONS(2442), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130038,15 +131350,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14317] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14213] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(1927), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130054,7 +131366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1929), 40, + ACTIONS(2482), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130095,15 +131407,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14379] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14275] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(1931), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130111,7 +131423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1933), 40, + ACTIONS(2494), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130152,15 +131464,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14441] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14337] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130168,7 +131480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1937), 40, + ACTIONS(2498), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130209,15 +131521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14503] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14399] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130225,7 +131537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1941), 40, + ACTIONS(2506), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130266,15 +131578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14565] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14461] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130282,7 +131594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1945), 40, + ACTIONS(2510), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130323,15 +131635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14627] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14523] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(2556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130339,7 +131651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1949), 40, + ACTIONS(2558), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130380,15 +131692,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14689] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14585] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 7, + ACTIONS(2572), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130396,7 +131708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1953), 40, + ACTIONS(2574), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130437,15 +131749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14751] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14647] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(1955), 7, + ACTIONS(2828), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130453,7 +131765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1957), 40, + ACTIONS(2830), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130494,15 +131806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14813] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14709] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1959), 7, + ACTIONS(2852), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +131822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1961), 40, + ACTIONS(2854), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130551,15 +131863,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14875] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14771] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(1963), 7, + ACTIONS(2912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130567,7 +131879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1965), 40, + ACTIONS(2914), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130608,15 +131920,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14937] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14833] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(1856), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130624,7 +131936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1969), 40, + ACTIONS(1858), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130665,15 +131977,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14999] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14895] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(3067), 7, + ACTIONS(1860), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130681,7 +131993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3069), 40, + ACTIONS(1862), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130722,15 +132034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15061] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [14957] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 7, + ACTIONS(1864), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130738,7 +132050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1977), 40, + ACTIONS(1866), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130779,15 +132091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15123] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15019] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(1979), 7, + ACTIONS(1868), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130795,7 +132107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1981), 40, + ACTIONS(1870), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130836,15 +132148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15185] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15081] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(1872), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130852,7 +132164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 40, + ACTIONS(1874), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130893,15 +132205,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15247] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15143] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 7, + ACTIONS(1880), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130909,7 +132221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1989), 40, + ACTIONS(1882), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130950,15 +132262,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15309] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15205] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(1991), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130966,7 +132278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1993), 40, + ACTIONS(1886), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131007,15 +132319,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15371] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15267] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1995), 7, + ACTIONS(1892), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131023,7 +132335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1997), 40, + ACTIONS(1894), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131064,15 +132376,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15433] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15329] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(1999), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131080,7 +132392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2001), 40, + ACTIONS(1898), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131121,15 +132433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15495] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15391] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 7, + ACTIONS(1900), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131137,7 +132449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2005), 40, + ACTIONS(1902), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131178,15 +132490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15557] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15453] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2007), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131194,7 +132506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2009), 40, + ACTIONS(1906), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131235,15 +132547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15619] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15515] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131251,7 +132563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2013), 40, + ACTIONS(1910), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131292,15 +132604,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15681] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15577] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 7, + ACTIONS(1912), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131308,7 +132620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2017), 40, + ACTIONS(1914), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131349,15 +132661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15743] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15639] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131365,7 +132677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2021), 40, + ACTIONS(1918), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131406,15 +132718,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15805] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15701] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 7, + ACTIONS(1920), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131422,7 +132734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2025), 40, + ACTIONS(1922), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131463,15 +132775,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15867] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15763] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131479,7 +132791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2029), 40, + ACTIONS(1926), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131520,15 +132832,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15929] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15825] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131536,7 +132848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2033), 40, + ACTIONS(1930), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131577,15 +132889,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15991] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15887] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131593,7 +132905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2037), 40, + ACTIONS(1934), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131634,15 +132946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16053] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [15949] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(1936), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131650,7 +132962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1845), 40, + ACTIONS(1938), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131691,15 +133003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16115] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16011] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131707,7 +133019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2041), 40, + ACTIONS(1942), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131748,15 +133060,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16177] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16073] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2043), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131764,7 +133076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2045), 40, + ACTIONS(1946), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131805,15 +133117,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16239] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16135] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 7, + ACTIONS(1948), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131821,7 +133133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2049), 40, + ACTIONS(1950), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131862,15 +133174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16301] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16197] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 7, + ACTIONS(1952), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131878,7 +133190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2053), 40, + ACTIONS(1954), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131919,15 +133231,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16363] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16259] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, + ACTIONS(1956), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131935,7 +133247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2057), 40, + ACTIONS(1958), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131976,15 +133288,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16425] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16321] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 7, + ACTIONS(1960), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131992,7 +133304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2061), 40, + ACTIONS(1962), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132033,15 +133345,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16487] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16383] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 7, + ACTIONS(1964), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132049,7 +133361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2065), 40, + ACTIONS(1966), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132090,15 +133402,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16549] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16445] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 7, + ACTIONS(1968), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132106,7 +133418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2073), 40, + ACTIONS(1970), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132147,15 +133459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16611] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16507] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 7, + ACTIONS(1972), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132163,7 +133475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2077), 40, + ACTIONS(1974), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132204,15 +133516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16673] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16569] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132220,7 +133532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2081), 40, + ACTIONS(1978), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132261,15 +133573,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16735] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16631] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132277,7 +133589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2085), 40, + ACTIONS(1982), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132318,15 +133630,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16797] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16693] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2087), 7, + ACTIONS(1984), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132334,7 +133646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2089), 40, + ACTIONS(1986), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132375,15 +133687,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16859] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16755] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2091), 7, + ACTIONS(1988), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132391,7 +133703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2093), 40, + ACTIONS(1990), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132432,15 +133744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16921] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16817] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2095), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132448,7 +133760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2097), 40, + ACTIONS(1994), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132489,15 +133801,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16983] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16879] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2099), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132505,7 +133817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2101), 40, + ACTIONS(1998), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132546,15 +133858,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17045] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [16941] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2103), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132562,7 +133874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2105), 40, + ACTIONS(2002), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132603,15 +133915,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17107] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17003] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2107), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132619,7 +133931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2109), 40, + ACTIONS(2006), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132660,15 +133972,186 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17169] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17065] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2111), 7, + ACTIONS(2008), 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(2010), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17127] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1334), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2012), 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(2014), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17189] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2016), 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(2018), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17251] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132676,7 +134159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2113), 40, + ACTIONS(2022), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132717,15 +134200,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17231] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17313] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 7, + ACTIONS(2024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132733,7 +134216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2117), 40, + ACTIONS(2026), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132774,15 +134257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17293] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17375] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 7, + ACTIONS(2028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132790,7 +134273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2121), 40, + ACTIONS(2030), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132831,15 +134314,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17355] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17437] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 7, + ACTIONS(2032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132847,7 +134330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2125), 40, + ACTIONS(2034), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132888,15 +134371,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17417] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17499] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132904,7 +134387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2129), 40, + ACTIONS(2038), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132945,15 +134428,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17479] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17561] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2131), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132961,7 +134444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2133), 40, + ACTIONS(2042), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133002,15 +134485,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17541] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17623] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 7, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133018,7 +134501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2137), 40, + ACTIONS(2046), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133059,15 +134542,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17603] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17685] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133075,7 +134558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2141), 40, + ACTIONS(2054), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133116,15 +134599,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17665] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17747] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 7, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133132,7 +134615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2145), 40, + ACTIONS(2058), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133173,15 +134656,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17727] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17809] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 7, + ACTIONS(2060), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133189,7 +134672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2149), 40, + ACTIONS(2062), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133230,15 +134713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17789] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17871] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133246,7 +134729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2153), 40, + ACTIONS(2066), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133287,15 +134770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17851] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17933] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133303,7 +134786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2157), 40, + ACTIONS(2070), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133344,15 +134827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17913] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [17995] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 7, + ACTIONS(2072), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133360,7 +134843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2161), 40, + ACTIONS(2074), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133401,15 +134884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17975] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18057] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 7, + ACTIONS(2076), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133417,7 +134900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2165), 40, + ACTIONS(2078), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133458,15 +134941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18037] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18119] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(2080), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133474,7 +134957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2169), 40, + ACTIONS(2082), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133515,15 +134998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18099] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18181] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 7, + ACTIONS(2084), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133531,7 +135014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2173), 40, + ACTIONS(2086), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133572,15 +135055,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18161] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18243] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 7, + ACTIONS(2088), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133588,7 +135071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2177), 40, + ACTIONS(2090), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133629,15 +135112,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18223] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18305] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 7, + ACTIONS(2092), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133645,7 +135128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2181), 40, + ACTIONS(2094), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133686,15 +135169,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18285] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18367] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 7, + ACTIONS(2096), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +135185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2185), 40, + ACTIONS(2098), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133743,15 +135226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18347] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18429] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 7, + ACTIONS(2100), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133759,7 +135242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2189), 40, + ACTIONS(2102), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133800,15 +135283,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18409] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18491] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2104), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133816,7 +135299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2193), 40, + ACTIONS(2106), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133857,15 +135340,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18471] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18553] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 7, + ACTIONS(2108), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133873,7 +135356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2197), 40, + ACTIONS(2110), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133914,15 +135397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18533] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18615] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 7, + ACTIONS(2112), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133930,7 +135413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2201), 40, + ACTIONS(2114), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133971,15 +135454,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18595] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [18677] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 7, + ACTIONS(2116), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133987,7 +135470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2205), 40, + ACTIONS(2118), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134028,15 +135511,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18657] = 5, - ACTIONS(105), 1, + [18739] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2120), 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(2122), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18801] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 7, + ACTIONS(2124), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134044,7 +135584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2209), 40, + ACTIONS(2126), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134085,15 +135625,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18719] = 5, - ACTIONS(105), 1, + [18863] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2128), 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(2130), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18925] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 7, + ACTIONS(2132), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134101,7 +135698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2213), 40, + ACTIONS(2134), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134142,15 +135739,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18781] = 5, - ACTIONS(105), 1, + [18987] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1364), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2136), 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(2138), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19049] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 7, + ACTIONS(2140), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134158,7 +135812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2217), 40, + ACTIONS(2142), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134199,15 +135853,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18843] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19111] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 7, + ACTIONS(2144), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134215,7 +135869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2221), 40, + ACTIONS(2146), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134256,15 +135910,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18905] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19173] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2223), 7, + ACTIONS(2148), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134272,7 +135926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2225), 40, + ACTIONS(2150), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134313,15 +135967,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18967] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19235] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 7, + ACTIONS(2152), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134329,7 +135983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2229), 40, + ACTIONS(2154), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134370,15 +136024,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19029] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19297] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 7, + ACTIONS(2156), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134386,7 +136040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2233), 40, + ACTIONS(2158), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134427,15 +136081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19091] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19359] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 7, + ACTIONS(2164), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134443,7 +136097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2237), 40, + ACTIONS(2166), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134484,15 +136138,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19153] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19421] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 7, + ACTIONS(2168), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134500,7 +136154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2241), 40, + ACTIONS(2170), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134541,15 +136195,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19215] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19483] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 7, + ACTIONS(2172), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134557,7 +136211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2245), 40, + ACTIONS(2174), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134598,85 +136252,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19277] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19545] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 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(3583), 31, + ACTIONS(2176), 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19339] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1368), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1903), 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(1905), 35, + ACTIONS(2178), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134697,46 +136289,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_gen, 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [19401] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19607] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 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(2180), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3591), 32, + ACTIONS(2182), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134754,46 +136343,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_unsafe, + anon_sym_use, + anon_sym_extern, anon_sym_raw, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19463] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19669] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(3597), 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(2184), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3595), 32, + ACTIONS(2186), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134811,46 +136400,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_unsafe, + anon_sym_use, + anon_sym_extern, anon_sym_raw, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19525] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19731] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 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(2188), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(2563), 32, + ACTIONS(2190), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134868,30 +136457,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_unsafe, + anon_sym_use, + anon_sym_extern, anon_sym_raw, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19587] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19793] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(2192), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134899,7 +136496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1905), 40, + ACTIONS(2194), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134940,31 +136537,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19649] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [19855] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 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(2196), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(1905), 32, + ACTIONS(2198), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134982,142 +136571,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_raw, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19711] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3599), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(1374), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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(3451), 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, - [19779] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3245), 1, + anon_sym_enum, anon_sym_fn, - ACTIONS(3601), 1, - sym_identifier, - ACTIONS(3603), 1, - anon_sym_LPAREN, - ACTIONS(3607), 1, - anon_sym_COLON_COLON, - ACTIONS(3609), 1, - anon_sym_default, - ACTIONS(3611), 1, - anon_sym_for, - ACTIONS(3617), 1, - sym_metavariable, - STATE(1098), 1, - sym_scoped_type_identifier, - STATE(1413), 1, - sym_generic_type, - STATE(1618), 1, - sym_for_lifetimes, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(3654), 1, - sym_scoped_identifier, - STATE(3689), 1, - sym_generic_type_with_turbofish, - STATE(3701), 1, - sym_bracketed_type, - STATE(3775), 1, - sym_function_modifiers, - STATE(1375), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3613), 3, anon_sym_gen, + 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_raw, - ACTIONS(3615), 3, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1485), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3605), 17, + [19917] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2200), 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(2202), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135135,132 +136628,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [19883] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3619), 1, - anon_sym_BANG, - STATE(1376), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - ACTIONS(3453), 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(3451), 23, - 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, - [19951] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19979] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1377), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3555), 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(3557), 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, - [20013] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 7, + ACTIONS(2204), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135268,7 +136667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3623), 40, + ACTIONS(2206), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135309,124 +136708,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20075] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20041] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 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(3569), 31, + ACTIONS(2208), 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20137] = 26, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3199), 1, - anon_sym_fn, - ACTIONS(3627), 1, - sym_identifier, - ACTIONS(3629), 1, - anon_sym_LPAREN, - ACTIONS(3633), 1, anon_sym_COLON_COLON, - ACTIONS(3635), 1, - anon_sym_default, - ACTIONS(3637), 1, - anon_sym_for, - ACTIONS(3643), 1, + anon_sym_POUND, sym_metavariable, - STATE(1603), 1, - sym_for_lifetimes, - STATE(1609), 1, - sym_scoped_type_identifier, - STATE(1677), 1, - sym_generic_type, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(3644), 1, - sym_function_modifiers, - STATE(3680), 1, - sym_scoped_identifier, - STATE(3699), 1, - sym_generic_type_with_turbofish, - STATE(3705), 1, - sym_bracketed_type, - STATE(1380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3639), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3641), 3, - sym_self, - sym_super, - sym_crate, - STATE(1818), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3631), 17, + ACTIONS(2210), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135444,31 +136742,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [20241] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20103] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 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(2212), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3571), 32, + ACTIONS(2214), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135486,46 +136799,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_unsafe, + anon_sym_use, + anon_sym_extern, anon_sym_raw, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [20303] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20165] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 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(2216), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3517), 32, + ACTIONS(2218), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135543,82 +136856,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_unsafe, + anon_sym_use, + anon_sym_extern, anon_sym_raw, - anon_sym_true, - anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [20365] = 26, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20227] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(1640), 1, - anon_sym_fn, - ACTIONS(3478), 1, - anon_sym_LPAREN, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3589), 1, - anon_sym_default, - ACTIONS(3645), 1, - sym_identifier, - ACTIONS(3647), 1, - anon_sym_for, - STATE(1606), 1, - sym_for_lifetimes, - STATE(2042), 1, - sym_generic_type, - STATE(2268), 1, - sym_scoped_type_identifier, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3661), 1, - sym_function_modifiers, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1383), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(2220), 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(2222), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + 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_raw, - ACTIONS(3492), 3, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2074), 3, - sym_higher_ranked_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3587), 17, + [20289] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1385), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2224), 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(2226), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135636,15 +136970,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [20469] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20351] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, + ACTIONS(2228), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135652,7 +137009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1973), 40, + ACTIONS(2230), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135693,76 +137050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20531] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20413] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(3651), 1, - anon_sym_COLON_COLON, - STATE(1467), 1, - sym_field_initializer_list, - STATE(1385), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 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(1504), 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, - [20601] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3385), 12, + ACTIONS(2160), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -135775,7 +137071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(3383), 35, + ACTIONS(2162), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135809,60 +137105,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_raw, sym_identifier, sym_self, - sym_super, - sym_crate, - [20663] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1686), 1, - anon_sym_DASH, - ACTIONS(1712), 1, - aux_sym_string_literal_token1, - ACTIONS(1720), 1, - sym__raw_string_literal_start, - ACTIONS(3413), 1, - anon_sym_if, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3657), 1, - anon_sym_COLON_COLON, - ACTIONS(3661), 1, - sym_metavariable, - STATE(2641), 1, - sym_scoped_identifier, - STATE(3020), 1, - sym__literal_pattern, - STATE(3632), 1, - sym_bracketed_type, - STATE(3649), 1, - sym_generic_type_with_turbofish, - ACTIONS(1714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3411), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1387), 2, + sym_super, + sym_crate, + [20475] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(2460), 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_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, sym_integer_literal, + aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(3659), 3, - sym_self, - sym_super, - sym_crate, - STATE(2441), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3655), 21, + sym_metavariable, + ACTIONS(2462), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135880,19 +137149,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, anon_sym_default, anon_sym_gen, anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, anon_sym_raw, - [20757] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20537] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 7, + ACTIONS(2160), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135900,7 +137180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2289), 40, + ACTIONS(2162), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135941,23 +137221,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20819] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20599] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2411), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3646), 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_EQ, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2413), 40, + ACTIONS(3644), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135975,138 +137263,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - 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_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [20881] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20661] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3650), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, 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(3549), 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, - [20943] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1686), 1, - anon_sym_DASH, - ACTIONS(1712), 1, + anon_sym_POUND, + sym_integer_literal, aux_sym_string_literal_token1, - ACTIONS(1720), 1, - sym__raw_string_literal_start, - ACTIONS(3401), 1, - anon_sym_if, - ACTIONS(3657), 1, - anon_sym_COLON_COLON, - ACTIONS(3663), 1, - sym_identifier, - ACTIONS(3669), 1, + sym_char_literal, sym_metavariable, - STATE(2678), 1, - sym_scoped_identifier, - STATE(2889), 1, - sym__literal_pattern, - STATE(3632), 1, - sym_bracketed_type, - STATE(3649), 1, - sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(3648), 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__, + anon_sym_DOT_DOT, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_raw, anon_sym_true, anon_sym_false, - ACTIONS(3399), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1391), 2, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20723] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(2160), 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_EQ, + anon_sym_COLON_COLON, + anon_sym_POUND, sym_integer_literal, + aux_sym_string_literal_token1, sym_char_literal, - ACTIONS(3667), 3, - sym_self, - sym_super, - sym_crate, - STATE(2441), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3665), 21, + sym_metavariable, + ACTIONS(2162), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136124,62 +137377,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_const, anon_sym_default, anon_sym_gen, anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, anon_sym_raw, - [21037] = 21, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20785] = 26, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, - anon_sym_DASH, - ACTIONS(1712), 1, - aux_sym_string_literal_token1, - ACTIONS(1720), 1, - sym__raw_string_literal_start, - ACTIONS(3425), 1, - anon_sym_if, - ACTIONS(3657), 1, - anon_sym_COLON_COLON, - ACTIONS(3671), 1, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(3258), 1, + anon_sym_fn, + ACTIONS(3652), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3654), 1, + anon_sym_LPAREN, + ACTIONS(3658), 1, + anon_sym_COLON_COLON, + ACTIONS(3660), 1, + anon_sym_default, + ACTIONS(3662), 1, + anon_sym_for, + ACTIONS(3668), 1, sym_metavariable, - STATE(2864), 1, + STATE(1097), 1, + sym_scoped_type_identifier, + STATE(1428), 1, + sym_generic_type, + STATE(1622), 1, + sym_for_lifetimes, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(3659), 1, sym_scoped_identifier, - STATE(2926), 1, - sym__literal_pattern, - STATE(3632), 1, - sym_bracketed_type, - STATE(3649), 1, + STATE(3695), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3423), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1392), 2, + STATE(3707), 1, + sym_bracketed_type, + STATE(3772), 1, + sym_function_modifiers, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3675), 3, + ACTIONS(1323), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3664), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3666), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3673), 21, + STATE(1506), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3656), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136197,27 +137470,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [21131] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [20889] = 26, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2819), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(3222), 1, + anon_sym_fn, + ACTIONS(3670), 1, + sym_identifier, + ACTIONS(3672), 1, + anon_sym_LPAREN, + ACTIONS(3676), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3678), 1, + anon_sym_default, + ACTIONS(3680), 1, + anon_sym_for, + ACTIONS(3686), 1, sym_metavariable, - ACTIONS(2821), 40, + STATE(1623), 1, + sym_scoped_type_identifier, + STATE(1630), 1, + sym_for_lifetimes, + STATE(1675), 1, + sym_generic_type, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(3649), 1, + sym_function_modifiers, + STATE(3686), 1, + sym_scoped_identifier, + STATE(3705), 1, + sym_generic_type_with_turbofish, + STATE(3711), 1, + sym_bracketed_type, + STATE(1394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1323), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3682), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3684), 3, + sym_self, + sym_super, + sym_crate, + STATE(1772), 3, + sym_higher_ranked_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3674), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136235,40 +137548,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [20993] = 8, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + ACTIONS(3688), 1, + anon_sym_BANG, + STATE(1395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_gen, - 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_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21193] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3683), 1, - anon_sym_DASH_GT, - STATE(1394), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3681), 15, + ACTIONS(3481), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136284,13 +137583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3679), 30, + anon_sym_as, + ACTIONS(3479), 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, @@ -136311,21 +137608,23 @@ 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_SQUOTE, - anon_sym_as, - anon_sym_else, - [21256] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21061] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3689), 1, - anon_sym_DASH_GT, - STATE(1395), 2, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(3694), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136341,13 +137640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3685), 30, + ACTIONS(1531), 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, @@ -136369,26 +137667,83 @@ 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, - [21319] = 6, - ACTIONS(105), 1, + [21131] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2920), 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(2922), 40, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + 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_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21193] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3695), 1, - anon_sym_DASH_GT, - STATE(1396), 2, + ACTIONS(3696), 1, + anon_sym_LBRACE, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3546), 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, @@ -136398,13 +137753,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3691), 30, + ACTIONS(3548), 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, @@ -136426,66 +137780,66 @@ 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, - [21382] = 23, + [21256] = 23, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, + ACTIONS(1637), 1, anon_sym_LBRACK, - ACTIONS(3363), 1, + ACTIONS(3332), 1, anon_sym_SQUOTE, - ACTIONS(3474), 1, + ACTIONS(3497), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3501), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, + ACTIONS(3503), 1, anon_sym_STAR, - ACTIONS(3484), 1, + ACTIONS(3507), 1, anon_sym_AMP, - ACTIONS(3486), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3513), 1, anon_sym_for, - ACTIONS(3494), 1, + ACTIONS(3517), 1, sym_metavariable, - STATE(2586), 1, + STATE(2622), 1, sym_where_predicate, - STATE(2812), 1, + STATE(2881), 1, sym_scoped_type_identifier, - STATE(3140), 1, + STATE(2890), 1, sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3641), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3781), 1, sym_generic_type_with_turbofish, - STATE(1397), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, + ACTIONS(3515), 3, sym_self, sym_super, sym_crate, - ACTIONS(3488), 4, + ACTIONS(3511), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - STATE(3400), 6, + STATE(3472), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3482), 17, + ACTIONS(3505), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136503,17 +137857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [21479] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21353] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3701), 1, - anon_sym_DASH_GT, - STATE(1398), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(3544), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136524,12 +137876,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(3697), 30, + ACTIONS(3542), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136548,27 +137902,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_SQUOTE, anon_sym_as, anon_sym_else, - [21542] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [21414] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3700), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136584,7 +137937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3703), 31, + ACTIONS(3698), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136612,77 +137965,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, - [21603] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21475] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1455), 1, - sym_label, - STATE(1400), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3709), 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(3707), 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_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, - [21668] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + ACTIONS(3706), 1, + anon_sym_DASH_GT, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3713), 15, + ACTIONS(3704), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136698,7 +137995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3711), 31, + ACTIONS(3702), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136726,28 +138023,26 @@ 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, - [21729] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21538] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACE, - STATE(1402), 2, + ACTIONS(3712), 1, + anon_sym_DASH_GT, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3710), 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, @@ -136757,12 +138052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 29, + ACTIONS(3708), 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, @@ -136784,18 +138080,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, - [21792] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21601] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + ACTIONS(3718), 1, + anon_sym_DASH_GT, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3716), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136811,7 +138109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 31, + ACTIONS(3714), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136839,19 +138137,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, - [21853] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21664] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, + ACTIONS(1621), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136867,7 +138164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3721), 31, + ACTIONS(1623), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136875,6 +138172,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, @@ -136895,21 +138193,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, - [21914] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21725] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, + ACTIONS(3720), 1, anon_sym_LBRACE, - STATE(1405), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(3534), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136926,7 +138223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 29, + ACTIONS(3536), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136956,17 +138253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [21977] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21788] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1406), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136982,7 +138277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3722), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137010,32 +138305,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, - [22040] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21849] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3729), 1, - anon_sym_move, - STATE(484), 1, - sym_block, - STATE(3782), 1, - sym_label, - STATE(1407), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137051,9 +138333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3726), 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, @@ -137075,18 +138361,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, - [22115] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [21910] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3735), 1, - anon_sym_DASH_GT, - STATE(1408), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137102,7 +138389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(3730), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137130,18 +138417,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, - [22178] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [21971] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(3736), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137157,7 +138445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 31, + ACTIONS(3734), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137189,15 +138477,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22239] = 5, - ACTIONS(105), 1, + [22032] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3688), 1, + anon_sym_BANG, + ACTIONS(3738), 1, + anon_sym_move, + STATE(423), 1, + sym_block, + STATE(3679), 1, + sym_label, + STATE(1411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 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(3479), 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, + [22107] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3742), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137213,7 +138564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 31, + ACTIONS(3740), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137245,17 +138596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22300] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22168] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1411), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137271,7 +138620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 30, + ACTIONS(3744), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137299,22 +138648,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, - [22363] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22229] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3747), 1, - anon_sym_LPAREN, - STATE(1479), 1, - sym_arguments, - STATE(1412), 2, + ACTIONS(3748), 1, + anon_sym_COLON_COLON, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137330,8 +138678,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 29, + ACTIONS(3564), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137360,17 +138709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22428] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22292] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1413), 2, + ACTIONS(3754), 1, + anon_sym_DASH_GT, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137386,7 +138735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 30, + ACTIONS(3750), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137417,35 +138766,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22491] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22355] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3751), 1, - anon_sym_move, - STATE(399), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(1414), 2, + ACTIONS(3756), 1, + anon_sym_LBRACE, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3560), 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, @@ -137455,10 +138793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3562), 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, @@ -137479,18 +138819,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_COLON_COLON, anon_sym_as, - [22566] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [22418] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3757), 1, - anon_sym_DASH_GT, - STATE(1415), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137506,7 +138847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 30, + ACTIONS(3758), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137534,18 +138875,78 @@ 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, - [22629] = 5, - ACTIONS(105), 1, + [22479] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3762), 1, + anon_sym_LBRACE, + STATE(1418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3576), 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(3578), 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, + [22542] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + ACTIONS(3764), 1, + anon_sym_COLON_COLON, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137561,7 +138962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3759), 31, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137589,19 +138990,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, - [22690] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22605] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + ACTIONS(3766), 1, + anon_sym_COLON_COLON, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137617,7 +139019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 31, + ACTIONS(3594), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137645,28 +139047,26 @@ 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, - [22751] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22668] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3767), 1, - anon_sym_LBRACE, - STATE(1418), 2, + ACTIONS(3748), 1, + anon_sym_COLON_COLON, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3596), 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, @@ -137676,12 +139076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 29, + ACTIONS(3594), 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, @@ -137703,18 +139104,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, - [22814] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22731] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137730,7 +139131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 31, + ACTIONS(3768), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137762,17 +139163,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22875] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22792] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - STATE(1420), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3774), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137788,7 +139187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3772), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137816,20 +139215,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, - [22938] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22853] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 1, - anon_sym_COLON_COLON, - STATE(1421), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3778), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137845,7 +139243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3776), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137873,20 +139271,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, - [23001] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22914] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1422), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137902,7 +139299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3412), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137910,6 +139307,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, @@ -137933,15 +139331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23064] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [22975] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + ACTIONS(3784), 1, + anon_sym_DASH_GT, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137957,7 +139357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1606), 31, + ACTIONS(3780), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137965,7 +139365,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, @@ -137989,17 +139388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23125] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23038] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3777), 1, + ACTIONS(3748), 1, anon_sym_COLON_COLON, - STATE(1424), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138015,7 +139414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3538), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138046,24 +139445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23188] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23101] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1425), 2, + ACTIONS(3748), 1, + anon_sym_COLON_COLON, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3528), 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, @@ -138073,12 +139471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 29, + ACTIONS(3526), 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, @@ -138100,18 +139499,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, - [23251] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23164] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + ACTIONS(3790), 1, + anon_sym_DASH_GT, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138127,7 +139528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 31, + ACTIONS(3786), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138155,23 +139556,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, - [23312] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23227] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3785), 1, - anon_sym_else, - STATE(1445), 1, - sym_else_clause, - STATE(1427), 2, + ACTIONS(3796), 1, + anon_sym_DASH_GT, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138187,7 +139585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1410), 29, + ACTIONS(3792), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138217,15 +139615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [23377] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [23290] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + ACTIONS(3798), 1, + anon_sym_else, + STATE(1505), 1, + sym_else_clause, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 15, + ACTIONS(1413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138241,7 +139644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 31, + ACTIONS(1411), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138269,19 +139672,17 @@ 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, - [23438] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23355] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138292,14 +139693,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(3551), 29, + ACTIONS(3800), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138318,26 +139717,28 @@ 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [23499] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23416] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138353,7 +139754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 31, + ACTIONS(3804), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138381,19 +139782,86 @@ 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, - [23560] = 5, - ACTIONS(105), 1, + [23477] = 12, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3808), 1, + anon_sym_move, + STATE(482), 1, + sym_block, + STATE(3788), 1, + sym_label, + STATE(1434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 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(3479), 24, + 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_COMMA, + anon_sym_as, + [23552] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + ACTIONS(3812), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_arguments, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138409,9 +139877,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 31, + ACTIONS(3810), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138437,19 +139904,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, - [23621] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23617] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1525), 1, + sym_label, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138465,7 +139935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 31, + ACTIONS(3816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138493,19 +139963,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, - [23682] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23682] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(3820), 1, + anon_sym_COLON_COLON, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138521,7 +139991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3395), 31, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138529,7 +139999,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, @@ -138553,17 +140022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23743] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [23745] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3807), 1, - anon_sym_DASH_GT, - STATE(1434), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138579,7 +140046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 30, + ACTIONS(3822), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138607,18 +140074,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, [23806] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138634,7 +140102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3826), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138666,14 +140134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [23866] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(1058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138689,7 +140157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, + ACTIONS(1060), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138721,14 +140189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [23926] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138744,7 +140212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 30, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138776,14 +140244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [23986] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(3832), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138799,7 +140267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 30, + ACTIONS(3830), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138831,14 +140299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24046] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(3836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138854,7 +140322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 30, + ACTIONS(3834), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138886,14 +140354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24106] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138909,7 +140377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 30, + ACTIONS(3838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138941,14 +140409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24166] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138964,7 +140432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(3842), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138996,14 +140464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24226] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1004), 15, + ACTIONS(1561), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139019,7 +140487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1006), 30, + ACTIONS(1559), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139051,14 +140519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24286] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139074,7 +140542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1056), 30, + ACTIONS(3846), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139106,14 +140574,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, [24346] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139129,7 +140597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(3850), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139160,15 +140628,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24406] = 5, - ACTIONS(105), 1, + [24406] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3856), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1449), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 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(3854), 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, + [24468] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 15, + ACTIONS(3862), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139184,7 +140708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1484), 30, + ACTIONS(3860), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139215,15 +140739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24466] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24528] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139239,7 +140763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1554), 30, + ACTIONS(3854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139270,15 +140794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24526] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24588] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139294,7 +140818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1466), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139325,15 +140849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24586] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24648] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(1490), 15, + ACTIONS(3866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139349,7 +140873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1488), 30, + ACTIONS(3864), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139380,15 +140904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24646] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24708] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139404,7 +140928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, + ACTIONS(3868), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139435,15 +140959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24706] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24768] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,7 +140983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3872), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139490,15 +141014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24766] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24828] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,7 +141038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(1475), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139545,15 +141069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24826] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24888] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1482), 15, + ACTIONS(3880), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139567,17 +141097,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(1480), 30, + ACTIONS(3876), 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, @@ -139600,15 +141127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24886] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [24954] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 15, + ACTIONS(3888), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139624,7 +141151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1476), 30, + ACTIONS(3886), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139655,15 +141182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24946] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25014] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3892), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139679,7 +141206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 30, + ACTIONS(3890), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139710,15 +141237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25006] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25074] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139734,7 +141261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(3894), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139765,15 +141292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25066] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25134] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139789,7 +141316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 30, + ACTIONS(3898), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139820,15 +141347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25126] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25194] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139844,7 +141371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 30, + ACTIONS(3902), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139875,15 +141402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25186] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25254] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139899,7 +141426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 30, + ACTIONS(3906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139930,29 +141457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25246] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25314] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3861), 1, - anon_sym_BANG, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - ACTIONS(3865), 1, - anon_sym_move, - STATE(1726), 1, - sym_block, - STATE(3783), 1, - sym_label, - STATE(1459), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139968,10 +141481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3564), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139991,16 +141508,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_SQUOTE, anon_sym_as, - [25320] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [25374] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1521), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140016,7 +141536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(1519), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140047,15 +141567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25380] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25434] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140071,7 +141591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 30, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140102,15 +141622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25440] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25494] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140126,7 +141646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3914), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140157,15 +141677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25500] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25554] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(3920), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140181,7 +141701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3871), 30, + ACTIONS(3918), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140212,15 +141732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25560] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25614] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, + ACTIONS(3924), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140236,7 +141756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3875), 30, + ACTIONS(3922), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140267,15 +141787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25620] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25674] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140291,7 +141811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3879), 30, + ACTIONS(3926), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140322,15 +141842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25680] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25734] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(1016), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140346,7 +141866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1018), 30, + ACTIONS(3930), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140377,15 +141897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25740] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25794] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140401,7 +141921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3883), 30, + ACTIONS(1255), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140432,15 +141952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25800] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25854] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140456,7 +141976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 30, + ACTIONS(3934), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140487,15 +142007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25860] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25914] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, + ACTIONS(1463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140511,7 +142031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3891), 30, + ACTIONS(1461), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140542,15 +142062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25920] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [25974] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3897), 15, + ACTIONS(1549), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140566,7 +142086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3895), 30, + ACTIONS(1547), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140597,21 +142117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25980] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26034] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1471), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 14, + ACTIONS(1481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140625,14 +142139,17 @@ 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(3899), 28, + ACTIONS(1479), 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, @@ -140655,15 +142172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26046] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26094] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3911), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140679,7 +142196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3909), 30, + ACTIONS(3938), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140710,15 +142227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26106] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26154] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140734,7 +142251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 30, + ACTIONS(1539), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140765,15 +142282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26166] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26214] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140789,7 +142306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1014), 30, + ACTIONS(3942), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140820,15 +142337,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26226] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26274] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(1530), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140844,7 +142361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1528), 30, + ACTIONS(3946), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140875,15 +142392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26286] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26334] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1456), 15, + ACTIONS(3952), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140899,7 +142416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1454), 30, + ACTIONS(3950), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140930,15 +142447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26346] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26394] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(3956), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140954,7 +142471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 30, + ACTIONS(3954), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140985,21 +142502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26406] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26454] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1478), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 14, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141013,14 +142524,17 @@ 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(3921), 28, + ACTIONS(3594), 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, @@ -141043,15 +142557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26472] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26514] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(1241), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141067,7 +142581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 30, + ACTIONS(1243), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141098,15 +142612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26532] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26574] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(1464), 15, + ACTIONS(1557), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141122,7 +142636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1462), 30, + ACTIONS(1555), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141153,15 +142667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26592] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26634] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(1545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141177,7 +142691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 30, + ACTIONS(1543), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141208,15 +142722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26652] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26694] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141232,7 +142746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 30, + ACTIONS(1507), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141263,15 +142777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26712] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26754] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 15, + ACTIONS(1553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141287,7 +142801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3937), 30, + ACTIONS(1551), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141318,15 +142832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26772] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26814] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3943), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141342,7 +142856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3941), 30, + ACTIONS(1491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141373,15 +142887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26832] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26874] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141397,7 +142911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 30, + ACTIONS(1495), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141428,15 +142942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26892] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26934] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3947), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141452,7 +142966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3945), 30, + ACTIONS(1499), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141483,15 +142997,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26952] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [26994] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3951), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141507,7 +143021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3949), 30, + ACTIONS(3958), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141538,15 +143052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27012] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27054] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, + ACTIONS(1042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141562,7 +143076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3953), 30, + ACTIONS(1044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141593,15 +143107,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27072] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27114] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141617,7 +143131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(960), 30, + ACTIONS(1471), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141648,15 +143162,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27132] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27174] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3959), 15, + ACTIONS(3964), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141670,17 +143190,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(3957), 30, + ACTIONS(3962), 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, @@ -141703,15 +143220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27192] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27240] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1544), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141727,7 +143244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1542), 30, + ACTIONS(3966), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141758,15 +143275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27252] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27300] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3963), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141782,7 +143299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3961), 30, + ACTIONS(3970), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141813,18 +143330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27312] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27360] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1493), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141840,12 +143354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 28, + ACTIONS(1531), 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, @@ -141867,17 +143382,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, - [27374] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27420] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141893,7 +143409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3971), 30, + ACTIONS(3974), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141924,15 +143440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27434] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27480] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141948,7 +143464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3975), 30, + ACTIONS(3978), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141979,15 +143495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27494] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27540] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3981), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142003,7 +143519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3979), 30, + ACTIONS(3982), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142034,15 +143550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27554] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27600] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + ACTIONS(3986), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142058,13 +143577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1558), 30, + ACTIONS(3854), 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, @@ -142086,18 +143604,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, - [27614] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27662] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3985), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142113,7 +143630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3983), 30, + ACTIONS(3988), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142144,15 +143661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27674] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27722] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(3540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142168,7 +143685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 30, + ACTIONS(3538), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142199,15 +143716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27734] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27782] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(1526), 15, + ACTIONS(1505), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142223,7 +143740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1524), 30, + ACTIONS(1503), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142254,23 +143771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27794] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27842] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - STATE(1501), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3989), 14, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142284,14 +143793,17 @@ 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(3987), 27, + ACTIONS(3526), 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, @@ -142312,16 +143824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [27862] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27902] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(3994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142337,7 +143850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3993), 30, + ACTIONS(3992), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142368,15 +143881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27922] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [27962] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(1513), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142392,7 +143905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3997), 30, + ACTIONS(1511), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142423,15 +143936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27982] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28022] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(4003), 15, + ACTIONS(1565), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142447,7 +143960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4001), 30, + ACTIONS(1563), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142478,18 +143991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28042] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28082] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1505), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(1485), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142505,12 +144015,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 28, + ACTIONS(1483), 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, @@ -142532,17 +144043,24 @@ 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, - [28104] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28142] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 15, + ACTIONS(3998), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142556,17 +144074,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(4007), 30, + ACTIONS(3996), 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, @@ -142589,15 +144104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28164] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28208] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142613,7 +144128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(1523), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142644,15 +144159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28224] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28268] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142668,7 +144183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 30, + ACTIONS(1457), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142699,15 +144214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28284] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28328] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 15, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142723,7 +144238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1470), 30, + ACTIONS(1487), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142754,15 +144269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28344] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28388] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1498), 15, + ACTIONS(4002), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142778,7 +144293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1496), 30, + ACTIONS(4000), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142809,15 +144324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28404] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28448] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1042), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142833,7 +144348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1044), 30, + ACTIONS(4004), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142864,15 +144379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28464] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28508] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(4013), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142888,7 +144403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4011), 30, + ACTIONS(4008), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142919,15 +144434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28524] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28568] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(4017), 15, + ACTIONS(4014), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142943,7 +144458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4015), 30, + ACTIONS(4012), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142974,15 +144489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28584] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28628] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4021), 15, + ACTIONS(1517), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142998,7 +144513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4019), 30, + ACTIONS(1515), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143029,15 +144544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28644] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28688] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143053,7 +144568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4023), 30, + ACTIONS(4016), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143084,15 +144599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28704] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28748] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(4022), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143108,7 +144623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(4020), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143139,15 +144654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28764] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28808] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(4029), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143163,7 +144678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4027), 30, + ACTIONS(4024), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143194,15 +144709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28824] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28868] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 15, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143218,7 +144733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4031), 30, + ACTIONS(4028), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143249,21 +144764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28884] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28928] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1519), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 14, + ACTIONS(4034), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143277,14 +144786,17 @@ 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(4035), 28, + ACTIONS(4032), 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, @@ -143307,15 +144819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28950] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [28988] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1134), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143331,7 +144843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1136), 30, + ACTIONS(4036), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143362,15 +144874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29010] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29048] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(4041), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143386,7 +144898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4039), 30, + ACTIONS(4040), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143417,19 +144929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29070] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29108] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - STATE(1522), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143445,12 +144953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 28, + ACTIONS(1531), 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, @@ -143472,17 +144981,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, - [29134] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29168] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4045), 15, + ACTIONS(1046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143498,7 +145008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4043), 30, + ACTIONS(1048), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143529,19 +145039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29194] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29228] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - STATE(1524), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143557,12 +145063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 28, + ACTIONS(4044), 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, @@ -143584,17 +145091,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, - [29258] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29288] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143610,7 +145118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1446), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143641,15 +145149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29318] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29348] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(4048), 1, + anon_sym_BANG, + ACTIONS(4050), 1, + anon_sym_COLON_COLON, + ACTIONS(4052), 1, + anon_sym_move, + STATE(1823), 1, + sym_block, + STATE(3789), 1, + sym_label, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143665,14 +145187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 30, - anon_sym_SEMI, + ACTIONS(3479), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143692,19 +145210,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_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29378] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29422] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(4051), 15, + ACTIONS(1569), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143720,7 +145235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4049), 30, + ACTIONS(1567), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143751,15 +145266,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29438] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29482] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 15, + ACTIONS(4056), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143773,17 +145294,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(4053), 30, + ACTIONS(4054), 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, @@ -143806,15 +145324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29498] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29548] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 15, + ACTIONS(1050), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143830,7 +145348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1512), 30, + ACTIONS(1052), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143861,15 +145379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29608] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(4060), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143885,7 +145403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(4058), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143916,15 +145434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29618] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29668] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1531), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(4059), 15, + ACTIONS(4064), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143940,7 +145458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4057), 30, + ACTIONS(4062), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143971,15 +145489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29678] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29728] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1494), 15, + ACTIONS(4068), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143995,7 +145513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1492), 30, + ACTIONS(4066), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144026,15 +145544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29738] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29788] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(1510), 15, + ACTIONS(4072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144050,7 +145568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1508), 30, + ACTIONS(4070), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144081,15 +145599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29798] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29848] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(1460), 15, + ACTIONS(4076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144105,7 +145623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1458), 30, + ACTIONS(4074), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144136,15 +145654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29858] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29908] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(1518), 15, + ACTIONS(4080), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144160,7 +145678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1516), 30, + ACTIONS(4078), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144191,15 +145709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29918] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [29968] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(1522), 15, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144215,7 +145733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1520), 30, + ACTIONS(4082), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144246,15 +145764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29978] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30028] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(1540), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144270,7 +145788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1538), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144301,15 +145819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30038] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30088] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4063), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144325,7 +145843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4061), 30, + ACTIONS(4086), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144356,15 +145874,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30098] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30148] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(4067), 15, + ACTIONS(4092), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144378,17 +145904,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(4065), 30, + ACTIONS(4090), 27, 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, @@ -144409,17 +145932,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [30158] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30216] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4071), 15, + ACTIONS(4098), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144435,7 +145957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4069), 30, + ACTIONS(4096), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144466,15 +145988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30218] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30276] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4075), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144490,7 +146012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4073), 30, + ACTIONS(1433), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144521,15 +146043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30278] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30336] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1542), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(4102), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144545,7 +146067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(4100), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144576,15 +146098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30338] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30396] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(4106), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144600,7 +146122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 30, + ACTIONS(4104), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144631,21 +146153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30398] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30456] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1544), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4079), 14, + ACTIONS(4110), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144659,14 +146175,17 @@ 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(4077), 28, + ACTIONS(4108), 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, @@ -144689,15 +146208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30464] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30516] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1440), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144713,7 +146232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1438), 30, + ACTIONS(3810), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144744,15 +146263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30524] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30576] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1546), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 15, + ACTIONS(4114), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144768,7 +146287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1546), 30, + ACTIONS(4112), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144799,15 +146318,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30584] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30636] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(4083), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144823,13 +146346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4081), 30, + ACTIONS(3479), 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, @@ -144851,18 +146373,21 @@ 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, - [30644] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30700] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(4087), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144878,13 +146403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4085), 30, + ACTIONS(1531), 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, @@ -144906,18 +146430,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, - [30704] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30764] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4091), 15, + ACTIONS(4120), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144933,7 +146456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4089), 30, + ACTIONS(4118), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144964,15 +146487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30764] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30824] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(4095), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144988,7 +146511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4093), 30, + ACTIONS(1531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145019,15 +146542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30824] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30884] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1551), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4099), 15, + ACTIONS(4124), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145043,7 +146566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4097), 30, + ACTIONS(4122), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145074,15 +146597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30884] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [30944] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4103), 15, + ACTIONS(1054), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145098,7 +146621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4101), 30, + ACTIONS(1056), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145129,15 +146652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30944] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31004] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 15, + ACTIONS(4128), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145153,7 +146676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4105), 30, + ACTIONS(4126), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145184,15 +146707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31004] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31064] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4111), 15, + ACTIONS(4132), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145208,7 +146731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4109), 30, + ACTIONS(4130), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145239,15 +146762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31064] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31124] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4115), 15, + ACTIONS(4136), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145263,7 +146786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4113), 30, + ACTIONS(4134), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145294,15 +146817,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31124] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31184] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3489), 1, + anon_sym_move, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3724), 1, + sym_label, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(4119), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145318,14 +146853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4117), 30, - anon_sym_SEMI, + ACTIONS(3479), 23, 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, @@ -145345,21 +146876,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_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [31184] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31255] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4121), 1, + ACTIONS(4140), 1, anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145375,7 +146903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 28, + ACTIONS(1531), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145404,17 +146932,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [31245] = 6, - ACTIONS(105), 1, + [31316] = 10, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(3489), 1, + anon_sym_move, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + STATE(1488), 1, + sym_block, + STATE(3724), 1, + sym_label, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 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(3479), 24, + anon_sym_LPAREN, + 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, + 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_SQUOTE, + anon_sym_as, + [31385] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3485), 1, anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145430,7 +147017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 28, + ACTIONS(3479), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145459,53 +147046,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [31306] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31446] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(1132), 1, - sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(4146), 1, anon_sym_COLON_COLON, - ACTIONS(3421), 1, - sym_identifier, - ACTIONS(3431), 1, - sym_metavariable, - STATE(2149), 1, - sym_scoped_identifier, - STATE(2222), 1, - sym__literal_pattern, - STATE(3740), 1, - sym_bracketed_type, - STATE(3804), 1, - sym_generic_type_with_turbofish, - ACTIONS(1124), 2, - anon_sym_true, - anon_sym_false, - STATE(1559), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3429), 3, - sym_self, - sym_super, - sym_crate, - STATE(2116), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3427), 21, + ACTIONS(4144), 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(4142), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145523,19 +147084,32 @@ 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_gen, + anon_sym_impl, anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, anon_sym_raw, - [31393] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31507] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1560), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 10, + ACTIONS(4151), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -145546,7 +147120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4123), 34, + ACTIONS(4149), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145581,53 +147155,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31452] = 19, + [31566] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1299), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1359), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3414), 1, sym_identifier, - ACTIONS(3419), 1, + ACTIONS(3424), 1, sym_metavariable, - STATE(2162), 1, + STATE(2164), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2198), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1351), 2, anon_sym_true, anon_sym_false, - STATE(1561), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1347), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3417), 3, + ACTIONS(3422), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2119), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3415), 21, + ACTIONS(3420), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145649,53 +147223,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [31539] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31653] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(1132), 1, - sym__raw_string_literal_start, - ACTIONS(2301), 1, - anon_sym_COLON_COLON, - ACTIONS(3397), 1, - sym_identifier, - ACTIONS(3407), 1, - sym_metavariable, - STATE(2174), 1, - sym_scoped_identifier, - STATE(2225), 1, - sym__literal_pattern, - STATE(3740), 1, - sym_bracketed_type, - STATE(3804), 1, - sym_generic_type_with_turbofish, - ACTIONS(1124), 2, - anon_sym_true, - anon_sym_false, - STATE(1562), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3405), 3, - sym_self, - sym_super, - sym_crate, - STATE(2116), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3403), 21, + ACTIONS(4155), 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(4153), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145713,30 +147260,70 @@ 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_gen, + anon_sym_impl, anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + anon_sym_dyn, anon_sym_raw, - [31626] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31712] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4129), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1299), 1, + anon_sym_DASH, + ACTIONS(1349), 1, + aux_sym_string_literal_token1, + ACTIONS(1359), 1, + sym__raw_string_literal_start, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3426), 1, + sym_identifier, + ACTIONS(3436), 1, sym_metavariable, - ACTIONS(4127), 34, + STATE(2186), 1, + sym_scoped_identifier, + STATE(2240), 1, + sym__literal_pattern, + STATE(3742), 1, + sym_bracketed_type, + STATE(3805), 1, + sym_generic_type_with_turbofish, + ACTIONS(1351), 2, + anon_sym_true, + anon_sym_false, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1347), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(2119), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3432), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145754,33 +147341,21 @@ 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_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31685] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31799] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1564), 2, + ACTIONS(4157), 1, + anon_sym_LPAREN, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4133), 10, - anon_sym_LPAREN, + ACTIONS(4144), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -145790,7 +147365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4131), 34, + ACTIONS(4142), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145825,17 +147400,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31744] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [31860] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4139), 1, - anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4137), 9, + ACTIONS(4162), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -145843,9 +147416,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(4135), 34, + ACTIONS(4160), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145880,86 +147454,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31805] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3461), 1, - anon_sym_move, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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, + [31919] = 19, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3451), 24, - anon_sym_LPAREN, - 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, - 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_SQUOTE, - anon_sym_as, - [31874] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4144), 1, - anon_sym_LPAREN, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4137), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(1703), 1, + anon_sym_DASH, + ACTIONS(1729), 1, + aux_sym_string_literal_token1, + ACTIONS(1737), 1, + sym__raw_string_literal_start, + ACTIONS(3616), 1, + sym_identifier, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + ACTIONS(3624), 1, sym_metavariable, - ACTIONS(4135), 34, + STATE(2685), 1, + sym_scoped_identifier, + STATE(2989), 1, + sym__literal_pattern, + STATE(3637), 1, + sym_bracketed_type, + STATE(3654), 1, + sym_generic_type_with_turbofish, + ACTIONS(1731), 2, + anon_sym_true, + anon_sym_false, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1727), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3622), 3, + sym_self, + sym_super, + sym_crate, + STATE(2517), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3618), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145977,70 +147518,57 @@ 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_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31935] = 19, + [32006] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1703), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1729), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1737), 1, sym__raw_string_literal_start, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3657), 1, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - ACTIONS(3661), 1, + ACTIONS(3626), 1, + sym_identifier, + ACTIONS(3632), 1, sym_metavariable, - STATE(2641), 1, + STATE(2807), 1, sym_scoped_identifier, - STATE(3020), 1, + STATE(3112), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3637), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3654), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1731), 2, anon_sym_true, anon_sym_false, - STATE(1568), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1727), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3659), 3, + ACTIONS(3630), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2517), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3655), 21, + ACTIONS(3628), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146062,113 +147590,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [32022] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3461), 1, - anon_sym_move, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1569), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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(3451), 23, - anon_sym_LPAREN, - 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, - 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, [32093] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1703), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1729), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1737), 1, sym__raw_string_literal_start, - ACTIONS(3657), 1, + ACTIONS(3620), 1, anon_sym_COLON_COLON, - ACTIONS(3663), 1, + ACTIONS(3634), 1, sym_identifier, - ACTIONS(3669), 1, + ACTIONS(3640), 1, sym_metavariable, - STATE(2678), 1, + STATE(2821), 1, sym_scoped_identifier, - STATE(2889), 1, + STATE(3126), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3637), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3654), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1731), 2, anon_sym_true, anon_sym_false, - STATE(1570), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1727), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3667), 3, + ACTIONS(3638), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2517), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3665), 21, + ACTIONS(3636), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146193,50 +147661,50 @@ static const uint16_t ts_small_parse_table[] = { [32180] = 19, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1299), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1359), 1, sym__raw_string_literal_start, - ACTIONS(3657), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(3671), 1, + ACTIONS(3438), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3448), 1, sym_metavariable, - STATE(2864), 1, + STATE(2160), 1, sym_scoped_identifier, - STATE(2926), 1, + STATE(2194), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1351), 2, anon_sym_true, anon_sym_false, - STATE(1571), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1347), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3675), 3, + ACTIONS(3446), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2119), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3673), 21, + ACTIONS(3444), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146258,54 +147726,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [32267] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32267] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(357), 1, + anon_sym_EQ, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4149), 2, + ACTIONS(4184), 1, + anon_sym_DOT_DOT, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1572), 2, + ACTIONS(4186), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 19, + ACTIONS(351), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146321,120 +147793,51 @@ 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_COMMA, anon_sym_else, - [32353] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32357] = 14, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_COLON_COLON, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3472), 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(3470), 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, - 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, - [32423] = 18, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1574), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 20, + ACTIONS(4092), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -146446,54 +147849,58 @@ 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, - [32507] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32433] = 17, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(3989), 2, + ACTIONS(4092), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1575), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 21, + ACTIONS(4090), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146515,54 +147922,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32589] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32515] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(394), 2, - anon_sym_EQ, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4190), 1, + anon_sym_EQ, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1576), 2, + ACTIONS(4186), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(392), 19, + ACTIONS(4188), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146578,49 +147989,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32675] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32605] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1577), 2, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, + anon_sym_COLON_COLON, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1671), 1, + sym_type_arguments, + STATE(1676), 1, + sym_parameters, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3477), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3475), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146631,239 +148043,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_COMMA, - anon_sym_else, - [32745] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [32675] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, 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(3987), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4174), 1, anon_sym_AMP_AMP, + ACTIONS(4176), 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_COMMA, - anon_sym_else, - [32813] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4149), 2, + ACTIONS(4184), 1, + anon_sym_DOT_DOT, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 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, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32887] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1580), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 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, + ACTIONS(4180), 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_COMMA, - anon_sym_else, - [32959] = 14, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1581), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(4198), 17, 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, @@ -146873,72 +148116,54 @@ static const uint16_t ts_small_parse_table[] = { 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_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33035] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32765] = 15, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4179), 1, - anon_sym_EQ, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4177), 17, + ACTIONS(4092), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -146949,60 +148174,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_COMMA, anon_sym_else, - [33125] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32843] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4187), 1, + ACTIONS(4204), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4185), 17, + ACTIONS(4202), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147020,50 +148251,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33215] = 15, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [32933] = 18, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4149), 2, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4092), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4090), 20, 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, @@ -147075,74 +148313,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_COMMA, anon_sym_else, - [33293] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [33017] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4208), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4007), 7, + ACTIONS(4206), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147153,66 +148380,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33385] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33103] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(409), 2, anon_sym_EQ, - ACTIONS(4149), 2, + anon_sym_DOT_DOT, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 7, + ACTIONS(407), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147223,48 +148447,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33477] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33189] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_COLON_COLON, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 17, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 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(3433), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4090), 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, @@ -147275,34 +148500,39 @@ 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, - [33547] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + [33259] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(4193), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147311,13 +148541,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(3451), 24, + ACTIONS(4090), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147336,25 +148566,95 @@ 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, - [33611] = 9, - ACTIONS(105), 1, + anon_sym_COMMA, + anon_sym_else, + [33327] = 22, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4184), 1, + anon_sym_DOT_DOT, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4186), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4112), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4210), 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, + [33419] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, + ACTIONS(3692), 1, anon_sym_LBRACE, - ACTIONS(3651), 1, + ACTIONS(3694), 1, anon_sym_COLON_COLON, - ACTIONS(4195), 1, + ACTIONS(4214), 1, anon_sym_BANG, - STATE(1467), 1, + STATE(1535), 1, sym_field_initializer_list, - STATE(1589), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147370,7 +148670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, + ACTIONS(1531), 24, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -147395,58 +148695,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33677] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [33485] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4218), 1, + anon_sym_EQ, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1590), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 17, + ACTIONS(4216), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147464,58 +148764,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33767] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [33575] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4199), 1, + ACTIONS(4222), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1591), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 17, + ACTIONS(4220), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147533,58 +148833,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33857] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [33665] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1592), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3857), 7, + ACTIONS(4004), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147592,7 +148892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147603,66 +148903,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33949] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [33757] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(4226), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1593), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 7, + ACTIONS(4224), 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, - ACTIONS(4189), 10, + [33847] = 13, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1595), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -147673,63 +149025,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34041] = 21, - ACTIONS(105), 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_COMMA, + anon_sym_else, + [33921] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4203), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1594), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4201), 17, + ACTIONS(4040), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147740,65 +149103,181 @@ 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, - [34131] = 21, - ACTIONS(105), 1, + [34013] = 11, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_BANG, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4194), 1, + anon_sym_COLON_COLON, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1671), 1, + sym_type_arguments, + STATE(1676), 1, + sym_parameters, + STATE(1597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3454), 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(3450), 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, + 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, + [34083] = 8, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3483), 1, + anon_sym_BANG, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + ACTIONS(4228), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1598), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 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(3479), 24, + anon_sym_LPAREN, + 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, + 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_SQUOTE, + anon_sym_as, + [34147] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4184), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4186), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1595), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 17, + ACTIONS(4118), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,29 +149288,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_COMMA, - anon_sym_else, - [34221] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34239] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - ACTIONS(4173), 1, + ACTIONS(4194), 1, anon_sym_COLON_COLON, - ACTIONS(4175), 1, + ACTIONS(4196), 1, anon_sym_LT2, - ACTIONS(4209), 1, + ACTIONS(4230), 1, anon_sym_BANG, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, + STATE(1671), 1, sym_type_arguments, - STATE(1596), 2, + STATE(1676), 1, + sym_parameters, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 17, + ACTIONS(3464), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147849,7 +149326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3445), 20, + ACTIONS(3462), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147870,21 +149347,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34291] = 8, - ACTIONS(105), 1, + [34309] = 12, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, + [34381] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(4232), 1, anon_sym_COLON_COLON, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(4211), 1, - sym_identifier, - STATE(1597), 2, + STATE(1671), 1, + sym_type_arguments, + STATE(1676), 1, + sym_parameters, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 16, + ACTIONS(3493), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147895,17 +149436,68 @@ 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(3491), 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, + 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, - ACTIONS(3451), 23, - anon_sym_SEMI, + [34448] = 8, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(4234), 1, + anon_sym_COLON_COLON, + STATE(1535), 1, + sym_field_initializer_list, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1533), 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(1531), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147925,25 +149517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [34354] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_as, + [34511] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4213), 1, + ACTIONS(4230), 1, + anon_sym_BANG, + ACTIONS(4236), 1, + anon_sym_LBRACE, + ACTIONS(4238), 1, anon_sym_COLON_COLON, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, - STATE(1598), 2, + STATE(1941), 1, + sym_field_initializer_list, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147954,14 +149546,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(3501), 20, + ACTIONS(1531), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147975,29 +149566,31 @@ 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, - [34421] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34576] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, + ACTIONS(3483), 1, anon_sym_BANG, - ACTIONS(4142), 1, + ACTIONS(4138), 1, anon_sym_COLON_COLON, - ACTIONS(4215), 2, + ACTIONS(4240), 2, anon_sym_const, sym_mutable_specifier, - STATE(1599), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148013,7 +149606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3479), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148037,21 +149630,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34484] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34639] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, + ACTIONS(4048), 1, anon_sym_BANG, - ACTIONS(4217), 1, + ACTIONS(4050), 1, anon_sym_COLON_COLON, - STATE(1467), 1, - sym_field_initializer_list, - STATE(1600), 2, + ACTIONS(4242), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148067,10 +149661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, + ACTIONS(3479), 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, @@ -148090,24 +149684,22 @@ 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, - [34547] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34702] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_BANG, - ACTIONS(3863), 1, + ACTIONS(3485), 1, anon_sym_COLON_COLON, - ACTIONS(4219), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(1601), 2, + ACTIONS(3688), 1, + anon_sym_BANG, + ACTIONS(4244), 1, + sym_identifier, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3481), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148123,10 +149715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + anon_sym_as, + ACTIONS(3479), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148146,24 +149740,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_as, - [34610] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34765] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, + ACTIONS(3560), 1, anon_sym_BANG, - ACTIONS(4221), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, + ACTIONS(3562), 1, anon_sym_COLON_COLON, - STATE(1920), 1, - sym_field_initializer_list, - STATE(1602), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3558), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148174,12 +149763,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(1504), 23, + ACTIONS(3556), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148194,100 +149785,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_as, - [34675] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34825] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3589), 1, - anon_sym_default, - ACTIONS(4225), 1, - sym_identifier, - ACTIONS(4227), 1, - anon_sym_fn, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(2665), 1, - sym_scoped_type_identifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3655), 1, - sym_function_modifiers, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1603), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3587), 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, - [34765] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1604), 2, + ACTIONS(3485), 1, + anon_sym_COLON_COLON, + ACTIONS(3688), 1, + anon_sym_BANG, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 17, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148298,16 +149816,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(3523), 20, + ACTIONS(3479), 24, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148319,42 +149837,49 @@ 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, - [34829] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [34885] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(3576), 1, + anon_sym_BANG, + ACTIONS(3578), 1, + anon_sym_COLON_COLON, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(3574), 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(3569), 25, + ACTIONS(3572), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148366,113 +149891,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_EQ_EQ, 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, - [34885] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [34945] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3589), 1, - anon_sym_default, - ACTIONS(4229), 1, - sym_identifier, - ACTIONS(4231), 1, - anon_sym_fn, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(2769), 1, - sym_scoped_type_identifier, - STATE(3506), 1, - sym_function_modifiers, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3587), 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, - [34975] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACE, - STATE(1607), 2, + ACTIONS(3546), 1, + anon_sym_BANG, + ACTIONS(3548), 1, + anon_sym_COLON_COLON, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3544), 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(3557), 24, + ACTIONS(3542), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148487,25 +149944,23 @@ 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, - [35033] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35005] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3576), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148522,7 +149977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 25, + ACTIONS(3578), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148548,23 +150003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [35089] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35061] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1609), 2, + ACTIONS(3534), 1, + anon_sym_BANG, + ACTIONS(3536), 1, + anon_sym_COLON_COLON, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 17, + ACTIONS(3532), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148582,7 +150033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 20, + ACTIONS(3530), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148603,41 +150055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35153] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [35121] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1610), 2, + ACTIONS(3762), 1, + anon_sym_LBRACE, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, + ACTIONS(3576), 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(3513), 20, + ACTIONS(3578), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148651,31 +150098,35 @@ 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, - [35217] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35179] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1611), 2, + ACTIONS(4116), 1, + anon_sym_COLON_COLON, + ACTIONS(4214), 1, + anon_sym_BANG, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(1533), 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, @@ -148685,10 +150136,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 24, + ACTIONS(1531), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148708,39 +150160,103 @@ 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, - [35275] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35239] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_BANG, - ACTIONS(3557), 1, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - STATE(1612), 2, + ACTIONS(3517), 1, + sym_metavariable, + ACTIONS(3612), 1, + anon_sym_default, + ACTIONS(4246), 1, + sym_identifier, + ACTIONS(4248), 1, + anon_sym_fn, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(2854), 1, + sym_scoped_type_identifier, + STATE(3619), 1, + sym_function_modifiers, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3685), 1, + sym_generic_type, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(1323), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3511), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3610), 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, + [35329] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3696), 1, + anon_sym_LBRACE, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 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(3551), 22, + ACTIONS(3548), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148755,33 +150271,34 @@ 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, - [35335] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35387] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1613), 2, + ACTIONS(3720), 1, + anon_sym_LBRACE, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3534), 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, @@ -148791,10 +150308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3536), 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, @@ -148814,21 +150331,25 @@ 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_COLON_COLON, anon_sym_as, - [35395] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35445] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(4233), 1, - anon_sym_COLON_COLON, - STATE(1614), 2, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1672), 1, + sym_type_arguments, + STATE(1677), 1, + sym_parameters, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3540), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148839,15 +150360,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(1504), 24, - anon_sym_LPAREN, + ACTIONS(3538), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148859,50 +150381,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_SQUOTE, anon_sym_as, - [35455] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35509] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_BANG, - ACTIONS(3583), 1, - anon_sym_COLON_COLON, - STATE(1615), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 17, + ACTIONS(3546), 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(3577), 22, + ACTIONS(3548), 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, @@ -148914,43 +150428,54 @@ 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, - anon_sym_LT2, - [35515] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35565] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1672), 1, + sym_type_arguments, + STATE(1677), 1, + sym_parameters, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3566), 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(3549), 25, - anon_sym_LPAREN, + ACTIONS(3564), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148962,46 +150487,118 @@ 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, - [35571] = 5, - ACTIONS(105), 1, + [35629] = 22, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1339), 1, + anon_sym_extern, + ACTIONS(3509), 1, + anon_sym_COLON_COLON, + ACTIONS(3517), 1, + sym_metavariable, + ACTIONS(3612), 1, + anon_sym_default, + ACTIONS(4250), 1, + sym_identifier, + ACTIONS(4252), 1, + anon_sym_fn, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(2860), 1, + sym_scoped_type_identifier, + STATE(3522), 1, + sym_function_modifiers, + STATE(3641), 1, + sym_bracketed_type, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3685), 1, + sym_generic_type, + STATE(3781), 1, + sym_generic_type_with_turbofish, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1323), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3511), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3515), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3610), 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, + [35719] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1672), 1, + sym_type_arguments, + STATE(1677), 1, + sym_parameters, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3528), 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(3557), 25, - anon_sym_LPAREN, + ACTIONS(3526), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149013,68 +150610,64 @@ 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, - [35627] = 22, + [35783] = 22, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1339), 1, anon_sym_extern, - ACTIONS(3486), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3517), 1, sym_metavariable, - ACTIONS(3589), 1, + ACTIONS(3612), 1, anon_sym_default, - ACTIONS(4235), 1, + ACTIONS(4254), 1, sym_identifier, - ACTIONS(4237), 1, + ACTIONS(4256), 1, anon_sym_fn, - STATE(2336), 1, + STATE(2316), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2450), 1, sym_extern_modifier, - STATE(2836), 1, + STATE(2887), 1, sym_scoped_type_identifier, - STATE(3515), 1, - sym_function_modifiers, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3641), 1, sym_bracketed_type, - STATE(3764), 1, + STATE(3677), 1, + sym_scoped_identifier, + STATE(3685), 1, sym_generic_type, - STATE(3780), 1, + STATE(3781), 1, sym_generic_type_with_turbofish, - STATE(1618), 2, + STATE(3824), 1, + sym_function_modifiers, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1323), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3511), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3515), 3, sym_self, sym_super, sym_crate, - ACTIONS(3587), 17, + ACTIONS(3610), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149092,40 +150685,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35717] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35873] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_BANG, - ACTIONS(3549), 1, - anon_sym_COLON_COLON, - STATE(1619), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 17, + ACTIONS(3560), 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(3543), 22, + ACTIONS(3562), 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, @@ -149137,27 +150725,34 @@ 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, - anon_sym_LT2, - [35777] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35929] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3619), 1, - anon_sym_BANG, - STATE(1620), 2, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1672), 1, + sym_type_arguments, + STATE(1677), 1, + sym_parameters, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3596), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149168,16 +150763,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(3451), 24, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3594), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149189,46 +150784,41 @@ 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, - [35837] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [35993] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_BANG, - ACTIONS(3569), 1, - anon_sym_COLON_COLON, - STATE(1621), 2, + ACTIONS(3756), 1, + anon_sym_LBRACE, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 17, + ACTIONS(3560), 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(3563), 22, + ACTIONS(3562), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149243,27 +150833,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, - [35897] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36051] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(4195), 1, + ACTIONS(3483), 1, anon_sym_BANG, - STATE(1622), 2, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149279,11 +150871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, - anon_sym_SEMI, + ACTIONS(3479), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149303,25 +150894,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, - [35957] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36111] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, - anon_sym_LBRACE, - STATE(1623), 2, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(4258), 1, + anon_sym_COLON_COLON, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(1533), 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, @@ -149331,10 +150924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 24, + ACTIONS(1531), 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, @@ -149354,59 +150947,59 @@ 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, - [36015] = 22, + [36171] = 22, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1339), 1, anon_sym_extern, - ACTIONS(3486), 1, + ACTIONS(3509), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3517), 1, sym_metavariable, - ACTIONS(3589), 1, + ACTIONS(3612), 1, anon_sym_default, - ACTIONS(4239), 1, + ACTIONS(4260), 1, sym_identifier, - ACTIONS(4241), 1, + ACTIONS(4262), 1, anon_sym_fn, - STATE(2336), 1, + STATE(2316), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2450), 1, sym_extern_modifier, - STATE(2877), 1, + STATE(2734), 1, sym_scoped_type_identifier, - STATE(3500), 1, + STATE(3641), 1, + sym_bracketed_type, + STATE(3660), 1, sym_function_modifiers, - STATE(3624), 1, + STATE(3677), 1, sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3764), 1, + STATE(3685), 1, sym_generic_type, - STATE(3780), 1, + STATE(3781), 1, sym_generic_type_with_turbofish, - STATE(1624), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1323), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3511), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3515), 3, sym_self, sym_super, sym_crate, - ACTIONS(3587), 17, + ACTIONS(3610), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -149424,43 +151017,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36105] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36261] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1625), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3534), 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(3509), 20, + ACTIONS(3536), 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, @@ -149472,47 +151057,77 @@ 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, - [36169] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36317] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3767), 1, - anon_sym_LBRACE, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(420), 1, + sym_block, + STATE(3679), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3583), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149523,74 +151138,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_COLON_COLON, - anon_sym_as, - [36227] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36412] = 25, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(886), 1, + anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4292), 1, + anon_sym_SEMI, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - STATE(1767), 1, - sym_block, - STATE(3783), 1, - sym_label, - ACTIONS(4243), 2, + ACTIONS(4298), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149601,18 +151208,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36322] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36507] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1628), 2, + STATE(1525), 1, + sym_label, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149628,10 +151234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 23, + ACTIONS(3816), 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, @@ -149651,67 +151257,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_SQUOTE, anon_sym_as, - [36379] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36564] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4048), 1, + anon_sym_BANG, + ACTIONS(4050), 1, + anon_sym_COLON_COLON, + STATE(1635), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3481), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(478), 1, - sym_block, - STATE(3782), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3479), 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, @@ -149722,22 +151304,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36474] = 5, - ACTIONS(105), 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, + [36623] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1630), 2, + ACTIONS(4230), 1, + anon_sym_BANG, + ACTIONS(4300), 1, + anon_sym_COLON_COLON, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(1533), 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, @@ -149747,7 +151339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 24, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149770,20 +151362,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, - [36529] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36682] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LBRACE, + ACTIONS(3986), 1, anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3858), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149799,10 +151389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 23, + ACTIONS(3854), 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, @@ -149822,67 +151412,41 @@ 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, - [36586] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36739] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(3856), 1, + anon_sym_COLON_COLON, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(1761), 1, - sym_block, - STATE(3783), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3854), 24, + anon_sym_LPAREN, + 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, @@ -149893,17 +151457,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36681] = 6, - ACTIONS(105), 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, + [36796] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + ACTIONS(4302), 1, + anon_sym_SQUOTE, + STATE(1915), 1, + sym_label, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3818), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149919,10 +151493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 24, + ACTIONS(3816), 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, @@ -149942,23 +151516,23 @@ 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, - [36738] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36855] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3560), 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, @@ -149968,10 +151542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3703), 25, + ACTIONS(3562), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -149994,15 +151567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36793] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36910] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3576), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150019,7 +151592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 24, + ACTIONS(3578), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150044,66 +151617,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36848] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [36965] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4271), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4277), 1, - anon_sym_COMMA, - STATE(3099), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3548), 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, - STATE(1636), 2, + anon_sym_COLON_COLON, + anon_sym_as, + [37020] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3986), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3858), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(3854), 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, @@ -150114,23 +151711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36943] = 6, - ACTIONS(105), 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, + [37077] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1637), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3534), 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, @@ -150140,10 +151743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3536), 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, @@ -150163,68 +151766,91 @@ 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_COLON_COLON, anon_sym_as, - [37000] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [37132] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(3856), 2, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + anon_sym_COLON_COLON, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(1446), 1, - sym_block, - STATE(3719), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3854), 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(1638), 2, + anon_sym_as, + [37189] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3742), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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(3740), 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150235,17 +151861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37095] = 6, - ACTIONS(105), 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, + [37244] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 1, - anon_sym_COLON_COLON, - STATE(1639), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3802), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150261,10 +151893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, + ACTIONS(3800), 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, @@ -150284,17 +151917,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_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [37152] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [37299] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3713), 15, + ACTIONS(3724), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150310,7 +151943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3711), 25, + ACTIONS(3722), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -150336,17 +151969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [37207] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [37354] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1455), 1, - sym_label, - STATE(1641), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150362,10 +151993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3707), 24, + ACTIONS(3758), 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, @@ -150385,21 +152017,91 @@ 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_COLON_COLON, anon_sym_as, - [37264] = 7, - ACTIONS(105), 1, + [37409] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(422), 1, + sym_block, + STATE(3679), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 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, + [37504] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_BANG, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - STATE(1642), 2, + ACTIONS(4304), 1, + anon_sym_else, + STATE(1852), 1, + sym_else_clause, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(1413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150415,7 +152117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(1411), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150439,66 +152141,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37323] = 25, - ACTIONS(105), 1, + [37563] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4310), 1, + anon_sym_RBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4316), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3069), 1, + sym__use_clause, + STATE(3547), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [37644] = 25, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, + ACTIONS(764), 1, anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, + ACTIONS(4324), 1, anon_sym_SEMI, - ACTIONS(4283), 1, + ACTIONS(4326), 1, anon_sym_COMMA, - STATE(3117), 1, + STATE(3083), 1, aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1643), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150509,41 +152274,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37418] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [37739] = 25, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, - anon_sym_BANG, - ACTIONS(4285), 1, - anon_sym_COLON_COLON, - STATE(1644), 2, + ACTIONS(932), 1, + anon_sym_RBRACK, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4328), 1, + anon_sym_SEMI, + ACTIONS(4330), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, + ACTIONS(4166), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [37834] = 25, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(908), 1, + anon_sym_RBRACK, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4332), 1, + anon_sym_SEMI, + ACTIONS(4334), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1504), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150554,45 +152414,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [37929] = 25, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(1475), 1, + sym_block, + STATE(3724), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 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, - [37477] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4280), 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, + [38024] = 25, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(1478), 1, + sym_block, + STATE(3724), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 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, + [38119] = 25, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(493), 1, + sym_block, + STATE(3788), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3759), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 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, + [38214] = 25, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1263), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, anon_sym_AMP_AMP, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(499), 1, + sym_block, + STATE(3788), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150603,74 +152694,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [38309] = 25, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + STATE(1858), 1, + sym_block, + STATE(3789), 1, + sym_label, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 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_COLON_COLON, - anon_sym_as, - [37532] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4280), 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, + [38404] = 25, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - STATE(1491), 1, + STATE(1865), 1, sym_block, - STATE(3719), 1, + STATE(3789), 1, sym_label, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150681,15 +152834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37627] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [38499] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + ACTIONS(4138), 1, + anon_sym_COLON_COLON, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150705,11 +152860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 25, + ACTIONS(3479), 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, @@ -150729,21 +152883,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_SQUOTE, anon_sym_as, - [37682] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [38556] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4287), 1, - anon_sym_SQUOTE, - STATE(1914), 1, - sym_label, - STATE(1648), 2, + ACTIONS(4336), 1, + anon_sym_COLON_COLON, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150759,10 +152911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3707), 23, + ACTIONS(1531), 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, @@ -150782,112 +152934,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_SQUOTE, anon_sym_as, - [37741] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [38613] = 24, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(880), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4289), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, + ACTIONS(4338), 1, + anon_sym_RPAREN, + ACTIONS(4340), 1, anon_sym_COMMA, - STATE(2989), 1, + STATE(2927), 1, aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [37836] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4293), 1, - anon_sym_else, - STATE(1755), 1, - sym_else_clause, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1412), 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(1410), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150898,55 +153004,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_as, - [37895] = 18, + [38705] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(4306), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, + ACTIONS(4312), 1, anon_sym_STAR, - ACTIONS(4305), 1, - anon_sym_COMMA, - ACTIONS(4307), 1, + ACTIONS(4318), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4322), 1, sym_metavariable, - STATE(2606), 1, + ACTIONS(4342), 1, + anon_sym_RBRACE, + STATE(2550), 1, sym_scoped_identifier, - STATE(3108), 1, + STATE(3420), 1, sym__use_clause, - STATE(3502), 1, + STATE(3547), 1, sym_bracketed_type, - STATE(3606), 1, + STATE(3722), 1, sym_generic_type_with_turbofish, - STATE(1651), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(4320), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, + STATE(2997), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4314), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -150968,22 +153065,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [37976] = 5, - ACTIONS(105), 1, + [38783] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4344), 1, + anon_sym_COLON_COLON, + STATE(1666), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3596), 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(3594), 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, + [38839] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + ACTIONS(4346), 1, + anon_sym_COLON_COLON, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3596), 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, @@ -150993,7 +153141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 24, + ACTIONS(3594), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151016,68 +153164,63 @@ 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, - [38031] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [38895] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - STATE(426), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4112), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151088,22 +153231,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38126] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [38983] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, + ACTIONS(4352), 1, + anon_sym_COLON_COLON, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(1533), 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, @@ -151113,7 +153257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 24, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151136,19 +153280,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, - [38181] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39039] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - STATE(1655), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3770), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151164,10 +153305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 24, + ACTIONS(3768), 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, @@ -151187,138 +153328,39 @@ 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_COLON_COLON, anon_sym_as, - [38238] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39093] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(422), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1656), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3774), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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, - [38333] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4313), 1, - anon_sym_SEMI, - ACTIONS(4315), 1, - anon_sym_COMMA, - STATE(3183), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3772), 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, @@ -151329,66 +153371,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38428] = 25, - ACTIONS(105), 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, + [39147] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + STATE(1672), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3778), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(491), 1, - sym_block, - STATE(3782), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1658), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3776), 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, @@ -151399,15 +153420,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38523] = 5, - ACTIONS(105), 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, + [39201] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(4354), 1, + anon_sym_DASH_GT, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3782), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151423,7 +153454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 24, + ACTIONS(3780), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151446,19 +153477,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, - [38577] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39257] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, + ACTIONS(4346), 1, anon_sym_COLON_COLON, - STATE(1660), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151474,7 +153504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3538), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151498,54 +153528,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38633] = 18, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39313] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4346), 1, + anon_sym_COLON_COLON, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3528), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1661), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3526), 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, @@ -151557,20 +153571,24 @@ 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, - [38713] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [39369] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4317), 1, + ACTIONS(4356), 1, anon_sym_DASH_GT, - STATE(1662), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151586,7 +153604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3685), 23, + ACTIONS(3786), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151610,17 +153628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38769] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39425] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4319), 1, + ACTIONS(4358), 1, anon_sym_DASH_GT, - STATE(1663), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3794), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151636,7 +153654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3691), 23, + ACTIONS(3792), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151660,17 +153678,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38825] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39481] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4321), 1, - anon_sym_DASH_GT, - STATE(1664), 2, + ACTIONS(4360), 1, + anon_sym_LPAREN, + STATE(1952), 1, + sym_arguments, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151686,8 +153706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 23, - anon_sym_LPAREN, + ACTIONS(3810), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -151710,62 +153729,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38881] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39539] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4019), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4362), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151776,17 +153795,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38969] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39627] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4364), 1, anon_sym_COLON_COLON, - STATE(1666), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151802,7 +153821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151826,64 +153845,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39025] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39683] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1667), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4118), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151894,52 +153911,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39117] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [39771] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3544), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1668), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3542), 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, + [39825] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3700), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 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(3698), 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, - ACTIONS(3987), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [39879] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4366), 1, + anon_sym_DASH_GT, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3704), 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(3702), 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, @@ -151952,49 +154052,94 @@ 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, - [39195] = 15, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [39935] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4368), 1, + anon_sym_DASH_GT, + STATE(1685), 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(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1669), 2, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3708), 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, + [39991] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4370), 1, + anon_sym_DASH_GT, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3716), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 21, + ACTIONS(3714), 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, @@ -152013,65 +154158,63 @@ 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, - [39269] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [40047] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, - anon_sym_RPAREN, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2925), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1670), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4004), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152082,17 +154225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39361] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40135] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, - STATE(1671), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3746), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152108,7 +154249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(3744), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152131,20 +154272,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, - [39417] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40189] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4337), 1, - anon_sym_LPAREN, - STATE(1923), 1, - sym_arguments, - STATE(1672), 2, + ACTIONS(4346), 1, + anon_sym_COLON_COLON, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152160,7 +154300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 22, + ACTIONS(3564), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -152183,15 +154324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39475] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40245] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + ACTIONS(4372), 1, + anon_sym_DASH_GT, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152207,7 +154350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 24, + ACTIONS(3750), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152230,41 +154373,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_COLON_COLON, anon_sym_as, - [39529] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40301] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4339), 1, - anon_sym_COLON_COLON, - STATE(1674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(4350), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 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, @@ -152275,22 +154438,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_as, - [39585] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40387] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(3596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152306,7 +154465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 24, + ACTIONS(3594), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152330,63 +154489,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [39639] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40443] = 24, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(912), 1, + anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4376), 1, + anon_sym_COMMA, + STATE(3084), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1676), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152397,17 +154557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39727] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40535] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_COLON_COLON, - STATE(1677), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3728), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152423,7 +154581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 23, + ACTIONS(3726), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152446,21 +154604,31 @@ 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, - [39783] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40589] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152469,13 +154637,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(3763), 24, + ACTIONS(4090), 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, @@ -152494,17 +154659,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, - [39837] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40653] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(3824), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152520,7 +154684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 24, + ACTIONS(3822), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152543,66 +154707,48 @@ 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, - [39891] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [40707] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4341), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4092), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -152613,35 +154759,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39983] = 5, - ACTIONS(105), 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, + [40777] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 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(3721), 24, + ACTIONS(4090), 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, @@ -152660,37 +154821,112 @@ 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, - [40037] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [40845] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4348), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4350), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, - anon_sym_PLUS, + ACTIONS(4040), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 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, + [40933] = 14, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 24, + ACTIONS(4090), 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, @@ -152709,32 +154945,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_DASH_GT, - anon_sym_as, - [40091] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41005] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1683), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(1463), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152743,10 +154968,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(3987), 21, + ACTIONS(1461), 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, @@ -152765,18 +154993,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_SQUOTE, - [40157] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + anon_sym_else, + [41059] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4343), 1, - anon_sym_DASH_GT, - STATE(1684), 2, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 15, + ACTIONS(1473), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152792,7 +155019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 23, + ACTIONS(1471), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152816,17 +155043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40213] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [41113] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4345), 1, - anon_sym_DASH_GT, - STATE(1685), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152842,7 +155068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3679), 23, + ACTIONS(1465), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152866,80 +155092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40269] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [41167] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4179), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1686), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4177), 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, - [40355] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1687), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152955,7 +155117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 24, + ACTIONS(1457), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152978,78 +155140,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, - [40409] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + [41221] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - ACTIONS(4347), 1, - anon_sym_RBRACE, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3291), 1, - sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(1688), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [40487] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(1456), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153065,7 +155166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1454), 24, + ACTIONS(1433), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153090,60 +155191,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [40541] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41275] = 17, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4199), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4092), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 13, + ACTIONS(4090), 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, @@ -153154,44 +155249,59 @@ 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, - [40627] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41353] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - STATE(1691), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(409), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 21, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(407), 15, 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, @@ -153202,61 +155312,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_SQUOTE, - [40691] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41435] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4226), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - STATE(1692), 2, + ACTIONS(4350), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 15, + ACTIONS(4224), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153269,148 +155379,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [40773] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41521] = 21, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1440), 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(1438), 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_as, - anon_sym_else, - [40827] = 13, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(357), 1, + anon_sym_EQ, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4249), 1, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4243), 2, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1694), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 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, - 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(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40897] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4349), 1, - anon_sym_DASH_GT, - STATE(1695), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 15, - anon_sym_PLUS, + ACTIONS(4266), 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(3753), 23, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(351), 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, @@ -153421,130 +155444,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, - [40953] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41607] = 21, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - ACTIONS(4351), 1, - anon_sym_RBRACE, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3291), 1, - sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [41031] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1697), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4007), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4198), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153555,64 +155509,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41119] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41693] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4190), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, - anon_sym_RPAREN, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(3046), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1698), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4188), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153623,56 +155574,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41211] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [41779] = 18, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(394), 2, + ACTIONS(4092), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - STATE(1699), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(392), 15, + ACTIONS(4090), 16, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153686,43 +155637,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [41293] = 14, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41859] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1700), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, + ACTIONS(4092), 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(3987), 21, + ACTIONS(4090), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -153744,60 +155692,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [41365] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [41925] = 24, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4378), 1, + anon_sym_COMMA, + STATE(2930), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153808,40 +155760,121 @@ 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, - [41451] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42017] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, anon_sym_COLON_COLON, - STATE(1702), 2, + ACTIONS(4322), 1, + sym_metavariable, + ACTIONS(4380), 1, + anon_sym_RBRACE, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3420), 1, + sym__use_clause, + STATE(3547), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [42095] = 21, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_EQ, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4348), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(4350), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4216), 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, @@ -153852,65 +155885,127 @@ 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, + [42181] = 24, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4382), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1717), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 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, - [41507] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4210), 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, + [42273] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4203), 1, + ACTIONS(4222), 1, anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4274), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4348), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4350), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1703), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4201), 13, + ACTIONS(4220), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153924,62 +156019,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [41593] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42359] = 24, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(936), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4384), 1, + anon_sym_COMMA, + STATE(2921), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4357), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153990,15 +156087,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41681] = 5, - ACTIONS(105), 1, + [42451] = 15, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, + 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_SQUOTE, + [42525] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3732), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154009,14 +156165,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(3551), 22, + ACTIONS(3730), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154031,68 +156185,47 @@ 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, - [41735] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42579] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3736), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1706), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4205), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3734), 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, anon_sym_STAR_EQ, @@ -154103,65 +156236,70 @@ 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, - [41821] = 24, - ACTIONS(105), 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, + [42633] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(932), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(3145), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1707), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4386), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154172,37 +156310,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41913] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42721] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1448), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, anon_sym_CARET, + ACTIONS(4270), 1, anon_sym_AMP, + ACTIONS(4272), 1, anon_sym_PIPE, + ACTIONS(4274), 1, + anon_sym_AMP_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4208), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1446), 24, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4266), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4206), 15, 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, @@ -154213,23 +156370,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_EQ_EQ, - 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_else, - [41967] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + [42803] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + ACTIONS(4050), 1, + anon_sym_COLON_COLON, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3481), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154245,7 +156399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 24, + ACTIONS(3479), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154268,120 +156422,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_DASH_GT, anon_sym_as, - [42021] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42859] = 24, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1710), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 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, - 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_SQUOTE, - [42089] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4388), 1, + anon_sym_RPAREN, + ACTIONS(4390), 1, + anon_sym_COMMA, + STATE(3024), 1, + aux_sym_arguments_repeat1, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4039), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154392,17 +156491,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42177] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [42951] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4361), 1, - anon_sym_DASH_GT, - STATE(1712), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3806), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154418,7 +156515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(3804), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154441,18 +156538,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_DASH_GT, anon_sym_as, - [42233] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43005] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - STATE(1713), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(4098), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154468,7 +156564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(4096), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154492,62 +156588,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42289] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43058] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4392), 1, + anon_sym_SEMI, + ACTIONS(4394), 1, + anon_sym_else, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1714), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4365), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154558,17 +156654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42377] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43147] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, - anon_sym_COLON_COLON, - STATE(1715), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(4102), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154584,7 +156678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(4100), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154608,17 +156702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42433] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43200] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_COLON_COLON, - STATE(1716), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(4120), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154634,7 +156726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(4118), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154658,15 +156750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42489] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43253] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154682,7 +156774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 24, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154705,17 +156797,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, - [42543] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43306] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(4128), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154731,7 +156822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 24, + ACTIONS(4126), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154754,66 +156845,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_as, - [42597] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43359] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(928), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3956), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1719), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3954), 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, @@ -154824,15 +156887,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42689] = 5, - ACTIONS(105), 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, + [43412] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(4132), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154848,7 +156918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 24, + ACTIONS(4130), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154871,82 +156941,22 @@ 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, - [42743] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43465] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4185), 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, - [42829] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3964), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154960,13 +156970,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(1504), 23, + ACTIONS(3962), 21, 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, @@ -154986,61 +156993,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42882] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43524] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4402), 1, + anon_sym_SEMI, + ACTIONS(4404), 1, + anon_sym_else, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4371), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1723), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155051,15 +157059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42969] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43613] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(1494), 15, + ACTIONS(3994), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155075,7 +157083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1492), 23, + ACTIONS(3992), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155099,61 +157107,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43022] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43666] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4406), 1, + anon_sym_RBRACE, + ACTIONS(4408), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4373), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1725), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155164,63 +157173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43109] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43755] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1460), 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(1458), 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, - [43162] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(1518), 15, + ACTIONS(4006), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155236,7 +157197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1516), 23, + ACTIONS(4004), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155260,15 +157221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43215] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43808] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(1522), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155284,7 +157245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1520), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155308,15 +157269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43268] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43861] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(1540), 15, + ACTIONS(3968), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155332,7 +157293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1538), 23, + ACTIONS(3966), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155356,62 +157317,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43321] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [43914] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4375), 1, - anon_sym_LBRACE, - ACTIONS(4381), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - STATE(400), 1, - sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1730), 2, + ACTIONS(4410), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155422,15 +157382,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43410] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44001] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3959), 15, + ACTIONS(4002), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155446,7 +157406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3957), 23, + ACTIONS(4000), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155468,82 +157428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43463] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4007), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [43550] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44054] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(4099), 15, + ACTIONS(4110), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155559,7 +157454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4097), 23, + ACTIONS(4108), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155583,80 +157478,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43603] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44107] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4405), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [43690] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 15, + ACTIONS(4092), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155670,13 +157508,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(1558), 23, + ACTIONS(4090), 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, @@ -155695,62 +157530,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, - [43743] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44168] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(3857), 2, - anon_sym_RPAREN, + ACTIONS(4414), 1, + anon_sym_RBRACE, + ACTIONS(4416), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1736), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155761,60 +157596,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43830] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44257] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4420), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1737), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155825,15 +157662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43915] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44346] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(1526), 15, + ACTIONS(4114), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155849,7 +157686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1524), 23, + ACTIONS(4112), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155873,15 +157710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43968] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44399] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1464), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155897,7 +157734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1462), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155921,15 +157758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44021] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44452] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 15, + ACTIONS(3844), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155945,7 +157782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1470), 23, + ACTIONS(3842), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155969,29 +157806,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44074] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [44505] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - STATE(1741), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3852), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156000,10 +157828,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(3987), 20, + ACTIONS(3850), 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, @@ -156022,44 +157853,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44137] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [44558] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4431), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4422), 1, + anon_sym_RPAREN, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1742), 2, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [44647] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3858), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(3854), 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, @@ -156078,43 +157967,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44206] = 12, - ACTIONS(105), 1, + anon_sym_as, + [44700] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3420), 1, + sym__use_clause, + STATE(3547), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [44775] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1743), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3866), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(3864), 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, @@ -156133,45 +158074,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44273] = 14, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [44828] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1744), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3870), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(3868), 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, @@ -156190,52 +158122,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44344] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [44881] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3952), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1745), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3950), 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, @@ -156248,56 +158164,91 @@ 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, - [44421] = 18, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [44934] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3862), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1746), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3860), 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, + [44987] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3596), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 15, + 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(3594), 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, @@ -156309,32 +158260,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, - [44500] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45040] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1747), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3880), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156344,7 +158296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3876), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156365,60 +158317,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44565] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45099] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4179), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4444), 1, + anon_sym_EQ, + ACTIONS(4450), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4118), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4452), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4177), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156429,60 +158383,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44650] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45186] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + ACTIONS(4454), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4185), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156493,46 +158448,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44735] = 15, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45273] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1750), 2, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4456), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [45360] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(3932), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(3930), 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, @@ -156551,56 +158560,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44808] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [45413] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(1078), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4165), 2, + ACTIONS(4212), 1, anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1751), 2, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156611,17 +158627,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44889] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45502] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3963), 15, + ACTIONS(3976), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156637,7 +158651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3961), 23, + ACTIONS(3974), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156661,15 +158675,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(105), 1, - anon_sym_SLASH_SLASH, + [45555] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3981), 15, + ACTIONS(3980), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156685,7 +158699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3979), 23, + ACTIONS(3978), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156709,80 +158723,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45608] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4039), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [45082] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 15, + ACTIONS(3410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156798,7 +158747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1484), 23, + ACTIONS(3412), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156822,15 +158771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45135] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45661] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(1490), 15, + ACTIONS(3540), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156846,7 +158795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1488), 23, + ACTIONS(3538), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156870,15 +158819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45188] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45714] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1498), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156894,7 +158843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1496), 23, + ACTIONS(3934), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156918,15 +158867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45241] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45767] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4051), 15, + ACTIONS(3528), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156942,7 +158891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4049), 23, + ACTIONS(3526), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156966,15 +158915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45294] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45820] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156990,7 +158939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(3938), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157014,15 +158963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45347] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45873] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4071), 15, + ACTIONS(3960), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157038,7 +158987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4069), 23, + ACTIONS(3958), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157062,35 +159011,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45400] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [45926] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4268), 1, + anon_sym_CARET, + ACTIONS(4270), 1, + anon_sym_AMP, + ACTIONS(4272), 1, + anon_sym_PIPE, + ACTIONS(4276), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4288), 1, + anon_sym_DOT_DOT, + ACTIONS(4460), 1, + anon_sym_AMP_AMP, + ACTIONS(4264), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4278), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4286), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4290), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4458), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 15, - anon_sym_PLUS, + ACTIONS(4266), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4284), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4280), 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, + [46013] = 22, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4444), 1, + anon_sym_EQ, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4004), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4442), 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, + [46100] = 21, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(4430), 1, + anon_sym_CARET, + ACTIONS(4432), 1, + anon_sym_AMP, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, anon_sym_DOT_DOT, - ACTIONS(1554), 23, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 12, 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, + [46185] = 10, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3882), 1, anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 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(4090), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -157109,36 +159258,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, - [45453] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46248] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4432), 1, + anon_sym_AMP, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 15, - anon_sym_PLUS, + ACTIONS(4428), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 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(1466), 23, + ACTIONS(4090), 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, @@ -157157,36 +159314,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, - [45506] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46317] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 15, - anon_sym_PLUS, + ACTIONS(4428), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 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(1476), 23, + ACTIONS(4090), 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, @@ -157205,62 +159369,111 @@ 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, - [45559] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46384] = 14, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 5, anon_sym_PIPE, - ACTIONS(4159), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(4161), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_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, + [46455] = 17, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, + anon_sym_CARET, + ACTIONS(4432), 1, + anon_sym_AMP, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4092), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1764), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4090), 16, + 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, @@ -157271,36 +159484,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45646] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [46532] = 18, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1548), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4092), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1546), 23, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4090), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -157312,27 +159545,32 @@ 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, - [45699] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46611] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(1482), 15, - anon_sym_PLUS, + ACTIONS(4428), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -157341,13 +159579,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(1480), 23, + ACTIONS(4090), 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, @@ -157366,38 +159601,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, - [45752] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46676] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1544), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_EQ, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1542), 23, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1785), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4216), 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, @@ -157408,42 +159665,110 @@ 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, - [45805] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46761] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4222), 1, + anon_sym_EQ, + ACTIONS(4430), 1, + anon_sym_CARET, + ACTIONS(4432), 1, + anon_sym_AMP, + ACTIONS(4434), 1, + anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4448), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(1004), 15, - anon_sym_PLUS, + ACTIONS(4428), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4220), 12, + 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, + [46846] = 15, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1006), 23, + ACTIONS(4090), 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, @@ -157462,63 +159787,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, - [45858] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [46919] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4208), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1769), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4206), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157529,15 +159847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45947] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [47000] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(3972), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157553,7 +159873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1014), 23, + ACTIONS(3970), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157577,15 +159897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46000] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47053] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(1510), 15, + ACTIONS(3848), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157601,7 +159921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1508), 23, + ACTIONS(3846), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157625,15 +159945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46053] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47106] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1016), 15, + ACTIONS(3874), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157649,7 +159969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1018), 23, + ACTIONS(3872), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157673,15 +159993,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46106] = 5, - ACTIONS(105), 1, + [47159] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3924), 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(3922), 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, + [47212] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157697,7 +160065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4053), 23, + ACTIONS(3942), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157721,61 +160089,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46159] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47265] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4444), 1, anon_sym_EQ, - ACTIONS(4007), 2, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4040), 2, anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4409), 2, + anon_sym_LBRACE, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4452), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1774), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157786,15 +160154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46246] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47352] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1042), 15, + ACTIONS(3896), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157810,7 +160178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1044), 23, + ACTIONS(3894), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157834,80 +160202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46299] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47405] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4419), 1, - anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, - anon_sym_EQ, - ACTIONS(3857), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4429), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1776), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4441), 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, - [46386] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1530), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157923,7 +160226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1528), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157947,15 +160250,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46439] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47458] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(3566), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157971,7 +160274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(960), 23, + ACTIONS(3564), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157995,15 +160298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46492] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47511] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 15, + ACTIONS(4124), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158019,7 +160322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1512), 23, + ACTIONS(4122), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158043,15 +160346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46545] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47564] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158067,7 +160370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 23, + ACTIONS(3910), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158091,80 +160394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46598] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47617] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4419), 1, - anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, - anon_sym_EQ, - ACTIONS(4039), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4429), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4441), 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, - [46685] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3916), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158180,7 +160418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(3914), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158204,61 +160442,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46738] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47670] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3920), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, - anon_sym_EQ, - ACTIONS(4019), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4441), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3918), 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, @@ -158269,15 +160483,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46825] = 5, - ACTIONS(105), 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, + [47723] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(1134), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158293,7 +160514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1136), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158317,15 +160538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46878] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47776] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 15, + ACTIONS(3928), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158341,7 +160562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1056), 23, + ACTIONS(3926), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158365,61 +160586,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46931] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47829] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4444), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4450), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4112), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4452), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1786), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158430,61 +160651,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47018] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [47916] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1805), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4010), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4008), 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, - ACTIONS(4447), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1787), 2, + anon_sym_as, + [47969] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4014), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(4012), 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, @@ -158495,62 +160740,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47105] = 23, - ACTIONS(105), 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, + [48022] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4018), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4016), 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, @@ -158561,61 +160788,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47194] = 22, - ACTIONS(105), 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, + [48075] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1808), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4022), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4449), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4020), 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, @@ -158626,15 +160836,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47281] = 5, - ACTIONS(105), 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, + [48128] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 15, + ACTIONS(4026), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158650,7 +160867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3971), 23, + ACTIONS(4024), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158674,121 +160891,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47334] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48181] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(3813), 1, - sym__use_clause, - STATE(1791), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [47409] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4030), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4451), 1, - anon_sym_RPAREN, - ACTIONS(4453), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4028), 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, @@ -158799,62 +160932,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47498] = 23, - ACTIONS(105), 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, + [48234] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(298), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4034), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1793), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4032), 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, @@ -158865,15 +160980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 5, - ACTIONS(105), 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, + [48287] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(3814), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158889,7 +161011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3975), 23, + ACTIONS(3810), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158913,62 +161035,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47640] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48340] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3832), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4455), 1, - anon_sym_LBRACE, - STATE(1480), 1, - sym_match_block, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4393), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3830), 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, @@ -158979,61 +161076,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47729] = 22, - ACTIONS(105), 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, + [48393] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3836), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4007), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4393), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3834), 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, @@ -159044,62 +161124,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47816] = 23, - ACTIONS(105), 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, + [48446] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1328), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3840), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1797), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3838), 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, @@ -159110,15 +161172,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47905] = 5, - ACTIONS(105), 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, + [48499] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4115), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159134,7 +161203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4113), 23, + ACTIONS(3988), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159158,62 +161227,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47958] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48552] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, + ACTIONS(127), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159224,62 +161293,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48047] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48641] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4463), 1, - anon_sym_SEMI, - ACTIONS(4465), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + ACTIONS(4462), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159290,60 +161358,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48136] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48728] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4467), 3, + ACTIONS(4464), 3, anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_SQUOTE, - ACTIONS(4263), 4, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159354,62 +161422,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48221] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48813] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4444), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4466), 1, + anon_sym_LBRACE, + ACTIONS(4468), 1, anon_sym_DOT_DOT, - ACTIONS(4469), 1, - anon_sym_RBRACE, - ACTIONS(4471), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + STATE(427), 1, + sym_match_block, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4470), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159420,15 +161488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48310] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48902] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(1621), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159444,7 +161512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3993), 23, + ACTIONS(1623), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159468,15 +161536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48363] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [48955] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4091), 15, + ACTIONS(1557), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159492,7 +161560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4089), 23, + ACTIONS(1555), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159516,62 +161584,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48416] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49008] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1198), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1553), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1805), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1551), 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, @@ -159582,15 +161625,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48505] = 5, - ACTIONS(105), 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, + [49061] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 15, + ACTIONS(1493), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159606,7 +161656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3879), 23, + ACTIONS(1491), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159630,15 +161680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48558] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49114] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4095), 15, + ACTIONS(1497), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159654,7 +161704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4093), 23, + ACTIONS(1495), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159678,15 +161728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48611] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49167] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159702,7 +161752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3395), 23, + ACTIONS(1499), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159726,81 +161776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48664] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49220] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4473), 1, - anon_sym_SEMI, - ACTIONS(4475), 1, - anon_sym_else, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1809), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [48753] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159816,7 +161800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 23, + ACTIONS(4040), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159840,62 +161824,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48806] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49273] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4118), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1811), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159906,15 +161889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48895] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49360] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 15, + ACTIONS(3984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159930,7 +161913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4023), 23, + ACTIONS(3982), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159954,81 +161937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48948] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49413] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [49037] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(1565), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160044,7 +161961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(1563), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160068,62 +161985,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49090] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49466] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4477), 1, - anon_sym_SEMI, - ACTIONS(4479), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160134,62 +162050,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49179] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49553] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4481), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4202), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160200,15 +162114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49268] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49638] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1817), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(1525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160224,7 +162138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 23, + ACTIONS(1523), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160248,15 +162162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49321] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49691] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(1533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160272,7 +162186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 23, + ACTIONS(1531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160296,193 +162210,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49374] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49744] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4483), 1, - anon_sym_RPAREN, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1569), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [49463] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4485), 1, - anon_sym_SEMI, - ACTIONS(4487), 1, - anon_sym_else, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [49552] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1567), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3905), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4489), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160493,15 +162251,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49639] = 5, - ACTIONS(105), 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, + [49797] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, + ACTIONS(1561), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160517,7 +162282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3891), 23, + ACTIONS(1559), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160541,20 +162306,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49692] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49850] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + ACTIONS(4396), 1, + anon_sym_LBRACK, + ACTIONS(4398), 1, + anon_sym_QMARK, + ACTIONS(4400), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, - anon_sym_PLUS, + ACTIONS(4474), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -160563,13 +162337,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(3837), 23, + ACTIONS(4090), 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, @@ -160588,63 +162359,46 @@ 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, - [49745] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [49913] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4491), 1, - anon_sym_SEMI, - ACTIONS(4493), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4092), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -160655,35 +162409,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49834] = 5, - ACTIONS(105), 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, + [49982] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, + ACTIONS(4396), 1, + anon_sym_LBRACK, + ACTIONS(4398), 1, + anon_sym_QMARK, + ACTIONS(4400), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4003), 15, - anon_sym_PLUS, + ACTIONS(4474), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4092), 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(4001), 23, + ACTIONS(4090), 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, @@ -160702,63 +162470,47 @@ 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, - [49887] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [50049] = 14, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(306), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4092), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 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, @@ -160769,61 +162521,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49976] = 22, - ACTIONS(105), 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, + [50120] = 17, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4092), 2, anon_sym_EQ, - ACTIONS(4457), 1, anon_sym_DOT_DOT, - ACTIONS(3857), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4090), 16, + 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, @@ -160834,60 +162585,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50063] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50197] = 18, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4199), 1, - anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4092), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 12, + ACTIONS(4090), 15, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160898,56 +162646,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50148] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50276] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4472), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4092), 9, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(394), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(392), 14, + anon_sym_DOT_DOT, + ACTIONS(4090), 20, 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, anon_sym_STAR_EQ, @@ -160958,62 +162696,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, - [50229] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [50341] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, + ACTIONS(4218), 1, anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 12, + ACTIONS(4216), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161024,62 +162766,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50314] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [50426] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4222), 1, + anon_sym_EQ, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4495), 1, - anon_sym_LBRACE, - STATE(485), 1, - sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4220), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161090,60 +162830,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50403] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [50511] = 15, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4201), 12, + ACTIONS(4092), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4090), 20, 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, anon_sym_STAR_EQ, @@ -161154,60 +162882,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50488] = 21, - ACTIONS(105), 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, + [50584] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4208), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 12, + ACTIONS(4206), 14, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161218,62 +162948,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50573] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [50665] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(308), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3892), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3890), 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(1834), 2, + anon_sym_as, + [50718] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3904), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 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(3902), 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(4189), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50771] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3888), 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(3886), 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, @@ -161284,62 +163087,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50662] = 23, - ACTIONS(105), 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, + [50824] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4497), 1, - anon_sym_SEMI, - ACTIONS(4499), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4040), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161350,62 +163159,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50751] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [50911] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1852), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1505), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4501), 1, - anon_sym_RBRACE, - ACTIONS(4503), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1503), 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(1836), 2, + anon_sym_as, + [50964] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1517), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(1515), 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, @@ -161416,60 +163248,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50840] = 21, - ACTIONS(105), 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, + [51017] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4255), 1, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4496), 1, + anon_sym_SEMI, + ACTIONS(4498), 1, + anon_sym_else, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4505), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4263), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161480,15 +163321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50925] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51106] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4041), 15, + ACTIONS(1477), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161504,7 +163345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4039), 23, + ACTIONS(1475), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161528,15 +163369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50978] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51159] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3985), 15, + ACTIONS(3900), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161552,7 +163393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3983), 23, + ACTIONS(3898), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161576,15 +163417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51031] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51212] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, + ACTIONS(4046), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161600,7 +163441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3875), 23, + ACTIONS(4044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161624,62 +163465,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51084] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51265] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(310), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1549), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1547), 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, @@ -161690,29 +163506,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51173] = 10, - ACTIONS(105), 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, + [51318] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - STATE(1842), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(1481), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -161721,10 +163535,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(3987), 20, + ACTIONS(1479), 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, @@ -161743,44 +163560,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51236] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51371] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1843), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(1545), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(1543), 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, @@ -161799,43 +163608,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51305] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51424] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4377), 2, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1844), 2, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1861), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [51511] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(1489), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(1487), 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, @@ -161854,62 +163721,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51372] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51564] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1863), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1513), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4507), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1511), 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(1845), 2, + anon_sym_as, + [51617] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1533), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(1531), 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, @@ -161920,15 +163811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51461] = 5, - ACTIONS(105), 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, + [51670] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 15, + ACTIONS(1541), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161944,7 +163842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1606), 23, + ACTIONS(1539), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161968,52 +163866,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51514] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51723] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, + STATE(1866), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1042), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1847), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 16, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1044), 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, @@ -162026,57 +163907,68 @@ 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, - [51591] = 18, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51776] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(3989), 2, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1848), 2, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4500), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162087,32 +163979,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, - [51670] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [51863] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1849), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(1046), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -162121,10 +164001,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(3987), 20, + ACTIONS(1048), 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, @@ -162143,60 +164026,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51735] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [51916] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4179), 1, - anon_sym_EQ, - ACTIONS(4381), 1, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1509), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1850), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4177), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1507), 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, @@ -162207,60 +164068,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51820] = 21, - ACTIONS(105), 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, + [51969] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4381), 1, + STATE(1870), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1050), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4185), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1052), 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, @@ -162271,62 +164116,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51905] = 23, - ACTIONS(105), 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, + [52022] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(314), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4504), 1, + anon_sym_EQ, + ACTIONS(4118), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162337,128 +164188,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51994] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52109] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4509), 1, - anon_sym_SEMI, - ACTIONS(4511), 1, - anon_sym_else, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1054), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [52083] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4401), 1, - anon_sym_DOT_DOT, - ACTIONS(4513), 1, - anon_sym_LBRACE, - STATE(1739), 1, - sym_match_block, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1854), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4393), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1056), 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, @@ -162469,62 +164229,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52172] = 23, - ACTIONS(105), 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, + [52162] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(316), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4504), 1, + anon_sym_EQ, + ACTIONS(4004), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162535,46 +164301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52261] = 15, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52249] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1856), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(1485), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 20, + ACTIONS(1483), 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, @@ -162593,77 +164348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52334] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4399), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1857), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4147), 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, - [52415] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52302] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1058), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162679,7 +164373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(1060), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -162703,15 +164397,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52468] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52355] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(1521), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162727,7 +164421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(1519), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -162751,62 +164445,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52521] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52408] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4504), 1, + anon_sym_EQ, + ACTIONS(4040), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162817,15 +164510,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52610] = 5, - ACTIONS(105), 1, + [52495] = 22, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4396), 1, + anon_sym_LBRACK, + ACTIONS(4398), 1, + anon_sym_QMARK, + ACTIONS(4400), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4476), 1, + anon_sym_CARET, + ACTIONS(4478), 1, + anon_sym_AMP, + ACTIONS(4480), 1, + anon_sym_PIPE, + ACTIONS(4482), 1, + anon_sym_AMP_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4492), 1, + anon_sym_DOT_DOT, + ACTIONS(4504), 1, + anon_sym_EQ, + ACTIONS(4112), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4486), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4494), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1878), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4502), 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, + [52582] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, + ACTIONS(4396), 1, + anon_sym_LBRACK, + ACTIONS(4398), 1, + anon_sym_QMARK, + ACTIONS(4400), 1, + anon_sym_DOT, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(3951), 15, + ACTIONS(3998), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162839,13 +164603,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(3949), 23, + ACTIONS(3996), 21, 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, @@ -162865,62 +164626,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52663] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52641] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4056), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4515), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT_DOT, + ACTIONS(4054), 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, - STATE(1862), 2, + anon_sym_as, + [52700] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1241), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(1243), 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, @@ -162931,15 +164718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52752] = 5, - ACTIONS(105), 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, + [52753] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1863), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -162955,7 +164749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3953), 23, + ACTIONS(1255), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -162979,62 +164773,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52805] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52806] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4080), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4517), 1, - anon_sym_RPAREN, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1864), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4078), 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, @@ -163045,62 +164814,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52894] = 23, - ACTIONS(105), 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, + [52859] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(322), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4506), 1, + anon_sym_RPAREN, + ACTIONS(4508), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163111,62 +164887,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52983] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [52948] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, + ACTIONS(303), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163177,62 +164953,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53072] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53037] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1188), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4430), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4432), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4434), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4436), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4438), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4444), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4468), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4510), 1, + anon_sym_LBRACE, + STATE(1532), 1, + sym_match_block, + ACTIONS(4426), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4470), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4428), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4446), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163243,62 +165019,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53161] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53126] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(409), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(407), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163309,62 +165079,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53250] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53207] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4519), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163375,110 +165147,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53339] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53296] = 23, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4119), 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(4117), 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, - [53392] = 23, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(330), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163489,103 +165213,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53481] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53385] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(4226), 1, + anon_sym_EQ, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [53570] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1873), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3969), 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(3965), 23, + ACTIONS(4224), 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, @@ -163596,22 +165277,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, - [53623] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53470] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1874), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163627,7 +165301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3997), 23, + ACTIONS(3826), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163651,62 +165325,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53676] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53523] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(334), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(357), 1, + anon_sym_EQ, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4482), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4492), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4494), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(351), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163717,62 +165389,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53765] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53608] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4512), 1, anon_sym_SEMI, - ACTIONS(4521), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4514), 1, + anon_sym_else, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163783,62 +165455,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53854] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53697] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + ACTIONS(4516), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163849,62 +165520,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53943] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53784] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(340), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + ACTIONS(4518), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163915,62 +165585,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54032] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53871] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(307), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163981,114 +165651,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54121] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [53960] = 23, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - STATE(1880), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3989), 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(3987), 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, - [54182] = 23, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(1088), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4523), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164099,62 +165717,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54271] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54049] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4525), 1, + ACTIONS(4520), 1, anon_sym_SEMI, - ACTIONS(4527), 1, + ACTIONS(4522), 1, anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164165,161 +165783,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54360] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54138] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4457), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4039), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4524), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 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, - [54447] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(3731), 1, - sym__use_clause, - STATE(1884), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [54522] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1885), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4017), 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(4015), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164330,158 +165849,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, - [54575] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54227] = 23, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1886), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4029), 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(4027), 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, - [54628] = 23, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4529), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4526), 1, + anon_sym_RPAREN, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [54717] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4045), 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(4043), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164492,44 +165915,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, - [54770] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3897), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + [54316] = 23, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4528), 1, + anon_sym_SEMI, + ACTIONS(4530), 1, + anon_sym_else, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3895), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1901), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164540,22 +165981,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, - [54823] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54405] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(4059), 15, + ACTIONS(4136), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164571,7 +166005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4057), 23, + ACTIONS(4134), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164595,96 +166029,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54876] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54458] = 23, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(3696), 1, - sym__use_clause, - STATE(1891), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [54951] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1892), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4021), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4532), 1, + anon_sym_SEMI, + ACTIONS(4534), 1, + anon_sym_else, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4019), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164695,44 +166095,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, - [55004] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54547] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1893), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3515), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3513), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164743,22 +166161,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, - [55057] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54636] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1894), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3948), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164774,7 +166185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(3946), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164798,37 +166209,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55110] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54689] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1895), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3911), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(409), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3909), 23, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(407), 14, 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, @@ -164839,44 +166269,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, - [55163] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54770] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1896), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4226), 1, + anon_sym_EQ, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4224), 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, @@ -164887,44 +166335,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, - [55216] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54855] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1897), 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, + ACTIONS(357), 1, + anon_sym_EQ, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3745), 23, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(351), 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, @@ -164935,44 +166399,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, - [55269] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [54940] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1898), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4083), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4444), 1, + anon_sym_EQ, + ACTIONS(4468), 1, + anon_sym_DOT_DOT, + ACTIONS(4536), 1, + anon_sym_LBRACE, + STATE(488), 1, + sym_match_block, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4081), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4470), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164983,44 +166465,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, - [55322] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55029] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1899), 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, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1910), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, @@ -165031,44 +166529,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, - [55375] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55114] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1900), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4087), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4190), 1, + anon_sym_EQ, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4450), 1, + anon_sym_DOT_DOT, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4085), 23, + ACTIONS(4452), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1911), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4188), 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, @@ -165079,44 +166593,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, - [55428] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55199] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1901), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1504), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1912), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165127,44 +166659,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, - [55481] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55288] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3873), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3871), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165175,22 +166725,74 @@ 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, - [55534] = 5, - ACTIONS(105), 1, + [55377] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3547), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(3790), 1, + sym__use_clause, + STATE(1914), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [55452] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(4038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165206,7 +166808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 23, + ACTIONS(4036), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165230,40 +166832,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55587] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55505] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(347), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(3884), 1, anon_sym_DOT, - STATE(1904), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3903), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3899), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1916), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165274,69 +166898,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, - [55646] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55594] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(292), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4538), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1905), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165347,37 +166964,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55735] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55683] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1906), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4103), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4101), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1918), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165388,47 +167030,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, - [55788] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55772] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(3884), 1, anon_sym_DOT, - STATE(1907), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3923), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4430), 1, anon_sym_CARET, + ACTIONS(4432), 1, anon_sym_AMP, + ACTIONS(4434), 1, anon_sym_PIPE, + ACTIONS(4436), 1, + anon_sym_AMP_AMP, + ACTIONS(4438), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4444), 1, + anon_sym_EQ, + ACTIONS(4468), 1, + anon_sym_DOT_DOT, + ACTIONS(4540), 1, + anon_sym_LBRACE, + STATE(1835), 1, + sym_match_block, + ACTIONS(4426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4440), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4448), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3921), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4470), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4428), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4446), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4442), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165439,44 +167096,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, - [55847] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55861] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3947), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3945), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165487,44 +167162,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, - [55900] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [55950] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1909), 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, + ACTIONS(1209), 1, + anon_sym_RPAREN, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3829), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165535,63 +167228,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, - [55953] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56039] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(394), 2, + ACTIONS(4212), 1, anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - STATE(1910), 2, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4542), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(392), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165602,42 +167293,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, - [56034] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56126] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4200), 1, + anon_sym_EQ, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4400), 1, anon_sym_DOT, - STATE(1911), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4037), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4476), 1, anon_sym_CARET, + ACTIONS(4478), 1, anon_sym_AMP, + ACTIONS(4480), 1, anon_sym_PIPE, + ACTIONS(4482), 1, + anon_sym_AMP_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4492), 1, + anon_sym_DOT_DOT, + ACTIONS(4472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(4035), 21, + ACTIONS(4494), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4198), 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, @@ -165648,67 +167357,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, - [56093] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56211] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165719,96 +167423,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56178] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56300] = 21, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3552), 1, - sym__use_clause, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(1913), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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_gen, - anon_sym_union, - anon_sym_raw, - [56253] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1914), 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, + ACTIONS(4190), 1, + anon_sym_EQ, + ACTIONS(4396), 1, + anon_sym_LBRACK, + ACTIONS(4398), 1, + anon_sym_QMARK, + ACTIONS(4400), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4476), 1, anon_sym_CARET, + ACTIONS(4478), 1, anon_sym_AMP, + ACTIONS(4480), 1, anon_sym_PIPE, + ACTIONS(4482), 1, + anon_sym_AMP_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4492), 1, + anon_sym_DOT_DOT, + ACTIONS(4472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(4494), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4474), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4488), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4188), 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, @@ -165819,68 +167487,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, - [56306] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56385] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4457), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4544), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165891,61 +167553,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56393] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56474] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1916), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165956,60 +167619,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56480] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56563] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + ACTIONS(4546), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4201), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166020,60 +167684,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56565] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56650] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1918), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166084,85 +167750,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56650] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56739] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1919), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4107), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4105), 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(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56703] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, - anon_sym_PLUS, + ACTIONS(4166), 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(3883), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166173,92 +167816,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, - [56756] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56828] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4111), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4548), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4109), 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(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [56809] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, - anon_sym_PLUS, + ACTIONS(4166), 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(3917), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166269,44 +167882,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, - [56862] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [56917] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3927), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3925), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166317,68 +167948,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, - [56915] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57006] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4533), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1924), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166389,37 +168014,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57002] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57095] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3811), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4550), 1, + anon_sym_RPAREN, + ACTIONS(4552), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3809), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1934), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166430,44 +168080,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, - [57055] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57184] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3935), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3933), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1935), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166478,44 +168146,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, - [57108] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57273] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3815), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4554), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3813), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166526,44 +168212,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, - [57161] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57362] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4009), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(341), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4007), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166574,44 +168278,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, - [57214] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57451] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1929), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3819), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3817), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1938), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166622,44 +168344,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, - [57267] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57540] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(345), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1504), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1939), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166670,44 +168410,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, - [57320] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57629] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1931), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4013), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4556), 1, + anon_sym_RBRACE, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4011), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1940), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166718,22 +168476,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, - [57373] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57718] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(4060), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166749,7 +168500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 23, + ACTIONS(4058), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166773,15 +168524,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57426] = 5, - ACTIONS(105), 1, + [57771] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3547), 1, + sym_bracketed_type, + STATE(3639), 1, + sym__use_clause, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(1942), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [57846] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1933), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(4064), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166797,7 +168607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 23, + ACTIONS(4062), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166821,15 +168631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57479] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [57899] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1934), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 15, + ACTIONS(4084), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166845,7 +168655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4031), 23, + ACTIONS(4082), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166869,61 +168679,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57532] = 22, - ACTIONS(105), 1, + [57952] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3547), 1, + sym_bracketed_type, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(3800), 1, + sym__use_clause, + STATE(1945), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [58027] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4306), 1, + sym_identifier, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4312), 1, + anon_sym_STAR, + ACTIONS(4318), 1, + anon_sym_COLON_COLON, + ACTIONS(4322), 1, + sym_metavariable, + STATE(2550), 1, + sym_scoped_identifier, + STATE(3547), 1, + sym_bracketed_type, + STATE(3625), 1, + sym__use_clause, + STATE(3722), 1, + sym_generic_type_with_turbofish, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4320), 3, + sym_self, + sym_super, + sym_crate, + STATE(2997), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4314), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + 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_gen, + anon_sym_union, + anon_sym_raw, + [58102] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4268), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4270), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4272), 1, anon_sym_PIPE, - ACTIONS(4255), 1, + ACTIONS(4276), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4288), 1, anon_sym_DOT_DOT, - ACTIONS(4537), 1, - anon_sym_AMP_AMP, - ACTIONS(4243), 2, + ACTIONS(4264), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4278), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4286), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4290), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4535), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1935), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4266), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4558), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4284), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4280), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166934,21 +168861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57619] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58187] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, - anon_sym_DOT, - STATE(1936), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4079), 14, + ACTIONS(4068), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166962,10 +168883,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(4077), 21, + ACTIONS(4066), 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, @@ -166985,15 +168909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57678] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58240] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1937), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(4072), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167009,7 +168933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 23, + ACTIONS(4070), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167033,15 +168957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57731] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58293] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1938), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4063), 15, + ACTIONS(4076), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167057,7 +168981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4061), 23, + ACTIONS(4074), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167081,37 +169005,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57784] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58346] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1939), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4067), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4560), 1, + anon_sym_SEMI, + ACTIONS(4562), 1, + anon_sym_else, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4065), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167122,22 +169071,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, - [57837] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58435] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1940), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4075), 15, + ACTIONS(4088), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167153,7 +169095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4073), 23, + ACTIONS(4086), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167177,37 +169119,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57890] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58488] = 23, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1941), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3939), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, anon_sym_CARET, + ACTIONS(4170), 1, anon_sym_AMP, + ACTIONS(4172), 1, anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3937), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1953), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167218,22 +169185,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, - [57943] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58577] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1942), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3943), 15, + ACTIONS(4106), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167249,7 +169209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3941), 23, + ACTIONS(4104), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167273,62 +169233,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57996] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58630] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4539), 1, - anon_sym_RPAREN, - ACTIONS(4541), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4564), 1, + anon_sym_RBRACK, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167339,44 +169297,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58085] = 16, + [58716] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(3952), 1, + anon_sym_where, + ACTIONS(4566), 1, sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4576), 1, sym_metavariable, - STATE(2606), 1, + STATE(3194), 1, + sym_scoped_type_identifier, + STATE(3486), 1, + sym_generic_type, + STATE(3521), 1, sym_scoped_identifier, - STATE(3291), 1, - sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(1944), 2, + STATE(3678), 1, + sym_bracketed_type, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(3950), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4572), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167394,99 +169356,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [58160] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58792] = 21, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1945), 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), 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, - [58213] = 14, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4377), 2, + ACTIONS(4480), 1, + anon_sym_PIPE, + ACTIONS(4484), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4504), 1, + anon_sym_EQ, + ACTIONS(4578), 1, + anon_sym_DOT_DOT, + ACTIONS(4464), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1946), 2, + ACTIONS(4490), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4580), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4488), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167497,66 +169419,59 @@ 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, - [58284] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [58876] = 21, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(4400), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4412), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4504), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4578), 1, anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4558), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4580), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167567,48 +169482,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58370] = 17, + [58960] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4545), 1, - sym_identifier, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - STATE(3180), 1, + ACTIONS(4582), 1, + sym_identifier, + STATE(3117), 1, sym_scoped_type_identifier, - STATE(3469), 1, + STATE(3357), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1948), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -167626,60 +169541,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58446] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59036] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4557), 1, + ACTIONS(4584), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1949), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167690,60 +169605,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58532] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59122] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4559), 1, + ACTIONS(4586), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167754,60 +169669,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58618] = 22, - ACTIONS(105), 1, + [59208] = 22, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4588), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1962), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [59294] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4561), 1, + ACTIONS(4590), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167818,60 +169797,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58704] = 22, - ACTIONS(105), 1, + [59380] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3952), 1, + anon_sym_where, + ACTIONS(4570), 1, + anon_sym_COLON_COLON, + ACTIONS(4576), 1, + sym_metavariable, + ACTIONS(4592), 1, + sym_identifier, + STATE(2892), 1, + sym_scoped_type_identifier, + STATE(3469), 1, + sym_generic_type, + STATE(3521), 1, + sym_scoped_identifier, + STATE(3651), 1, + sym_generic_type_with_turbofish, + STATE(3678), 1, + sym_bracketed_type, + STATE(1964), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3950), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4574), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4572), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(4568), 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, + [59456] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4563), 1, + ACTIONS(4594), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167882,60 +169920,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58790] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59542] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4565), 1, + ACTIONS(4596), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1953), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167946,60 +169984,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58876] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59628] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4567), 1, + ACTIONS(4598), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168010,60 +170048,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58962] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59714] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4569), 1, + ACTIONS(4600), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168074,60 +170112,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59048] = 22, - ACTIONS(105), 1, + [59800] = 22, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3878), 1, + anon_sym_LBRACK, + ACTIONS(3882), 1, + anon_sym_QMARK, + ACTIONS(3884), 1, + anon_sym_DOT, + ACTIONS(4094), 1, + anon_sym_as, + ACTIONS(4168), 1, + anon_sym_CARET, + ACTIONS(4170), 1, + anon_sym_AMP, + ACTIONS(4172), 1, + anon_sym_PIPE, + ACTIONS(4174), 1, + anon_sym_AMP_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4212), 1, + anon_sym_EQ, + ACTIONS(4294), 1, + anon_sym_DOT_DOT, + ACTIONS(4602), 1, + anon_sym_RBRACK, + ACTIONS(4164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4178), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4182), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4296), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1969), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4180), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4210), 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, + [59886] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4571), 1, + ACTIONS(4604), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168138,60 +170240,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59134] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [59972] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4573), 1, + ACTIONS(4606), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1957), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168202,60 +170304,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59220] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60058] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4575), 1, + ACTIONS(4608), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168266,60 +170368,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59306] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60144] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4577), 1, + ACTIONS(4610), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1959), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168330,60 +170432,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59392] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60230] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4579), 1, + ACTIONS(4612), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1960), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168394,60 +170496,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59478] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60316] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4581), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4614), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1961), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168458,60 +170560,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59564] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60402] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4583), 1, + ACTIONS(4616), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1962), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168522,60 +170624,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59650] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60488] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4618), 1, + anon_sym_RBRACK, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168586,59 +170688,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59736] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60574] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4396), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4398), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4400), 1, + anon_sym_DOT, + ACTIONS(4412), 1, + anon_sym_as, + ACTIONS(4458), 1, + anon_sym_EQ_GT, + ACTIONS(4476), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4478), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4480), 1, anon_sym_PIPE, - ACTIONS(4423), 1, + ACTIONS(4484), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4504), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4578), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4620), 1, + anon_sym_AMP_AMP, + ACTIONS(4472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4486), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4490), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4505), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4587), 2, + ACTIONS(4580), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1964), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4488), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4502), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168649,60 +170752,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59820] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60660] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4589), 1, + ACTIONS(4418), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1965), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168713,60 +170816,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59906] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60746] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4622), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1966), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168777,60 +170880,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59992] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60832] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4593), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4624), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1967), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168841,60 +170944,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60078] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [60918] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4595), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4424), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1968), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168905,60 +171008,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60164] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61004] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4597), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4626), 1, + anon_sym_RBRACK, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1969), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168969,48 +171072,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60250] = 17, + [61090] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4599), 1, + ACTIONS(4628), 1, sym_identifier, - STATE(3148), 1, + STATE(3110), 1, sym_scoped_type_identifier, - STATE(3410), 1, + STATE(3354), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1970), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169028,188 +171131,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60326] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61166] = 22, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4601), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1971), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [60412] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1972), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [60498] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 1, + ACTIONS(4630), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1973), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169220,60 +171195,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60584] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61252] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4605), 1, + ACTIONS(4632), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1974), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169284,183 +171259,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60670] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61338] = 22, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_COLON_COLON, - ACTIONS(4555), 1, - sym_metavariable, - ACTIONS(4607), 1, - sym_identifier, - STATE(3076), 1, - sym_scoped_type_identifier, - STATE(3284), 1, - sym_generic_type, - STATE(3514), 1, - sym_scoped_identifier, - STATE(3646), 1, - sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_bracketed_type, - STATE(1975), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4053), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4553), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4551), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(4547), 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, - [60746] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4609), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1976), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [60832] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4419), 1, - anon_sym_PIPE, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, - anon_sym_EQ, - ACTIONS(4535), 1, - anon_sym_EQ_GT, - ACTIONS(4585), 1, - anon_sym_DOT_DOT, - ACTIONS(4611), 1, - anon_sym_AMP_AMP, - ACTIONS(4409), 2, + ACTIONS(4634), 1, + anon_sym_RBRACK, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4587), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1977), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169471,119 +171323,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60918] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61424] = 22, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_COLON_COLON, - ACTIONS(4555), 1, - sym_metavariable, - ACTIONS(4613), 1, - sym_identifier, - STATE(3167), 1, - sym_scoped_type_identifier, - STATE(3438), 1, - sym_generic_type, - STATE(3514), 1, - sym_scoped_identifier, - STATE(3646), 1, - sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_bracketed_type, - STATE(1978), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4053), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4553), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4551), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(4547), 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, - [60994] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4615), 1, + ACTIONS(4636), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1979), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169594,123 +171387,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61080] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61510] = 22, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4419), 1, - anon_sym_PIPE, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, - anon_sym_EQ, - ACTIONS(4585), 1, - anon_sym_DOT_DOT, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4429), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4467), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4587), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4441), 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, - [61164] = 22, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4617), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4638), 1, + anon_sym_COMMA, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1981), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169721,60 +171451,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61250] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61596] = 22, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3878), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3882), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3884), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(4094), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4168), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4170), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4172), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4174), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4176), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4212), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4294), 1, anon_sym_DOT_DOT, - ACTIONS(4619), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4640), 1, + anon_sym_SEMI, + ACTIONS(4164), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4178), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4182), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4296), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4166), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4180), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4210), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169785,48 +171515,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61336] = 17, + [61682] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4621), 1, + ACTIONS(4642), 1, sym_identifier, - STATE(3191), 1, + STATE(3183), 1, sym_scoped_type_identifier, - STATE(3486), 1, + STATE(3467), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1983), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169844,48 +171574,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61412] = 17, + [61758] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4623), 1, + ACTIONS(4644), 1, sym_identifier, - STATE(3173), 1, + STATE(3188), 1, sym_scoped_type_identifier, - STATE(3456), 1, + STATE(3476), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1984), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169903,48 +171633,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61488] = 17, + [61834] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4625), 1, + ACTIONS(4646), 1, sym_identifier, - STATE(3178), 1, + STATE(3190), 1, sym_scoped_type_identifier, - STATE(3467), 1, + STATE(3479), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1985), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169962,48 +171692,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61564] = 17, + [61910] = 17, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(3952), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4570), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4576), 1, sym_metavariable, - ACTIONS(4627), 1, + ACTIONS(4648), 1, sym_identifier, - STATE(3185), 1, + STATE(3050), 1, sym_scoped_type_identifier, - STATE(3475), 1, + STATE(3233), 1, sym_generic_type, - STATE(3514), 1, + STATE(3521), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3651), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3678), 1, sym_bracketed_type, - STATE(1986), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(3950), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4574), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4572), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4568), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170021,19 +171751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61640] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [61986] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 3, + ACTIONS(4652), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4629), 30, + ACTIONS(4650), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170064,19 +171794,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61688] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62034] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4635), 3, + ACTIONS(4656), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4633), 30, + ACTIONS(4654), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170107,19 +171837,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61736] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62082] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4639), 3, + ACTIONS(4660), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4637), 30, + ACTIONS(4658), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170150,35 +171880,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [61784] = 13, + [62130] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3740), 1, - sym_bracketed_type, - STATE(3798), 1, + STATE(3640), 1, sym_attribute, - STATE(3804), 1, + STATE(3742), 1, + sym_bracketed_type, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1990), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170200,35 +171930,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [61847] = 13, + [62193] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3592), 1, - sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1991), 2, + STATE(3810), 1, + sym_attribute, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170250,35 +171980,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [61910] = 13, + [62256] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3670), 1, + STATE(3552), 1, sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1992), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170300,35 +172030,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [61973] = 13, + [62319] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3740), 1, - sym_bracketed_type, - STATE(3753), 1, + STATE(3531), 1, sym_attribute, - STATE(3804), 1, + STATE(3742), 1, + sym_bracketed_type, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1993), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170350,35 +172080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62036] = 13, + [62382] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3645), 1, + STATE(3608), 1, sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1994), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170400,35 +172130,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62099] = 13, + [62445] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3536), 1, - sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3751), 1, + sym_attribute, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1995), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170450,35 +172180,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62162] = 13, + [62508] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3540), 1, + STATE(3600), 1, sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1996), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170500,35 +172230,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62225] = 13, + [62571] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3603), 1, + STATE(3507), 1, sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1997), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170550,35 +172280,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62288] = 13, + [62634] = 13, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2954), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4662), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4668), 1, sym_metavariable, - STATE(2380), 1, + STATE(2403), 1, sym_scoped_identifier, - STATE(3593), 1, - sym_attribute, - STATE(3740), 1, + STATE(3742), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3750), 1, + sym_attribute, + STATE(3805), 1, sym_generic_type_with_turbofish, - STATE(1998), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4666), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4664), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170600,33 +172330,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62351] = 12, + [62697] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4649), 1, + ACTIONS(4670), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4674), 1, anon_sym_COLON_COLON, - ACTIONS(4657), 1, + ACTIONS(4678), 1, sym_metavariable, - STATE(3493), 1, + STATE(3408), 1, sym_scoped_identifier, - STATE(3502), 1, + STATE(3547), 1, sym_bracketed_type, - STATE(3606), 1, + STATE(3722), 1, sym_generic_type_with_turbofish, - STATE(1999), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4655), 3, + ACTIONS(4676), 3, sym_self, sym_super, sym_crate, - ACTIONS(4651), 21, + ACTIONS(4672), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170648,33 +172378,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62411] = 12, + [62757] = 12, ACTIONS(29), 1, anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, + ACTIONS(4674), 1, anon_sym_COLON_COLON, - ACTIONS(4659), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4665), 1, + ACTIONS(4686), 1, sym_metavariable, - STATE(3297), 1, + STATE(3316), 1, sym_scoped_identifier, - STATE(3502), 1, + STATE(3547), 1, sym_bracketed_type, - STATE(3606), 1, + STATE(3722), 1, sym_generic_type_with_turbofish, - STATE(2000), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4663), 3, + ACTIONS(4684), 3, sym_self, sym_super, sym_crate, - ACTIONS(4661), 21, + ACTIONS(4682), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170696,17 +172426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [62471] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62817] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(958), 1, + ACTIONS(1050), 1, anon_sym_DOT_DOT, - STATE(2001), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(960), 20, + ACTIONS(1052), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170727,17 +172457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [62507] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62853] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1016), 1, + ACTIONS(1058), 1, anon_sym_DOT_DOT, - STATE(2002), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(1018), 20, + ACTIONS(1060), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170758,59 +172488,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [62543] = 14, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62889] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(3532), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(3536), 2, anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AT, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4683), 1, anon_sym_COLON_COLON, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(2029), 1, - sym_type_arguments, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2003), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 9, + ACTIONS(3530), 17, anon_sym_SEMI, + anon_sym_LPAREN, 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_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62596] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LT2, + [62926] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3545), 1, + ACTIONS(3574), 1, anon_sym_COLON, - ACTIONS(3549), 2, + ACTIONS(3578), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2004), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 17, + ACTIONS(3572), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170828,51 +172550,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62633] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [62963] = 14, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, anon_sym_COLON, - ACTIONS(3583), 2, + ACTIONS(4696), 1, anon_sym_BANG, + ACTIONS(4698), 1, + anon_sym_AT, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(4704), 1, anon_sym_COLON_COLON, - STATE(2005), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + STATE(2041), 1, + sym_type_arguments, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 17, + ACTIONS(4688), 9, anon_sym_SEMI, - anon_sym_LPAREN, 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_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [62670] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63016] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3553), 1, + ACTIONS(3558), 1, anon_sym_COLON, - ACTIONS(3557), 2, + ACTIONS(3562), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2006), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 17, + ACTIONS(3556), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170890,20 +172620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62707] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63053] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3565), 1, + ACTIONS(3544), 1, anon_sym_COLON, - ACTIONS(3569), 2, + ACTIONS(3548), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2007), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 17, + ACTIONS(3542), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170921,79 +172651,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [62744] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63090] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2008), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3563), 3, - anon_sym_LBRACE, - anon_sym_for, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(3569), 14, - anon_sym_SEMI, + ACTIONS(4708), 1, 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, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [62780] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3581), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3583), 14, + ACTIONS(3462), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, 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_where, anon_sym_else, - anon_sym_in, - [62816] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63134] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3771), 1, - anon_sym_COLON, - STATE(2010), 2, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4710), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 18, + ACTIONS(3475), 13, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -171003,24 +172716,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [62850] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63178] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3713), 1, + ACTIONS(3742), 1, anon_sym_COLON, - STATE(2011), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 18, + ACTIONS(3740), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171039,17 +172748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62884] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63212] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3761), 1, + ACTIONS(3802), 1, anon_sym_COLON, - STATE(2012), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 18, + ACTIONS(3800), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171068,17 +172777,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62918] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63246] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3705), 1, + ACTIONS(3760), 1, anon_sym_COLON, - STATE(2013), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 18, + ACTIONS(3758), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171097,56 +172806,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62952] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63280] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2014), 2, + ACTIONS(3546), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 13, + ACTIONS(3542), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3548), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, 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_SQUOTE, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [62996] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63316] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, + ACTIONS(3560), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2015), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 3, + ACTIONS(3556), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3557), 14, + ACTIONS(3562), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171161,28 +172866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63032] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63352] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2016), 2, + ACTIONS(3724), 1, + anon_sym_COLON, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 13, + ACTIONS(3722), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -171192,30 +172888,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [63076] = 10, - ACTIONS(105), 1, + anon_sym_in, + [63386] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2024), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3572), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3578), 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, + [63422] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2017), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3470), 13, + ACTIONS(3450), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171229,22 +172959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63120] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63466] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, + ACTIONS(3534), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2018), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 3, + ACTIONS(3530), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3549), 14, + ACTIONS(3536), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171259,18 +172989,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63156] = 5, - ACTIONS(105), 1, + [63502] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1299), 1, + anon_sym_DASH, + ACTIONS(1349), 1, + aux_sym_string_literal_token1, + ACTIONS(1359), 1, + sym__raw_string_literal_start, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(4712), 1, + sym_identifier, + STATE(3780), 1, + sym_label, + ACTIONS(1351), 2, + anon_sym_true, + anon_sym_false, + STATE(2027), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1665), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(2957), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3505), 3, + sym_block, + sym__literal, + sym_negative_literal, + [63553] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 16, + ACTIONS(3548), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171287,18 +173054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63189] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63586] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, + ACTIONS(3576), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2020), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 16, + ACTIONS(3578), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171315,18 +173082,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63222] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63619] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, + ACTIONS(3534), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2021), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 16, + ACTIONS(3536), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171343,18 +173110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63255] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63652] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, + ACTIONS(3560), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2022), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 16, + ACTIONS(3562), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171371,62 +173138,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63288] = 14, - ACTIONS(37), 1, - anon_sym_SQUOTE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63685] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1072), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(1132), 1, - sym__raw_string_literal_start, - ACTIONS(1622), 1, - anon_sym_LBRACE, - ACTIONS(4691), 1, - sym_identifier, - STATE(3774), 1, - sym_label, - ACTIONS(1124), 2, - anon_sym_true, - anon_sym_false, - STATE(2023), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1648), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - STATE(2884), 3, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - STATE(3215), 3, - sym_block, - sym__literal, - sym_negative_literal, - [63339] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, + ACTIONS(4714), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2024), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 13, + ACTIONS(3491), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171440,15 +173170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63380] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63726] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 18, + ACTIONS(3542), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171467,17 +173197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [63411] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63757] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3778), 1, anon_sym_COLON, - STATE(2026), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 16, + ACTIONS(3776), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171494,155 +173224,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63443] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63789] = 12, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2027), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3531), 13, - 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_where, - anon_sym_else, - [63481] = 12, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4718), 1, anon_sym_COLON, - ACTIONS(4699), 1, + ACTIONS(4720), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4722), 1, anon_sym_DOT_DOT, - ACTIONS(4705), 1, + ACTIONS(4726), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2044), 1, sym_type_arguments, - ACTIONS(4703), 2, + ACTIONS(4724), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2028), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, + ACTIONS(4716), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3621), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63527] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [63835] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3793), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4718), 1, anon_sym_COLON, - STATE(2029), 2, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 16, + ACTIONS(4716), 9, 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [63559] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [63879] = 19, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4709), 1, + ACTIONS(4732), 1, anon_sym_const, - ACTIONS(4711), 1, + ACTIONS(4734), 1, anon_sym_enum, - ACTIONS(4713), 1, + ACTIONS(4736), 1, anon_sym_fn, - ACTIONS(4715), 1, + ACTIONS(4738), 1, anon_sym_mod, - ACTIONS(4717), 1, + ACTIONS(4740), 1, anon_sym_static, - ACTIONS(4719), 1, + ACTIONS(4742), 1, anon_sym_struct, - ACTIONS(4721), 1, + ACTIONS(4744), 1, anon_sym_trait, - ACTIONS(4723), 1, + ACTIONS(4746), 1, anon_sym_type, - ACTIONS(4725), 1, + ACTIONS(4748), 1, anon_sym_union, - ACTIONS(4727), 1, + ACTIONS(4750), 1, anon_sym_unsafe, - ACTIONS(4729), 1, + ACTIONS(4752), 1, anon_sym_use, - ACTIONS(4731), 1, + ACTIONS(4754), 1, anon_sym_extern, - STATE(2336), 1, + STATE(2316), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2450), 1, sym_extern_modifier, - STATE(3573), 1, + STATE(3539), 1, sym_function_modifiers, - ACTIONS(4707), 2, + ACTIONS(4730), 2, anon_sym_async, anon_sym_default, - STATE(2030), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - [63619] = 8, - ACTIONS(105), 1, + [63939] = 19, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4756), 1, + anon_sym_const, + ACTIONS(4758), 1, + anon_sym_enum, + ACTIONS(4760), 1, + anon_sym_fn, + ACTIONS(4762), 1, + anon_sym_mod, + ACTIONS(4764), 1, + anon_sym_static, + ACTIONS(4766), 1, + anon_sym_struct, + ACTIONS(4768), 1, + anon_sym_trait, + ACTIONS(4770), 1, + anon_sym_type, + ACTIONS(4772), 1, + anon_sym_union, + ACTIONS(4774), 1, + anon_sym_unsafe, + ACTIONS(4776), 1, + anon_sym_use, + ACTIONS(4778), 1, + anon_sym_extern, + STATE(2316), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, + STATE(3802), 1, + sym_function_modifiers, + ACTIONS(4730), 2, + anon_sym_async, + anon_sym_default, + STATE(2038), 2, + sym_line_comment, + sym_block_comment, + [63999] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, - STATE(2031), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 13, + ACTIONS(3564), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171656,23 +173403,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63657] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64037] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, - STATE(2032), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 13, + ACTIONS(3594), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171686,17 +173433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63695] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64075] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3774), 1, anon_sym_COLON, - STATE(2033), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3787), 16, + ACTIONS(3772), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171713,97 +173460,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63727] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64107] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2034), 2, + STATE(2110), 1, + sym_parameters, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 9, + ACTIONS(3538), 13, 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_where, anon_sym_else, - anon_sym_in, - [63771] = 19, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64145] = 8, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4735), 1, - anon_sym_const, - ACTIONS(4737), 1, - anon_sym_enum, - ACTIONS(4739), 1, - anon_sym_fn, - ACTIONS(4741), 1, - anon_sym_mod, - ACTIONS(4743), 1, - anon_sym_static, - ACTIONS(4745), 1, - anon_sym_struct, - ACTIONS(4747), 1, - anon_sym_trait, - ACTIONS(4749), 1, - anon_sym_type, - ACTIONS(4751), 1, - anon_sym_union, - ACTIONS(4753), 1, - anon_sym_unsafe, - ACTIONS(4755), 1, - anon_sym_use, - ACTIONS(4757), 1, - anon_sym_extern, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(3796), 1, - sym_function_modifiers, - ACTIONS(4707), 2, - anon_sym_async, - anon_sym_default, - STATE(2035), 2, - sym_line_comment, - sym_block_comment, - [63831] = 8, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, - STATE(2036), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 13, + ACTIONS(3526), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171817,56 +173520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63869] = 16, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64183] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AT, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4759), 1, - anon_sym_LPAREN, - ACTIONS(4761), 1, - anon_sym_RBRACK, - ACTIONS(4764), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - ACTIONS(3445), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - [63922] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, + ACTIONS(3770), 1, anon_sym_COLON, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - STATE(2038), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3768), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171877,70 +173541,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [63955] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64215] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_LPAREN, - STATE(2039), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4135), 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, - [63986] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_COLON, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(4780), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(1136), 16, + ACTIONS(4688), 9, 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_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, anon_sym_in, - [64015] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64256] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 16, + ACTIONS(1483), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171952,24 +173598,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, - [64044] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64285] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3533), 1, + ACTIONS(3596), 1, anon_sym_COLON, - ACTIONS(4770), 1, + ACTIONS(4782), 1, anon_sym_COLON_COLON, - STATE(2042), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3531), 14, + ACTIONS(3594), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171984,78 +173630,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64077] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64318] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3445), 1, - anon_sym_PLUS, - ACTIONS(4667), 1, - anon_sym_PIPE, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4720), 1, anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AT, - ACTIONS(4679), 1, + ACTIONS(4722), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4772), 1, - anon_sym_LPAREN, - ACTIONS(4774), 1, + ACTIONS(4784), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2044), 1, sym_type_arguments, - STATE(2099), 1, - sym_parameters, - ACTIONS(4681), 2, + ACTIONS(4724), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4761), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2043), 2, - sym_line_comment, - sym_block_comment, - [64132] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 16, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4716), 3, 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, - [64161] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64361] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(1056), 16, + ACTIONS(3744), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172067,26 +173682,29 @@ 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, - [64190] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64390] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + ACTIONS(3596), 1, + anon_sym_COLON, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(1528), 16, + ACTIONS(3594), 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, @@ -172096,72 +173714,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [64219] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64423] = 16, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4679), 1, + ACTIONS(4698), 1, + anon_sym_AT, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(4776), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4788), 1, + anon_sym_LPAREN, + ACTIONS(4790), 1, + anon_sym_RBRACK, + ACTIONS(4793), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + ACTIONS(3462), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4688), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2047), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 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, - [64260] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64476] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + ACTIONS(4795), 1, + anon_sym_LPAREN, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 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, - [64289] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4142), 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, + [64507] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 16, + ACTIONS(1519), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172178,56 +173802,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [64318] = 16, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64536] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_PIPE, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AT, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4778), 1, - anon_sym_LPAREN, - ACTIONS(4780), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2050), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [64371] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, + ACTIONS(3596), 1, anon_sym_COLON, - ACTIONS(4770), 1, + ACTIONS(4797), 1, anon_sym_COLON_COLON, - STATE(2051), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3594), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172242,45 +173829,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64404] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64569] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + ACTIONS(3566), 1, + anon_sym_COLON, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 16, + ACTIONS(3564), 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, - [64433] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64602] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(183), 1, + STATE(234), 1, sym_fragment_specifier, - ACTIONS(4784), 2, + ACTIONS(4801), 2, anon_sym_expr, anon_sym_pat, - STATE(2053), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(4782), 13, + ACTIONS(4799), 13, anon_sym_block, anon_sym_expr_2021, anon_sym_ident, @@ -172294,15 +173883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [64466] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64635] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3721), 16, + ACTIONS(3804), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172319,56 +173908,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64495] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64664] = 17, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, + ACTIONS(3462), 1, + anon_sym_PLUS, + ACTIONS(4688), 1, + anon_sym_PIPE, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, + anon_sym_COLON, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4698), 1, + anon_sym_AT, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(4786), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4805), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2041), 1, sym_type_arguments, - ACTIONS(4703), 2, + STATE(2109), 1, + sym_parameters, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2055), 2, + ACTIONS(4790), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2058), 2, + sym_line_comment, + sym_block_comment, + [64719] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3528), 1, + anon_sym_COLON, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, + ACTIONS(3526), 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, + [64752] = 16, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4688), 1, anon_sym_PIPE, + ACTIONS(4692), 1, + anon_sym_LBRACE, + ACTIONS(4694), 1, + anon_sym_COLON, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4698), 1, + anon_sym_AT, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4807), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64538] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64805] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_COLON, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - STATE(2056), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 14, + ACTIONS(1243), 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, @@ -172378,75 +174034,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64571] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64834] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2057), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3698), 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, - [64604] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64863] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3515), 1, - anon_sym_COLON, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - STATE(2058), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 14, + ACTIONS(3822), 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, - [64637] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64892] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + ACTIONS(3540), 1, + anon_sym_COLON, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3949), 15, + ACTIONS(3538), 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, @@ -172456,121 +174112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64665] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2060), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4131), 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, - [64693] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64925] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4137), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [64723] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - STATE(2062), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4137), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [64753] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64797] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 15, + ACTIONS(1255), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172586,39 +174136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64825] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [64954] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 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, - [64853] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4117), 15, + ACTIONS(3726), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172630,19 +174157,20 @@ 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, - [64881] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [64983] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 15, + ACTIONS(3902), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172658,15 +174186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64909] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65011] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4109), 15, + ACTIONS(4008), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172682,15 +174210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64937] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65039] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(3974), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172706,15 +174234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64965] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65067] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(4057), 15, + ACTIONS(3978), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172730,15 +174258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64993] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65095] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 15, + ACTIONS(3846), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172754,15 +174282,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65021] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65123] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 15, + ACTIONS(4160), 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, + [65151] = 4, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3872), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172778,15 +174330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65049] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65179] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4093), 15, + ACTIONS(3890), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172802,15 +174354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65077] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65207] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3531), 15, + ACTIONS(3894), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172826,15 +174378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65105] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65235] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4043), 15, + ACTIONS(3942), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172850,15 +174402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65133] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65263] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3898), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172874,15 +174426,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65161] = 4, - ACTIONS(105), 1, + [65291] = 12, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4718), 1, + anon_sym_COLON, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4811), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65335] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4049), 15, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172898,15 +174482,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65189] = 4, - ACTIONS(105), 1, + [65363] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + STATE(2080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4144), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [65393] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3953), 15, + ACTIONS(3564), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172922,15 +174531,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65217] = 4, - ACTIONS(105), 1, + [65421] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4140), 1, + anon_sym_COLON_COLON, + STATE(2082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4144), 14, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + [65451] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3910), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172946,15 +174580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65245] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65479] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3914), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172970,15 +174604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65273] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65507] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3961), 15, + ACTIONS(4044), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172994,15 +174628,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65301] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65535] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4061), 15, + ACTIONS(3918), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173018,15 +174652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65329] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65563] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4065), 15, + ACTIONS(3926), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173042,15 +174676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65357] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65591] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 15, + ACTIONS(4020), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173066,15 +174700,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65385] = 4, - ACTIONS(105), 1, + [65619] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2089), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4149), 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, + [65647] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4073), 15, + ACTIONS(4024), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173090,15 +174748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65413] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65675] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 15, + ACTIONS(3922), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173114,15 +174772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65441] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65703] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4105), 15, + ACTIONS(3830), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173138,15 +174796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65469] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65731] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 15, + ACTIONS(4028), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173162,15 +174820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65497] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65759] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3526), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173186,15 +174844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65525] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65787] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4101), 15, + ACTIONS(4032), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173210,15 +174868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65553] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65815] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3997), 15, + ACTIONS(3538), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173234,15 +174892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65581] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65843] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4097), 15, + ACTIONS(3834), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173258,15 +174916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65609] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65871] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4089), 15, + ACTIONS(3838), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173282,15 +174940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65637] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65899] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 15, + ACTIONS(3982), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173306,15 +174964,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65665] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65927] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4123), 15, + ACTIONS(4153), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -173330,15 +174988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [65693] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65955] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3594), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173354,164 +175012,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65721] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [65983] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2097), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 9, + ACTIONS(3950), 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, + anon_sym_GT, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [65756] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66011] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4794), 1, - anon_sym_DASH_GT, - STATE(2098), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 13, + ACTIONS(4016), 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, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [65785] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66039] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 1, - anon_sym_DASH_GT, - STATE(2099), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 13, + ACTIONS(4012), 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, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_where, anon_sym_else, - [65814] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66067] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4798), 1, - anon_sym_DASH_GT, - STATE(2100), 2, + ACTIONS(4718), 1, + anon_sym_COLON, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4728), 1, + anon_sym_COLON_COLON, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 13, + ACTIONS(4716), 9, 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_where, anon_sym_else, - [65843] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66102] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4800), 1, - anon_sym_DASH_GT, - STATE(2101), 2, + ACTIONS(1054), 1, + anon_sym_DOT_DOT, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 13, + ACTIONS(1056), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + 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_SQUOTE, - anon_sym_where, anon_sym_else, - [65872] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66131] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4802), 1, - anon_sym_DASH_GT, - STATE(2102), 2, + ACTIONS(1046), 1, + anon_sym_DOT_DOT, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 13, + ACTIONS(1048), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + 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_SQUOTE, - anon_sym_where, anon_sym_else, - [65901] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_in, + [66160] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4804), 1, + ACTIONS(4815), 1, anon_sym_DASH_GT, - STATE(2103), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 13, + ACTIONS(3780), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173525,41 +175183,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65930] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66189] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1012), 1, - anon_sym_DOT_DOT, - STATE(2104), 2, + ACTIONS(4817), 1, + anon_sym_DASH_GT, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(1014), 13, + ACTIONS(3786), 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_where, anon_sym_else, - anon_sym_in, - [65959] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66218] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4806), 1, + ACTIONS(4819), 1, anon_sym_DASH_GT, - STATE(2105), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 13, + ACTIONS(3792), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173573,122 +175231,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65988] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66247] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1042), 1, - anon_sym_DOT_DOT, - STATE(2106), 2, + ACTIONS(4821), 1, + anon_sym_DASH_GT, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1044), 13, + ACTIONS(3702), 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_where, anon_sym_else, - anon_sym_in, - [66017] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66276] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4810), 1, - anon_sym_DOT_DOT, - STATE(2107), 2, + ACTIONS(4823), 1, + anon_sym_DASH_GT, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 13, + ACTIONS(3708), 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_where, anon_sym_else, - anon_sym_in, - [66046] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66305] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_DOT_DOT, - ACTIONS(4812), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2108), 2, + ACTIONS(4825), 1, + anon_sym_DASH_GT, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 4, + ACTIONS(3714), 13, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3557), 6, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - [66078] = 11, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [66334] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(4815), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(408), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2109), 2, + ACTIONS(4827), 1, + anon_sym_DASH_GT, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66118] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3750), 13, + 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_where, + anon_sym_else, + [66363] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4831), 1, anon_sym_DOT_DOT, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2110), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 10, + ACTIONS(4829), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173696,594 +175345,747 @@ static const uint16_t ts_small_parse_table[] = { 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, - [66148] = 14, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66392] = 14, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4817), 1, + ACTIONS(4833), 1, anon_sym_COLON, - ACTIONS(4819), 1, + ACTIONS(4835), 1, anon_sym_EQ, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2494), 1, sym_parameters, - STATE(3160), 1, + STATE(3098), 1, sym_trait_bounds, - ACTIONS(3445), 2, + ACTIONS(3462), 2, anon_sym_PLUS, anon_sym_as, - ACTIONS(4821), 2, + ACTIONS(4837), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2111), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - [66194] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66438] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOT_DOT, - ACTIONS(4823), 2, + ACTIONS(4839), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2112), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 4, + ACTIONS(3530), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3549), 6, + ACTIONS(3536), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [66226] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66470] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, + ACTIONS(3534), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2113), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 3, + ACTIONS(3530), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4812), 3, + ACTIONS(4839), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3557), 5, + ACTIONS(3536), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66258] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66502] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, - anon_sym_LPAREN, - ACTIONS(3547), 2, - anon_sym_COLON, + ACTIONS(4844), 1, anon_sym_DOT_DOT, - STATE(2114), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 5, + ACTIONS(4842), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3549), 5, - anon_sym_BANG, + 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_COLON_COLON, - [66290] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66530] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2115), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 3, + ACTIONS(3542), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4823), 3, + ACTIONS(4846), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3549), 5, + ACTIONS(3548), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66322] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66562] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(3560), 1, anon_sym_DOT_DOT, - STATE(2116), 2, + ACTIONS(4849), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 12, + ACTIONS(3556), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3562), 6, + anon_sym_BANG, 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, - [66350] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_COLON_COLON, + [66594] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, - ACTIONS(4830), 2, + ACTIONS(4849), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2117), 2, + ACTIONS(3560), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 4, - anon_sym_SEMI, + ACTIONS(3556), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3583), 6, + ACTIONS(3562), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [66382] = 12, + [66626] = 13, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4852), 1, + anon_sym_LPAREN, + ACTIONS(4854), 1, + anon_sym_LBRACE, + ACTIONS(4856), 1, + anon_sym_BANG, + ACTIONS(4858), 1, + anon_sym_AT, + ACTIONS(4860), 1, + anon_sym_DOT_DOT, + ACTIONS(4864), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, + ACTIONS(4862), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2123), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4688), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66670] = 11, ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(4721), 1, - anon_sym_trait, - ACTIONS(4833), 1, - anon_sym_impl, - ACTIONS(4835), 1, - anon_sym_extern, - STATE(415), 1, + ACTIONS(4866), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, + STATE(424), 1, sym_block, - STATE(3082), 1, - sym_extern_modifier, - STATE(3621), 1, + STATE(3679), 1, sym_label, - STATE(2118), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 5, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, - [66424] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_extern, + [66710] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, + ACTIONS(4846), 1, anon_sym_LPAREN, - ACTIONS(3567), 2, + ACTIONS(3546), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2119), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 5, + ACTIONS(3542), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3569), 5, + ACTIONS(3548), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66456] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66742] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, - anon_sym_COLON, + ACTIONS(3546), 1, anon_sym_DOT_DOT, - STATE(2120), 2, + ACTIONS(4846), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 3, + ACTIONS(3542), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4838), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3569), 5, + ACTIONS(3548), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [66488] = 7, - ACTIONS(105), 1, + [66774] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 1, + anon_sym_DOT_DOT, + ACTIONS(4868), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3572), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3578), 6, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [66806] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(3555), 2, + ACTIONS(3576), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2121), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 5, + ACTIONS(3572), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3557), 5, + ACTIONS(3578), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66520] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66838] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, + ACTIONS(3560), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2122), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 3, + ACTIONS(3556), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4830), 3, + ACTIONS(4849), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3583), 5, + ACTIONS(3562), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66552] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [66870] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - anon_sym_LPAREN, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_AT, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(4853), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66596] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, + ACTIONS(4839), 1, anon_sym_LPAREN, - ACTIONS(3581), 2, + ACTIONS(3534), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2124), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 5, + ACTIONS(3530), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3583), 5, + ACTIONS(3536), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66628] = 7, - ACTIONS(105), 1, + [66902] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(4744), 1, + anon_sym_trait, + ACTIONS(4871), 1, + anon_sym_impl, + ACTIONS(4873), 1, + anon_sym_extern, + STATE(409), 1, + sym_block, + STATE(3165), 1, + sym_extern_modifier, + STATE(3679), 1, + sym_label, + STATE(2131), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + [66944] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(4838), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2125), 2, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 4, + ACTIONS(4688), 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, + [66974] = 7, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3576), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2133), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3572), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3569), 6, + ACTIONS(4868), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3578), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [66660] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67006] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4878), 1, anon_sym_GT, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2126), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66703] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67049] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - ACTIONS(4863), 1, + ACTIONS(4884), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2127), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66746] = 13, - ACTIONS(105), 1, + [67092] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4888), 1, + anon_sym_COLON, + ACTIONS(3986), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2136), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4886), 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, + [67121] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - ACTIONS(4865), 1, + ACTIONS(4890), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2128), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66789] = 13, - ACTIONS(105), 1, + [67164] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4888), 1, + anon_sym_COLON, + ACTIONS(3856), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2138), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4886), 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, + [67193] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - ACTIONS(4867), 1, + ACTIONS(4892), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2129), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66832] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67236] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - ACTIONS(4869), 1, + ACTIONS(4894), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2130), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66875] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67279] = 13, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4882), 1, sym_metavariable, - ACTIONS(4871), 1, + ACTIONS(4896), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2177), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2131), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3439), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [66918] = 6, - ACTIONS(105), 1, + [67322] = 11, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4710), 1, + anon_sym_COLON_COLON, + ACTIONS(4898), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3462), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67360] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4902), 1, anon_sym_COLON, - ACTIONS(4005), 2, - anon_sym_LPAREN, + ACTIONS(4904), 1, anon_sym_COLON_COLON, - STATE(2132), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 9, + ACTIONS(4900), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174293,20 +176095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66947] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67388] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4908), 1, anon_sym_COLON, - ACTIONS(3967), 2, - anon_sym_LPAREN, + ACTIONS(4910), 1, anon_sym_COLON_COLON, - STATE(2133), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 9, + ACTIONS(4906), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174316,233 +176117,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66976] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67416] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4879), 1, - anon_sym_RBRACE, - ACTIONS(4881), 1, + ACTIONS(3560), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - sym_integer_literal, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2134), 2, + ACTIONS(3556), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - STATE(3189), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67016] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3562), 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, + [67444] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(3576), 1, + anon_sym_DOT_DOT, + ACTIONS(3572), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4687), 1, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3578), 8, anon_sym_LPAREN, - ACTIONS(4689), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2135), 2, + anon_sym_if, + [67472] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3546), 1, + anon_sym_DOT_DOT, + ACTIONS(3542), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67054] = 4, - ACTIONS(105), 1, + ACTIONS(3548), 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, + [67500] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + anon_sym_DOT_DOT, + ACTIONS(3530), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2148), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3536), 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, + [67528] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + ACTIONS(4910), 1, + anon_sym_COLON_COLON, + ACTIONS(4914), 1, + anon_sym_COLON, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(1454), 11, + ACTIONS(4912), 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, - [67078] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67556] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - ACTIONS(4889), 1, - anon_sym_EQ, - STATE(2457), 1, - sym_parameters, - STATE(2497), 1, - sym_type_arguments, - STATE(2137), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 3, - anon_sym_PLUS, + ACTIONS(1465), 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, - [67118] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [67580] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4891), 1, + ACTIONS(4916), 1, sym_metavariable, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2139), 1, + STATE(2162), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2868), 1, sym_lifetime, - STATE(2138), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - STATE(3146), 3, + STATE(3067), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67158] = 12, - ACTIONS(105), 1, + [67620] = 12, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_identifier, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4924), 1, + anon_sym_COMMA, + ACTIONS(4926), 1, + sym_integer_literal, + STATE(1122), 1, + sym_attribute_item, + STATE(2610), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2152), 2, + sym_line_comment, + sym_block_comment, + STATE(3157), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67660] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(4928), 1, + sym_identifier, + STATE(413), 1, + sym_block, + STATE(3679), 1, + sym_label, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4930), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67694] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4914), 1, + anon_sym_COLON, + STATE(2154), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4912), 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, + [67722] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_SQUOTE, - ACTIONS(4855), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4893), 1, - sym_metavariable, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, - sym_attribute_item, - STATE(2801), 1, - sym_lifetime, - STATE(2139), 2, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4710), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, + STATE(2109), 1, + sym_parameters, + STATE(2155), 2, sym_line_comment, sym_block_comment, - STATE(2905), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67198] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3462), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67760] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4918), 1, sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4895), 1, - sym_metavariable, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4926), 1, + sym_integer_literal, + ACTIONS(4934), 1, + anon_sym_RBRACE, + ACTIONS(4936), 1, + anon_sym_COMMA, + STATE(1122), 1, sym_attribute_item, - STATE(2801), 1, - sym_lifetime, - STATE(2140), 2, + STATE(2610), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2156), 2, sym_line_comment, sym_block_comment, - STATE(3164), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67238] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3150), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67800] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, + ACTIONS(3464), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2494), 1, sym_parameters, - STATE(2141), 2, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 4, + ACTIONS(3462), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [67276] = 6, - ACTIONS(105), 1, + [67838] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1349), 1, + aux_sym_string_literal_token1, + ACTIONS(4940), 1, + sym_crate, + STATE(2310), 1, + sym_string_literal, + STATE(2158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4938), 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, + [67868] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(4901), 1, + ACTIONS(4813), 1, anon_sym_COLON_COLON, - STATE(2142), 2, + ACTIONS(4908), 1, + anon_sym_COLON, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(4906), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174552,41 +176477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67304] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67896] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, - ACTIONS(3577), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2143), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3583), 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, - [67332] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, + ACTIONS(4914), 1, anon_sym_COLON, - ACTIONS(4907), 1, + ACTIONS(4942), 1, anon_sym_COLON_COLON, - STATE(2144), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 9, + ACTIONS(4912), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174596,113 +176499,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67360] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67924] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, - ACTIONS(4911), 1, - anon_sym_COLON, - STATE(2145), 2, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(1457), 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, - [67388] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67948] = 12, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3543), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 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, - [67416] = 12, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4913), 1, + ACTIONS(4944), 1, sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2140), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(2521), 1, + STATE(1122), 1, + sym_attribute_item, + STATE(2868), 1, sym_lifetime, - STATE(2147), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - STATE(2962), 3, + STATE(3135), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67456] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [67988] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4911), 1, - anon_sym_COLON, - STATE(2148), 2, + STATE(2163), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(1433), 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, - [67484] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68012] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, + ACTIONS(4908), 1, anon_sym_COLON, - ACTIONS(4915), 1, + ACTIONS(4942), 1, anon_sym_COLON_COLON, - STATE(2149), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(4906), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174712,331 +176589,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67512] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68040] = 12, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_DOT_DOT, - ACTIONS(3551), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2150), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 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, - [67540] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_DOT_DOT, - ACTIONS(3563), 2, - anon_sym_LBRACE, + ACTIONS(3464), 1, + anon_sym_COLON, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, anon_sym_LT2, - STATE(2151), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 8, + ACTIONS(4708), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - anon_sym_if, - [67568] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2152), 2, + ACTIONS(4946), 1, + anon_sym_EQ, + STATE(2421), 1, + sym_type_arguments, + STATE(2494), 1, + sym_parameters, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1438), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3462), 3, + anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67592] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68080] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3472), 1, - anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + ACTIONS(4948), 1, + anon_sym_for, + STATE(2041), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2109), 1, sym_parameters, - STATE(2153), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3470), 4, + ACTIONS(3462), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67630] = 6, - ACTIONS(105), 1, + anon_sym_where, + [68118] = 12, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(3092), 1, + anon_sym_SQUOTE, + ACTIONS(4876), 1, + sym_identifier, + ACTIONS(4880), 1, + anon_sym_const, + ACTIONS(4916), 1, + sym_metavariable, + STATE(1122), 1, + sym_attribute_item, + STATE(2162), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2605), 1, + sym_lifetime, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + STATE(3067), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68158] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4899), 1, - anon_sym_COLON, - STATE(2154), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(1461), 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, - [67658] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68182] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4917), 1, + ACTIONS(4950), 1, anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2155), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3462), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67696] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68220] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(3477), 1, + anon_sym_COLON, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4919), 1, - anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2494), 1, sym_parameters, - STATE(2156), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3475), 4, anon_sym_PLUS, - anon_sym_where, - [67734] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2157), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1442), 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, - [67758] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_as, + [68258] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4921), 1, + ACTIONS(4952), 1, sym_metavariable, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2801), 1, + STATE(2172), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2868), 1, sym_lifetime, - STATE(2158), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - STATE(3350), 3, + STATE(3128), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67798] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4705), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4695), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [67836] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68298] = 12, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2160), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1446), 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, - [67860] = 12, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4876), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4880), 1, anon_sym_const, - ACTIONS(4913), 1, + ACTIONS(4954), 1, sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2140), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(1122), 1, + sym_attribute_item, + STATE(2868), 1, sym_lifetime, - STATE(2161), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - STATE(2962), 3, + STATE(2910), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67900] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68338] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, + ACTIONS(3454), 1, anon_sym_COLON, - ACTIONS(4915), 1, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - STATE(2162), 2, + STATE(2041), 1, + sym_type_arguments, + STATE(2494), 1, + sym_parameters, + STATE(2173), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [68376] = 4, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(1471), 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, - [67928] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68400] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4904), 1, anon_sym_COLON_COLON, - ACTIONS(4925), 1, + ACTIONS(4958), 1, anon_sym_COLON, - STATE(2163), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 9, + ACTIONS(4956), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175046,64 +176871,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67956] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68428] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4929), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4718), 1, anon_sym_COLON, - STATE(2164), 2, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4726), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 9, - anon_sym_SEMI, + ACTIONS(4716), 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, - [67984] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68466] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(4933), 1, - sym_crate, - STATE(2288), 1, - sym_string_literal, - STATE(2165), 2, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(3092), 1, + anon_sym_SQUOTE, + ACTIONS(4876), 1, + sym_identifier, + ACTIONS(4880), 1, + anon_sym_const, + ACTIONS(4960), 1, + sym_metavariable, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(2868), 1, + sym_lifetime, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 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, - [68014] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3219), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68506] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, + ACTIONS(4910), 1, anon_sym_COLON_COLON, - ACTIONS(4937), 1, + ACTIONS(4964), 1, anon_sym_COLON, - STATE(2166), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 9, + ACTIONS(4962), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175113,21 +176948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68042] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68534] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(4939), 1, + ACTIONS(4966), 1, sym_crate, - STATE(2288), 1, + STATE(2310), 1, sym_string_literal, - STATE(2167), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, + ACTIONS(4938), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -175136,177 +176971,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68072] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4937), 1, - anon_sym_COLON, - STATE(2168), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4935), 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, - [68100] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68564] = 11, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2457), 1, - sym_parameters, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [68138] = 11, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4941), 1, + ACTIONS(4968), 1, anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2170), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3462), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68176] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68602] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4943), 1, + ACTIONS(4970), 1, anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2171), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3462), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68214] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68640] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4945), 1, + ACTIONS(4972), 1, anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2172), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3462), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68252] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68678] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_SQUOTE, - ACTIONS(4855), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4861), 1, - sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2158), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, - sym_lifetime, - STATE(2173), 2, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(4964), 1, + anon_sym_COLON, + STATE(2183), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [68292] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 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, + [68706] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4904), 1, anon_sym_COLON_COLON, - ACTIONS(4937), 1, + ACTIONS(4976), 1, anon_sym_COLON, - STATE(2174), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 9, + ACTIONS(4974), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175316,95 +177096,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68320] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68734] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4696), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4710), 1, anon_sym_COLON_COLON, - ACTIONS(4947), 1, + ACTIONS(4978), 1, anon_sym_for, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2109), 1, sym_parameters, - STATE(2175), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3462), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68358] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, + [68772] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4942), 1, + anon_sym_COLON_COLON, + ACTIONS(4964), 1, + anon_sym_COLON, + STATE(2186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4962), 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, + [68800] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(3092), 1, anon_sym_SQUOTE, - ACTIONS(4949), 1, + ACTIONS(4876), 1, sym_identifier, - STATE(411), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2176), 2, + ACTIONS(4880), 1, + anon_sym_const, + ACTIONS(4882), 1, + sym_metavariable, + STATE(1122), 1, + sym_attribute_item, + STATE(2177), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2868), 1, + sym_lifetime, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68392] = 12, - ACTIONS(105), 1, + STATE(3439), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68840] = 13, + ACTIONS(71), 1, + anon_sym_pub, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4982), 1, + anon_sym_RBRACE, + ACTIONS(4984), 1, + anon_sym_COMMA, + ACTIONS(4986), 1, + sym_crate, + STATE(1122), 1, + sym_attribute_item, + STATE(2327), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2907), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + [68881] = 13, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4980), 1, sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(4953), 1, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(4988), 1, anon_sym_RBRACE, - ACTIONS(4955), 1, + ACTIONS(4990), 1, anon_sym_COMMA, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2601), 1, + STATE(2301), 1, aux_sym_enum_variant_list_repeat1, - STATE(2177), 2, + STATE(3164), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, + STATE(2189), 2, sym_line_comment, sym_block_comment, - STATE(3163), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68432] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68922] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(1450), 11, + ACTIONS(4992), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175412,84 +177245,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68456] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68945] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4196), 1, anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4374), 1, anon_sym_COLON_COLON, - ACTIONS(4957), 1, - anon_sym_for, - STATE(2029), 1, + ACTIONS(4994), 1, + anon_sym_BANG, + STATE(1670), 1, sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2179), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68494] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2180), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 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, - [68517] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68976] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2181), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4961), 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, - [68540] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 10, + ACTIONS(4996), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175500,41 +177290,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68563] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [68999] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2183), 2, - sym_line_comment, - sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68600] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4998), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175545,15 +177309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68623] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69022] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, + ACTIONS(4912), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175564,66 +177328,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68646] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69045] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(4969), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2186), 2, - sym_line_comment, - sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68683] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4971), 1, + ACTIONS(5000), 1, anon_sym_BANG, - ACTIONS(4973), 1, + ACTIONS(5002), 1, anon_sym_DOT_DOT, - ACTIONS(4977), 1, + ACTIONS(5006), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2044), 1, sym_type_arguments, - ACTIONS(4975), 2, + ACTIONS(5004), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2187), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, + ACTIONS(4716), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [68718] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69080] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2188), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 10, + ACTIONS(5008), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175634,15 +177372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68741] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69103] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2189), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 10, + ACTIONS(5010), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175653,15 +177391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68764] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69126] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2190), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 10, + ACTIONS(4906), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175672,15 +177410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68787] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69149] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2191), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 10, + ACTIONS(5012), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175691,15 +177429,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68810] = 4, - ACTIONS(105), 1, + [69172] = 8, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(1639), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(2242), 1, + sym_block, + STATE(3780), 1, + sym_label, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69203] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 10, + ACTIONS(5014), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175710,15 +177471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68833] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69226] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2193), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, + ACTIONS(5016), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175729,15 +177490,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68856] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69249] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2194), 2, + STATE(2203), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 10, + ACTIONS(5018), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175748,85 +177509,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68879] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, - STATE(2195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68910] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69272] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, - STATE(2196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68941] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4991), 1, + ACTIONS(5020), 1, anon_sym_LBRACE, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, - STATE(2197), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 5, + ACTIONS(3594), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [68974] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69305] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2198), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4993), 10, + ACTIONS(5022), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175837,88 +177552,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68997] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69328] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - STATE(2199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69028] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4995), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2200), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, + ACTIONS(5024), 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, - [69063] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [69351] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, + ACTIONS(3493), 1, anon_sym_COLON, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, + ACTIONS(4714), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2041), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2494), 1, sym_parameters, - STATE(2201), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 4, + ACTIONS(3491), 4, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [69098] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69386] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2202), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4997), 10, + ACTIONS(5026), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175929,15 +177615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69121] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69409] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2203), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 10, + ACTIONS(5028), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175948,15 +177634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69144] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69432] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(5001), 10, + ACTIONS(5030), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175967,15 +177653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69167] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69455] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 10, + ACTIONS(4688), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175986,34 +177672,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69190] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69478] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_identifier, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4926), 1, + sym_integer_literal, + ACTIONS(5032), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2610), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 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, - [69213] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3257), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69515] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 10, + ACTIONS(5034), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176024,41 +177717,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69236] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69538] = 13, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(5009), 1, + ACTIONS(5038), 1, anon_sym_RBRACE, - STATE(1386), 1, + ACTIONS(5040), 1, + anon_sym_COMMA, + STATE(1122), 1, sym_attribute_item, - STATE(2601), 1, + STATE(2329), 1, aux_sym_enum_variant_list_repeat1, - STATE(2208), 2, + STATE(2915), 1, + sym_field_declaration, + STATE(3534), 1, + sym_visibility_modifier, + STATE(2214), 2, sym_line_comment, sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69273] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69579] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 10, + ACTIONS(5042), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176069,15 +177764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69296] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69602] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2210), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 10, + ACTIONS(5044), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176088,40 +177783,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69319] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69625] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(3460), 1, anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4786), 1, + ACTIONS(3764), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + ACTIONS(4720), 1, + anon_sym_BANG, + STATE(1422), 1, sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2211), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [69354] = 4, - ACTIONS(105), 1, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69656] = 8, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4720), 1, + anon_sym_BANG, + STATE(1670), 1, + sym_type_arguments, + STATE(2218), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69687] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2212), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 10, + ACTIONS(5046), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176132,43 +177848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69377] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69710] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5019), 1, - anon_sym_RBRACE, - ACTIONS(5021), 1, - anon_sym_COMMA, - ACTIONS(5023), 1, - sym_crate, - STATE(1386), 1, - sym_attribute_item, - STATE(2289), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3094), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2213), 2, - sym_line_comment, - sym_block_comment, - [69418] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2214), 2, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 10, + ACTIONS(5048), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176179,15 +177867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69441] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69733] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2215), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 10, + ACTIONS(5050), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176198,38 +177886,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69464] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69756] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(5029), 1, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_COLON, + ACTIONS(4696), 1, anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, - STATE(2216), 2, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5052), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69495] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [69791] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2217), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(5031), 10, + ACTIONS(5054), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176240,15 +177930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69518] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69814] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2218), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 10, + ACTIONS(5056), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176259,57 +177949,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69541] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69837] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(3460), 1, anon_sym_LT2, - ACTIONS(4363), 1, + ACTIONS(3764), 1, anon_sym_COLON_COLON, - ACTIONS(5033), 1, + ACTIONS(5058), 1, anon_sym_BANG, - STATE(1717), 1, + STATE(1422), 1, sym_type_arguments, - STATE(2219), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69572] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69868] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2220), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4716), 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, - [69595] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69903] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2221), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 10, + ACTIONS(5060), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176320,15 +178016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69618] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69926] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2222), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 10, + ACTIONS(5062), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176339,66 +178035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69641] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5041), 1, - anon_sym_RBRACE, - ACTIONS(5043), 1, - anon_sym_COMMA, - STATE(1386), 1, - sym_attribute_item, - STATE(2329), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3125), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, - STATE(2223), 2, - sym_line_comment, - sym_block_comment, - [69682] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69949] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1622), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(2218), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2224), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69713] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2225), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 10, + ACTIONS(5064), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176409,15 +178054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69736] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69972] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2226), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 10, + ACTIONS(5066), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176428,15 +178073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69759] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [69995] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2227), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 10, + ACTIONS(5068), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176447,15 +178092,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69782] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70018] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2228), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 10, + ACTIONS(5070), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176466,62 +178111,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69805] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70041] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, + ACTIONS(4918), 1, sym_identifier, - ACTIONS(5051), 1, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4926), 1, + sym_integer_literal, + ACTIONS(5072), 1, anon_sym_RBRACE, - ACTIONS(5053), 1, - anon_sym_COMMA, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2328), 1, + STATE(2610), 1, aux_sym_enum_variant_list_repeat1, - STATE(2898), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, - STATE(2229), 2, - sym_line_comment, - sym_block_comment, - [69846] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2230), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(5055), 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, - [69869] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3257), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70078] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2231), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 10, + ACTIONS(5074), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176532,69 +178156,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69892] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70101] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4918), 1, sym_identifier, - ACTIONS(4881), 1, + ACTIONS(4922), 1, anon_sym_DOT_DOT, - ACTIONS(4885), 1, + ACTIONS(4926), 1, sym_integer_literal, - ACTIONS(5059), 1, + ACTIONS(5076), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2601), 1, + STATE(2610), 1, aux_sym_enum_variant_list_repeat1, - STATE(2232), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - STATE(3395), 3, + STATE(3257), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [69929] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70138] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5061), 1, - anon_sym_RBRACE, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(1386), 1, - sym_attribute_item, - STATE(2330), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2911), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2233), 2, - sym_line_comment, - sym_block_comment, - [69970] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2234), 2, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(5065), 10, + ACTIONS(5078), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176605,1067 +178201,1032 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69993] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70161] = 4, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2465), 1, - sym_parameters, - STATE(2235), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3513), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [70023] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5067), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2236), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, + ACTIONS(5080), 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, - [70055] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_DOT_DOT, - STATE(2237), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 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, - [70079] = 12, - ACTIONS(69), 1, + anon_sym_else, + anon_sym_in, + [70184] = 13, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5036), 1, sym_identifier, - ACTIONS(5069), 1, + ACTIONS(5082), 1, anon_sym_RBRACE, - STATE(1386), 1, + ACTIONS(5084), 1, + anon_sym_COMMA, + STATE(1122), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2311), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(2985), 1, + sym_field_declaration, + STATE(3534), 1, sym_visibility_modifier, STATE(2238), 2, sym_line_comment, sym_block_comment, - [70117] = 7, - ACTIONS(105), 1, + [70225] = 11, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4918), 1, + sym_identifier, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4926), 1, + sym_integer_literal, + ACTIONS(5086), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2610), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + STATE(3257), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70262] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4962), 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, + [70285] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5071), 1, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4782), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2044), 1, sym_type_arguments, - STATE(2239), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70145] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70316] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_COLON_COLON, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2240), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, + ACTIONS(1507), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [70177] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_else, + anon_sym_in, + [70339] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5073), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2331), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2241), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5088), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, + STATE(2110), 1, + sym_parameters, + STATE(2243), 2, sym_line_comment, sym_block_comment, - [70215] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70371] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(5075), 1, + ACTIONS(5090), 1, anon_sym_for, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, - STATE(2242), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70247] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70403] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5077), 1, + ACTIONS(4852), 1, + anon_sym_LPAREN, + ACTIONS(4856), 1, + anon_sym_BANG, + ACTIONS(4860), 1, + anon_sym_DOT_DOT, + ACTIONS(5092), 1, anon_sym_COLON_COLON, - STATE(1428), 1, - sym_type_arguments, - STATE(2243), 2, + ACTIONS(4862), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70275] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70435] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, + ACTIONS(5094), 1, anon_sym_LPAREN, - ACTIONS(5084), 1, + ACTIONS(5099), 1, anon_sym_LBRACK, - ACTIONS(5087), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(3660), 1, + STATE(3642), 1, sym_macro_rule, - ACTIONS(5082), 3, + ACTIONS(5097), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2244), 3, + STATE(2246), 3, sym_line_comment, sym_block_comment, aux_sym_macro_definition_repeat1, - [70307] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70467] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4747), 1, - anon_sym_trait, - ACTIONS(4835), 1, - anon_sym_extern, - ACTIONS(5090), 1, - anon_sym_impl, - STATE(3098), 1, - sym_extern_modifier, - STATE(2245), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5105), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, + STATE(2110), 1, + sym_parameters, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 5, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - [70337] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70499] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5092), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2331), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2246), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_type_arguments, + STATE(2485), 1, + sym_parameters, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70375] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3564), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70529] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4918), 1, sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5094), 1, - anon_sym_RBRACE, - STATE(1386), 1, + ACTIONS(4922), 1, + anon_sym_DOT_DOT, + ACTIONS(4926), 1, + sym_integer_literal, + STATE(1122), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2610), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2247), 2, - sym_line_comment, - sym_block_comment, - [70413] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4841), 1, - anon_sym_LPAREN, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(5096), 1, - anon_sym_COLON_COLON, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2248), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70445] = 12, - ACTIONS(69), 1, + STATE(3257), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [70563] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5098), 1, + ACTIONS(5036), 1, + sym_identifier, + ACTIONS(5107), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, + STATE(3342), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3534), 1, sym_visibility_modifier, - STATE(2249), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [70483] = 12, - ACTIONS(69), 1, + [70601] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5036), 1, sym_identifier, - ACTIONS(5100), 1, + ACTIONS(5109), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3342), 1, + sym_field_declaration, + STATE(3534), 1, sym_visibility_modifier, - STATE(2250), 2, - sym_line_comment, - sym_block_comment, - [70521] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_SEMI, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(663), 1, - sym_field_declaration_list, - STATE(2357), 1, - sym_type_parameters, - STATE(2980), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, STATE(2251), 2, sym_line_comment, sym_block_comment, - [70559] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70639] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(5112), 1, + ACTIONS(5111), 1, anon_sym_for, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70591] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70671] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(5114), 1, - sym_crate, - STATE(2288), 1, - sym_string_literal, + ACTIONS(5115), 1, + anon_sym_PLUS, + STATE(2282), 1, + aux_sym_trait_bounds_repeat1, STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70619] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5113), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70697] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, - STATE(1717), 1, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, sym_type_arguments, + STATE(2485), 1, + sym_parameters, STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70647] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3526), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70727] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_SEMI, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(634), 1, - sym_declaration_list, + ACTIONS(3560), 1, + anon_sym_DOT_DOT, STATE(2255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70675] = 12, - ACTIONS(69), 1, + ACTIONS(3562), 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, + [70751] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5036), 1, sym_identifier, - ACTIONS(5122), 1, + ACTIONS(5117), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3342), 1, + sym_field_declaration, + STATE(3534), 1, sym_visibility_modifier, STATE(2256), 2, sym_line_comment, sym_block_comment, - [70713] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70789] = 12, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5124), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5119), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2320), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70745] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70827] = 12, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5126), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5121), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2320), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, STATE(2258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70777] = 7, - ACTIONS(105), 1, + [70865] = 12, + ACTIONS(71), 1, + anon_sym_pub, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, + sym_identifier, + ACTIONS(5123), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3342), 1, + sym_field_declaration, + STATE(3534), 1, + sym_visibility_modifier, + STATE(2259), 2, + sym_line_comment, + sym_block_comment, + [70903] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, + ACTIONS(5125), 1, anon_sym_SEMI, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - STATE(1389), 1, + STATE(503), 1, sym_declaration_list, - STATE(2259), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70805] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70931] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2260), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70837] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5134), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2325), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, + ACTIONS(3576), 1, + anon_sym_DOT_DOT, STATE(2261), 2, sym_line_comment, sym_block_comment, - [70875] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, + ACTIONS(3578), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [70955] = 12, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5129), 1, + anon_sym_SEMI, + ACTIONS(5131), 1, + anon_sym_LPAREN, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + STATE(687), 1, + sym_field_declaration_list, + STATE(2365), 1, + sym_type_parameters, + STATE(2975), 1, + sym_ordered_field_declaration_list, + STATE(3262), 1, + sym_where_clause, STATE(2262), 2, sym_line_comment, sym_block_comment, - [70911] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [70993] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2465), 1, - sym_parameters, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5139), 1, + anon_sym_SEMI, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1176), 1, + sym_field_declaration_list, + STATE(2373), 1, + sym_type_parameters, + STATE(2925), 1, + sym_ordered_field_declaration_list, + STATE(3487), 1, + sym_where_clause, STATE(2263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [70941] = 12, - ACTIONS(69), 1, + [71031] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4980), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5136), 1, + ACTIONS(5143), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2320), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, sym_visibility_modifier, STATE(2264), 2, sym_line_comment, sym_block_comment, - [70979] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5138), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71011] = 12, - ACTIONS(69), 1, + [71069] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4980), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5140), 1, + ACTIONS(5145), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2320), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, sym_visibility_modifier, - STATE(2266), 2, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + [71107] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5149), 1, + anon_sym_PLUS, + STATE(2266), 3, sym_line_comment, sym_block_comment, - [71049] = 12, - ACTIONS(105), 1, + aux_sym_trait_bounds_repeat1, + ACTIONS(5147), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71131] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5152), 1, + anon_sym_move, + STATE(207), 1, + sym_closure_parameters, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71159] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5106), 1, + ACTIONS(5133), 1, anon_sym_LBRACE, - ACTIONS(5108), 1, + ACTIONS(5135), 1, anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5142), 1, + ACTIONS(5154), 1, anon_sym_SEMI, - STATE(641), 1, + STATE(635), 1, sym_field_declaration_list, - STATE(2398), 1, + STATE(2387), 1, sym_type_parameters, - STATE(2999), 1, + STATE(2978), 1, sym_ordered_field_declaration_list, - STATE(3420), 1, + STATE(3279), 1, sym_where_clause, - STATE(2267), 2, - sym_line_comment, - sym_block_comment, - [71087] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2465), 1, - sym_parameters, STATE(2268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3531), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [71117] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71197] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, + ACTIONS(5156), 1, + anon_sym_SEMI, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1125), 1, + sym_declaration_list, STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 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, - [71141] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71225] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4701), 1, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(4705), 1, + ACTIONS(5160), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 2, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5144), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2270), 2, sym_line_comment, sym_block_comment, - [71175] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [71257] = 12, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_DOT_DOT, + ACTIONS(5131), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(5162), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_field_declaration_list, + STATE(2372), 1, + sym_type_parameters, + STATE(3141), 1, + sym_ordered_field_declaration_list, + STATE(3397), 1, + sym_where_clause, STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 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, - [71199] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71295] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5149), 1, - anon_sym_PLUS, - STATE(2279), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5164), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(5147), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71225] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71323] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - ACTIONS(5151), 1, + ACTIONS(5166), 1, anon_sym_for, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2110), 1, sym_parameters, STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71257] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71355] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5153), 1, - anon_sym_SEMI, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_field_declaration_list, - STATE(2396), 1, - sym_type_parameters, - STATE(3149), 1, - sym_ordered_field_declaration_list, - STATE(3412), 1, - sym_where_clause, + ACTIONS(4768), 1, + anon_sym_trait, + ACTIONS(4873), 1, + anon_sym_extern, + ACTIONS(5168), 1, + anon_sym_impl, + STATE(3060), 1, + sym_extern_modifier, STATE(2274), 2, sym_line_comment, sym_block_comment, - [71295] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + [71385] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5157), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2325), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_type_arguments, + STATE(2485), 1, + sym_parameters, STATE(2275), 2, sym_line_comment, sym_block_comment, - [71333] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3538), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [71415] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5159), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2325), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4718), 1, + anon_sym_COLON, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4726), 1, + anon_sym_COLON_COLON, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5170), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2276), 2, sym_line_comment, sym_block_comment, - [71371] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71449] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(5161), 1, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4784), 1, + anon_sym_COLON_COLON, + ACTIONS(5170), 1, + anon_sym_RBRACK, + ACTIONS(3594), 2, anon_sym_SEMI, - STATE(1156), 1, - sym_field_declaration_list, - STATE(2343), 1, - sym_type_parameters, - STATE(2923), 1, - sym_ordered_field_declaration_list, - STATE(3207), 1, - sym_where_clause, + anon_sym_PLUS, + ACTIONS(4716), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2277), 2, sym_line_comment, sym_block_comment, - [71409] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71481] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4708), 1, anon_sym_LPAREN, - STATE(2026), 1, + ACTIONS(5173), 1, + anon_sym_for, + STATE(2034), 1, sym_type_arguments, - STATE(2465), 1, + STATE(2110), 1, sym_parameters, STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 5, - anon_sym_COLON, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [71439] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [71513] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_PLUS, - STATE(2279), 3, + ACTIONS(1349), 1, + aux_sym_string_literal_token1, + ACTIONS(5175), 1, + sym_crate, + STATE(2310), 1, + sym_string_literal, + STATE(2279), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5163), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71463] = 5, - ACTIONS(105), 1, + ACTIONS(4938), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71541] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(5177), 1, + anon_sym_COLON_COLON, + STATE(1670), 1, + sym_type_arguments, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71569] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, + ACTIONS(3546), 1, anon_sym_DOT_DOT, - STATE(2280), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 8, + ACTIONS(3548), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -177674,42 +179235,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [71487] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71593] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71519] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5149), 1, + ACTIONS(5115), 1, anon_sym_PLUS, - STATE(2272), 1, + STATE(2266), 1, aux_sym_trait_bounds_repeat1, STATE(2282), 2, sym_line_comment, sym_block_comment, - ACTIONS(5170), 7, + ACTIONS(5179), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -177717,1171 +179255,1223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71545] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71619] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4701), 1, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4718), 1, + anon_sym_COLON, + ACTIONS(4722), 1, anon_sym_DOT_DOT, - ACTIONS(4786), 1, + ACTIONS(4811), 1, anon_sym_COLON_COLON, - ACTIONS(5144), 1, - anon_sym_RBRACK, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4695), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4703), 2, + ACTIONS(4724), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2283), 2, sym_line_comment, sym_block_comment, - [71577] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71651] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, - anon_sym_PLUS, - STATE(2272), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5181), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, + STATE(2110), 1, + sym_parameters, STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(5170), 7, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [71603] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71683] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, - STATE(2285), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71631] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, + ACTIONS(3534), 1, anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2286), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [71665] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3536), 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, + [71707] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1349), 1, aux_sym_string_literal_token1, - ACTIONS(5176), 1, + ACTIONS(5183), 1, sym_crate, - STATE(2288), 1, + STATE(2310), 1, sym_string_literal, - STATE(2287), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 6, + ACTIONS(4938), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71693] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [71735] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2288), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5185), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, + STATE(2110), 1, + sym_parameters, + STATE(2287), 2, sym_line_comment, sym_block_comment, - ACTIONS(5178), 8, + ACTIONS(3594), 4, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71767] = 7, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5187), 1, + anon_sym_COLON_COLON, + STATE(1422), 1, + sym_type_arguments, + STATE(2288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71714] = 11, - ACTIONS(69), 1, + [71795] = 11, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4716), 1, + anon_sym_PIPE, + ACTIONS(4718), 1, + anon_sym_COLON, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4722), 1, + anon_sym_DOT_DOT, + ACTIONS(4811), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, + ACTIONS(4724), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2289), 2, + sym_line_comment, + sym_block_comment, + [71831] = 12, + ACTIONS(71), 1, + anon_sym_pub, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, + sym_identifier, + ACTIONS(5189), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3342), 1, + sym_field_declaration, + STATE(3534), 1, + sym_visibility_modifier, + STATE(2290), 2, + sym_line_comment, + sym_block_comment, + [71869] = 12, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5191), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2320), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + [71907] = 12, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4980), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - STATE(1086), 1, + ACTIONS(5193), 1, + anon_sym_RBRACE, + STATE(1122), 1, + sym_attribute_item, + STATE(2320), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, + STATE(2292), 2, + sym_line_comment, + sym_block_comment, + [71945] = 12, + ACTIONS(71), 1, + anon_sym_pub, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, + sym_identifier, + ACTIONS(5195), 1, + anon_sym_RBRACE, + STATE(1122), 1, sym_attribute_item, - STATE(3092), 1, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3342), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3534), 1, sym_visibility_modifier, - STATE(2289), 2, + STATE(2293), 2, + sym_line_comment, + sym_block_comment, + [71983] = 8, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_type_arguments, + STATE(2485), 1, + sym_parameters, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [71749] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [72013] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - STATE(1386), 1, - sym_attribute_item, - STATE(2325), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, - STATE(2290), 2, + ACTIONS(5197), 1, + anon_sym_PLUS, + STATE(2282), 1, + aux_sym_trait_bounds_repeat1, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [71784] = 11, - ACTIONS(69), 1, + ACTIONS(5113), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [72039] = 11, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4980), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2320), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3424), 1, + sym_enum_variant, + STATE(3645), 1, sym_visibility_modifier, - STATE(2291), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [71819] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72074] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5180), 1, + ACTIONS(5199), 1, anon_sym_SEMI, - ACTIONS(5182), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - STATE(574), 1, + STATE(1380), 1, sym_block, - STATE(2562), 1, + STATE(2585), 1, sym_where_clause, - STATE(3778), 1, + STATE(3787), 1, sym_label, - STATE(2292), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [71854] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72109] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5184), 1, + ACTIONS(5203), 1, anon_sym_SEMI, - ACTIONS(5186), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5207), 1, anon_sym_DASH_GT, - STATE(706), 1, + STATE(670), 1, sym_block, - STATE(2543), 1, + STATE(2614), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2293), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [71889] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72144] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5209), 1, anon_sym_SEMI, - STATE(586), 1, + STATE(591), 1, sym_block, - STATE(2571), 1, + STATE(2538), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2294), 2, + STATE(2299), 2, sym_line_comment, sym_block_comment, - [71924] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72179] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5211), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5213), 1, anon_sym_LT, - STATE(715), 1, + STATE(1136), 1, sym_declaration_list, - STATE(2422), 1, + STATE(2461), 1, sym_type_parameters, STATE(2876), 1, sym_trait_bounds, - STATE(3379), 1, + STATE(3401), 1, sym_where_clause, - STATE(2295), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [71959] = 11, - ACTIONS(105), 1, + [72214] = 11, + ACTIONS(71), 1, + anon_sym_pub, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4986), 1, + sym_crate, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(3156), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + [72249] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5211), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5213), 1, anon_sym_LT, - STATE(632), 1, - sym_declaration_list, - STATE(2427), 1, + ACTIONS(5215), 1, + anon_sym_SEMI, + ACTIONS(5217), 1, + anon_sym_EQ, + STATE(2472), 1, sym_type_parameters, - STATE(2826), 1, + STATE(3149), 1, sym_trait_bounds, - STATE(3409), 1, + STATE(3407), 1, sym_where_clause, - STATE(2296), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71994] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72284] = 11, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - STATE(2288), 1, - sym_string_literal, - STATE(2297), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4931), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72019] = 11, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5219), 1, anon_sym_SEMI, - STATE(597), 1, + ACTIONS(5221), 1, + anon_sym_DASH_GT, + STATE(627), 1, sym_block, - STATE(2593), 1, + STATE(2571), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2298), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, - [72054] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72319] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_fn, - ACTIONS(5201), 1, - anon_sym_extern, - STATE(2421), 1, - sym_extern_modifier, - STATE(2299), 3, - sym_line_comment, - sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5196), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [72081] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, - STATE(2300), 2, + ACTIONS(1349), 1, + aux_sym_string_literal_token1, + STATE(2310), 1, + sym_string_literal, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(4938), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72106] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5204), 1, - anon_sym_SEMI, - STATE(730), 1, - sym_block, - STATE(2588), 1, - sym_where_clause, - STATE(3778), 1, - sym_label, - STATE(2301), 2, - sym_line_comment, - sym_block_comment, - [72141] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - STATE(1117), 1, - sym_declaration_list, - STATE(2467), 1, - sym_type_parameters, - STATE(2863), 1, - sym_trait_bounds, - STATE(3414), 1, - sym_where_clause, - STATE(2302), 2, - sym_line_comment, - sym_block_comment, - [72176] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72344] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - ACTIONS(5206), 1, - anon_sym_SEMI, - ACTIONS(5208), 1, - anon_sym_EQ, - STATE(2468), 1, - sym_type_parameters, - STATE(3156), 1, - sym_trait_bounds, - STATE(3418), 1, - sym_where_clause, - STATE(2303), 2, - sym_line_comment, - sym_block_comment, - [72211] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5212), 1, + ACTIONS(5225), 1, anon_sym_RBRACE, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5216), 1, + ACTIONS(5229), 1, anon_sym_COMMA, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - STATE(2304), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - STATE(2885), 2, + STATE(2932), 2, sym_field_pattern, sym_remaining_field_pattern, - [72244] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72377] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(2305), 2, + ACTIONS(4904), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_BANG, + STATE(2306), 2, sym_line_comment, sym_block_comment, - STATE(2886), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72277] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72402] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5226), 1, + ACTIONS(5235), 1, anon_sym_RBRACE, - ACTIONS(5228), 1, + ACTIONS(5237), 1, anon_sym_COMMA, - STATE(2306), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - STATE(2970), 2, + STATE(3147), 2, sym_field_pattern, sym_remaining_field_pattern, - [72310] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72435] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5230), 1, - anon_sym_SEMI, - ACTIONS(5232), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5234), 1, + ACTIONS(5239), 1, + anon_sym_SEMI, + ACTIONS(5241), 1, anon_sym_DASH_GT, - STATE(1129), 1, + STATE(773), 1, sym_block, - STATE(2522), 1, + STATE(2560), 1, sym_where_clause, - STATE(3781), 1, + STATE(3784), 1, sym_label, - STATE(2307), 2, - sym_line_comment, - sym_block_comment, - [72345] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - STATE(1149), 1, - sym_declaration_list, - STATE(2485), 1, - sym_type_parameters, - STATE(2799), 1, - sym_trait_bounds, - STATE(3439), 1, - sym_where_clause, STATE(2308), 2, sym_line_comment, sym_block_comment, - [72380] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72470] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5243), 1, anon_sym_SEMI, - ACTIONS(5238), 1, + ACTIONS(5245), 1, anon_sym_DASH_GT, - STATE(1166), 1, + STATE(1186), 1, sym_block, - STATE(2534), 1, + STATE(2574), 1, sym_where_clause, - STATE(3781), 1, + STATE(3787), 1, sym_label, STATE(2309), 2, sym_line_comment, sym_block_comment, - [72415] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72505] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5240), 1, - anon_sym_SEMI, - ACTIONS(5242), 1, - anon_sym_DASH_GT, - STATE(1197), 1, - sym_block, - STATE(2511), 1, - sym_where_clause, - STATE(3781), 1, - sym_label, STATE(2310), 2, sym_line_comment, sym_block_comment, - [72450] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5247), 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, + [72526] = 11, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5244), 1, - anon_sym_SEMI, - STATE(1214), 1, - sym_block, - STATE(2547), 1, - sym_where_clause, - STATE(3781), 1, - sym_label, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, + sym_identifier, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(3144), 1, + sym_field_declaration, + STATE(3534), 1, + sym_visibility_modifier, STATE(2311), 2, sym_line_comment, sym_block_comment, - [72485] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72561] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, - anon_sym_SEMI, - ACTIONS(5248), 1, - anon_sym_DASH_GT, - STATE(762), 1, - sym_block, - STATE(2612), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_LT, + STATE(690), 1, + sym_declaration_list, + STATE(2516), 1, + sym_type_parameters, + STATE(2688), 1, + sym_trait_bounds, + STATE(3340), 1, sym_where_clause, - STATE(3778), 1, - sym_label, STATE(2312), 2, sym_line_comment, sym_block_comment, - [72520] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72596] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5250), 1, + ACTIONS(5249), 1, anon_sym_SEMI, - ACTIONS(5252), 1, - anon_sym_DASH_GT, - STATE(1244), 1, + STATE(567), 1, sym_block, - STATE(2553), 1, + STATE(2530), 1, sym_where_clause, - STATE(3781), 1, + STATE(3784), 1, sym_label, STATE(2313), 2, sym_line_comment, sym_block_comment, - [72555] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72631] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5251), 1, anon_sym_SEMI, - ACTIONS(5256), 1, + ACTIONS(5253), 1, anon_sym_DASH_GT, - STATE(1258), 1, + STATE(1218), 1, sym_block, - STATE(2556), 1, + STATE(2575), 1, sym_where_clause, - STATE(3781), 1, + STATE(3787), 1, sym_label, STATE(2314), 2, sym_line_comment, sym_block_comment, - [72590] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72666] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_LT, + ACTIONS(5255), 1, anon_sym_SEMI, - STATE(1264), 1, - sym_block, - STATE(2558), 1, + ACTIONS(5257), 1, + anon_sym_EQ, + STATE(2458), 1, + sym_type_parameters, + STATE(3027), 1, + sym_trait_bounds, + STATE(3478), 1, sym_where_clause, - STATE(3781), 1, - sym_label, STATE(2315), 2, sym_line_comment, sym_block_comment, - [72625] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72701] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5260), 1, - anon_sym_SEMI, - STATE(1299), 1, - sym_block, - STATE(2560), 1, - sym_where_clause, - STATE(3781), 1, - sym_label, + ACTIONS(5259), 1, + anon_sym_fn, + ACTIONS(5261), 1, + anon_sym_extern, + STATE(2331), 1, + aux_sym_function_modifiers_repeat1, + STATE(2450), 1, + sym_extern_modifier, STATE(2316), 2, sym_line_comment, sym_block_comment, - [72660] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4730), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [72730] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5262), 1, - anon_sym_SEMI, - ACTIONS(5264), 1, - anon_sym_DASH_GT, - STATE(1309), 1, - sym_block, - STATE(2561), 1, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_LT, + STATE(1227), 1, + sym_declaration_list, + STATE(2451), 1, + sym_type_parameters, + STATE(2678), 1, + sym_trait_bounds, + STATE(3247), 1, sym_where_clause, - STATE(3781), 1, - sym_label, STATE(2317), 2, sym_line_comment, sym_block_comment, - [72695] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72765] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(5263), 1, anon_sym_SEMI, - STATE(1337), 1, + ACTIONS(5265), 1, + anon_sym_DASH_GT, + STATE(602), 1, sym_block, - STATE(2563), 1, + STATE(2520), 1, sym_where_clause, - STATE(3781), 1, + STATE(3784), 1, sym_label, STATE(2318), 2, sym_line_comment, sym_block_comment, - [72730] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72800] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5268), 1, - anon_sym_SEMI, - STATE(1349), 1, - sym_block, - STATE(2564), 1, - sym_where_clause, - STATE(3781), 1, - sym_label, + ACTIONS(4688), 1, + anon_sym_PIPE, + ACTIONS(4690), 1, + anon_sym_LPAREN, + ACTIONS(4694), 1, + anon_sym_COLON, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5267), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2319), 2, sym_line_comment, sym_block_comment, - [72765] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72833] = 11, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5270), 1, - anon_sym_SEMI, - ACTIONS(5272), 1, - anon_sym_DASH_GT, - STATE(776), 1, - sym_block, - STATE(2618), 1, - sym_where_clause, - STATE(3778), 1, - sym_label, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4980), 1, + sym_identifier, + ACTIONS(4986), 1, + sym_crate, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, + STATE(3227), 1, + sym_enum_variant, + STATE(3645), 1, + sym_visibility_modifier, STATE(2320), 2, sym_line_comment, sym_block_comment, - [72800] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72868] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym_block, - STATE(2566), 1, - sym_where_clause, - STATE(3781), 1, - sym_label, - STATE(2321), 2, - sym_line_comment, - sym_block_comment, - [72835] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5276), 1, + ACTIONS(5269), 1, anon_sym_RBRACE, - ACTIONS(5278), 1, + ACTIONS(5271), 1, anon_sym_COMMA, - STATE(2322), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - STATE(3015), 2, + STATE(2891), 2, sym_field_pattern, sym_remaining_field_pattern, - [72868] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72901] = 11, + ACTIONS(71), 1, + anon_sym_pub, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - STATE(673), 1, - sym_declaration_list, - STATE(2426), 1, - sym_type_parameters, - STATE(2880), 1, - sym_trait_bounds, - STATE(3367), 1, - sym_where_clause, - STATE(2323), 2, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(4986), 1, + sym_crate, + ACTIONS(5036), 1, + sym_identifier, + STATE(1122), 1, + sym_attribute_item, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3342), 1, + sym_field_declaration, + STATE(3534), 1, + sym_visibility_modifier, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [72903] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [72936] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - ACTIONS(5280), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5273), 1, anon_sym_SEMI, - ACTIONS(5282), 1, - anon_sym_EQ, - STATE(2430), 1, - sym_type_parameters, - STATE(3036), 1, - sym_trait_bounds, - STATE(3219), 1, + ACTIONS(5275), 1, + anon_sym_DASH_GT, + STATE(714), 1, + sym_block, + STATE(2613), 1, sym_where_clause, - STATE(2324), 2, + STATE(3784), 1, + sym_label, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [72938] = 11, - ACTIONS(69), 1, + [72971] = 11, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5036), 1, sym_identifier, - STATE(1086), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(3388), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3393), 1, + sym_field_declaration, + STATE(3534), 1, sym_visibility_modifier, - STATE(2325), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [72973] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73006] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5284), 1, + ACTIONS(5277), 1, anon_sym_SEMI, - STATE(782), 1, + STATE(647), 1, sym_block, - STATE(2516), 1, + STATE(2590), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2326), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [73008] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73041] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_PIPE, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4679), 1, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5286), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2327), 2, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(5279), 1, + anon_sym_RBRACE, + ACTIONS(5281), 1, + anon_sym_COMMA, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [73041] = 11, - ACTIONS(69), 1, + STATE(2893), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73074] = 11, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, + ACTIONS(4980), 1, sym_identifier, - STATE(1086), 1, + ACTIONS(4986), 1, + sym_crate, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2951), 1, + STATE(2953), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3645), 1, sym_visibility_modifier, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + [73109] = 11, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5283), 1, + anon_sym_SEMI, + STATE(1235), 1, + sym_block, + STATE(2576), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, STATE(2328), 2, sym_line_comment, sym_block_comment, - [73076] = 11, - ACTIONS(69), 1, + [73144] = 11, + ACTIONS(71), 1, anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3090), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4986), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5036), 1, sym_identifier, - STATE(1086), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1122), 1, sym_attribute_item, - STATE(2987), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(2966), 1, + sym_field_declaration, + STATE(3534), 1, sym_visibility_modifier, STATE(2329), 2, sym_line_comment, sym_block_comment, - [73111] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73179] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, - sym_attribute_item, - STATE(2959), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_LT, + STATE(625), 1, + sym_declaration_list, + STATE(2448), 1, + sym_type_parameters, + STATE(2635), 1, + sym_trait_bounds, + STATE(3447), 1, + sym_where_clause, STATE(2330), 2, sym_line_comment, sym_block_comment, - [73146] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73214] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, - sym_attribute_item, - STATE(3440), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2331), 2, + ACTIONS(5288), 1, + anon_sym_fn, + ACTIONS(5290), 1, + anon_sym_extern, + STATE(2450), 1, + sym_extern_modifier, + STATE(2331), 3, sym_line_comment, sym_block_comment, - [73181] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_function_modifiers_repeat1, + ACTIONS(5285), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [73241] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5293), 1, + anon_sym_SEMI, + ACTIONS(5295), 1, + anon_sym_DASH_GT, + STATE(1264), 1, + sym_block, + STATE(2578), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + [73276] = 11, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3487), 1, anon_sym_SQUOTE, + ACTIONS(5137), 1, anon_sym_where, - [73202] = 4, - ACTIONS(105), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5297), 1, + anon_sym_SEMI, + STATE(737), 1, + sym_block, + STATE(2626), 1, + sym_where_clause, + STATE(3784), 1, + sym_label, + STATE(2333), 2, + sym_line_comment, + sym_block_comment, + [73311] = 11, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5299), 1, + anon_sym_SEMI, + ACTIONS(5301), 1, + anon_sym_DASH_GT, + STATE(1278), 1, + sym_block, + STATE(2579), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + [73346] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2333), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, + ACTIONS(5147), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -178890,15 +180480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [73223] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73367] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2334), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, + ACTIONS(5147), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -178907,6945 +180497,6936 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [73244] = 11, - ACTIONS(105), 1, + [73388] = 11, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5303), 1, + anon_sym_SEMI, + STATE(1284), 1, + sym_block, + STATE(2580), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, + STATE(2337), 2, + sym_line_comment, + sym_block_comment, + [73423] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5305), 1, anon_sym_SEMI, - ACTIONS(5290), 1, + ACTIONS(5307), 1, anon_sym_DASH_GT, - STATE(660), 1, + STATE(538), 1, sym_block, - STATE(2548), 1, + STATE(2624), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2335), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [73279] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73458] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5292), 1, - anon_sym_fn, - ACTIONS(5294), 1, - anon_sym_extern, - STATE(2299), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(2336), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - ACTIONS(4707), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [73308] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5147), 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, + [73479] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5296), 1, + ACTIONS(5309), 1, anon_sym_SEMI, - STATE(536), 1, + STATE(579), 1, sym_block, - STATE(2579), 1, + STATE(2532), 1, sym_where_clause, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2337), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73343] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73514] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5298), 1, + ACTIONS(5311), 1, anon_sym_SEMI, - ACTIONS(5300), 1, - anon_sym_DASH_GT, - STATE(608), 1, + STATE(1319), 1, sym_block, - STATE(2608), 1, + STATE(2582), 1, sym_where_clause, - STATE(3778), 1, + STATE(3787), 1, sym_label, - STATE(2338), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [73378] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73549] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5302), 1, + ACTIONS(5313), 1, anon_sym_SEMI, - ACTIONS(5304), 1, + ACTIONS(5315), 1, anon_sym_DASH_GT, - STATE(546), 1, + STATE(1329), 1, sym_block, - STATE(2616), 1, + STATE(2628), 1, sym_where_clause, - STATE(3778), 1, + STATE(3787), 1, sym_label, - STATE(2339), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [73413] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73584] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5213), 1, anon_sym_LT, - STATE(1206), 1, + STATE(723), 1, sym_declaration_list, - STATE(2409), 1, + STATE(2453), 1, sym_type_parameters, - STATE(2758), 1, + STATE(2686), 1, sym_trait_bounds, - STATE(3239), 1, + STATE(3441), 1, sym_where_clause, - STATE(2340), 2, - sym_line_comment, - sym_block_comment, - [73448] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_RBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(2384), 1, - aux_sym_macro_definition_repeat1, - STATE(3380), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2341), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - [73480] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73619] = 11, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4973), 1, - anon_sym_DOT_DOT, - ACTIONS(4977), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2342), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4695), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73506] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5110), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5317), 1, anon_sym_SEMI, - STATE(1203), 1, - sym_field_declaration_list, - STATE(2965), 1, - sym_ordered_field_declaration_list, - STATE(3235), 1, + ACTIONS(5319), 1, + anon_sym_DASH_GT, + STATE(1149), 1, + sym_block, + STATE(2569), 1, sym_where_clause, - STATE(2343), 2, - sym_line_comment, - sym_block_comment, - [73538] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, + STATE(3787), 1, + sym_label, STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73560] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73654] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5318), 1, - anon_sym_RBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5321), 1, + anon_sym_SEMI, + STATE(1357), 1, + sym_block, + STATE(2583), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, STATE(2345), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73590] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73689] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5320), 1, - anon_sym_RBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5323), 1, + anon_sym_SEMI, + STATE(1369), 1, + sym_block, + STATE(2584), 1, + sym_where_clause, + STATE(3787), 1, + sym_label, STATE(2346), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73620] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73724] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(2359), 1, - aux_sym_macro_definition_repeat1, - STATE(3220), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(5325), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_block, + STATE(2618), 1, + sym_where_clause, + STATE(3784), 1, + sym_label, STATE(2347), 2, sym_line_comment, sym_block_comment, - [73652] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73759] = 11, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - anon_sym_RBRACK, - STATE(2360), 1, - aux_sym_macro_definition_repeat1, - STATE(3225), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5213), 1, + anon_sym_LT, + STATE(1169), 1, + sym_declaration_list, + STATE(2435), 1, + sym_type_parameters, + STATE(2653), 1, + sym_trait_bounds, + STATE(3415), 1, + sym_where_clause, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73684] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73794] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5324), 1, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(5327), 1, anon_sym_RBRACE, - STATE(2362), 1, - aux_sym_macro_definition_repeat1, - STATE(3231), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, STATE(2349), 2, sym_line_comment, sym_block_comment, - [73716] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3345), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73824] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5326), 1, - anon_sym_RPAREN, - STATE(2363), 1, - aux_sym_macro_definition_repeat1, - STATE(3236), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2350), 2, sym_line_comment, sym_block_comment, - [73748] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [73850] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5328), 1, + ACTIONS(5331), 1, anon_sym_RBRACE, STATE(2351), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3345), 2, sym_field_pattern, sym_remaining_field_pattern, - [73778] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73880] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5330), 1, + ACTIONS(5333), 1, anon_sym_RBRACE, STATE(2352), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3345), 2, sym_field_pattern, sym_remaining_field_pattern, - [73808] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73910] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5326), 1, - anon_sym_RBRACK, - STATE(2370), 1, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3241), 1, + STATE(3278), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73840] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73942] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5332), 1, + ACTIONS(5343), 1, anon_sym_RBRACE, - STATE(2371), 1, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3243), 1, + STATE(3280), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, STATE(2354), 2, sym_line_comment, sym_block_comment, - [73872] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [73974] = 8, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5334), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(1532), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2355), 2, - sym_line_comment, - sym_block_comment, - [73904] = 8, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(5338), 1, - anon_sym_EQ, - ACTIONS(5336), 2, - anon_sym_RBRACE, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_COLON, + ACTIONS(5349), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5345), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2356), 2, - sym_line_comment, - sym_block_comment, - STATE(3096), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73932] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5340), 1, - anon_sym_SEMI, - STATE(621), 1, - sym_field_declaration_list, - STATE(2922), 1, - sym_ordered_field_declaration_list, - STATE(3247), 1, - sym_where_clause, - STATE(2357), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [73964] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74002] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5342), 1, - sym_identifier, - ACTIONS(5344), 1, - anon_sym_async, - ACTIONS(5346), 1, - anon_sym_ref, - ACTIONS(5348), 1, - sym_mutable_specifier, - ACTIONS(5350), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(2358), 2, - sym_line_comment, - sym_block_comment, - [73996] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(5351), 1, anon_sym_RPAREN, - STATE(2244), 1, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3336), 1, + STATE(3402), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2359), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - [74028] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74034] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(5351), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3354), 1, + STATE(3403), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2360), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - [74060] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74066] = 10, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5354), 1, - anon_sym_move, - STATE(229), 1, - sym_closure_parameters, - STATE(1532), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - [74092] = 10, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5356), 1, - anon_sym_RBRACE, - STATE(2244), 1, + ACTIONS(5353), 1, + anon_sym_RPAREN, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3356), 1, + STATE(3404), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2362), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [74124] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74098] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(2244), 1, + ACTIONS(5353), 1, + anon_sym_RBRACK, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3372), 1, + STATE(3405), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2363), 2, + STATE(2359), 2, sym_line_comment, sym_block_comment, - [74156] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74130] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5360), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(492), 1, - sym_block, - STATE(3782), 1, - sym_label, - STATE(2364), 2, - sym_line_comment, - sym_block_comment, - [74188] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5357), 1, + anon_sym_STAR, + STATE(2903), 1, + sym_use_list, + STATE(3716), 1, + sym_type_arguments, + ACTIONS(5355), 2, sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5362), 1, - anon_sym_RBRACE, - STATE(2365), 2, + sym_super, + STATE(2360), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74218] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74160] = 8, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5366), 1, - anon_sym_COLON, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5364), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2366), 2, - sym_line_comment, - sym_block_comment, - [74246] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(5368), 1, + ACTIONS(5361), 1, + anon_sym_COLON, + ACTIONS(5363), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2367), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 3, + ACTIONS(5359), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [74272] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(2368), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [74302] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74188] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - ACTIONS(5374), 1, - anon_sym_COLON, - ACTIONS(5376), 1, + ACTIONS(5363), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, + STATE(2362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 3, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2369), 2, + [74214] = 10, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4904), 1, + anon_sym_COLON_COLON, + ACTIONS(5365), 1, + anon_sym_LPAREN, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_RBRACK, + ACTIONS(5371), 1, + anon_sym_LBRACE, + ACTIONS(5373), 1, + anon_sym_EQ, + STATE(3736), 1, + sym_delim_token_tree, + STATE(2363), 2, sym_line_comment, sym_block_comment, - [74330] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74246] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, + ACTIONS(5375), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3373), 1, + STATE(3274), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2370), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [74362] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74278] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5133), 1, anon_sym_LBRACE, - ACTIONS(5378), 1, - anon_sym_RBRACE, - STATE(2244), 1, - aux_sym_macro_definition_repeat1, - STATE(3381), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2371), 2, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5377), 1, + anon_sym_SEMI, + STATE(614), 1, + sym_field_declaration_list, + STATE(2998), 1, + sym_ordered_field_declaration_list, + STATE(3365), 1, + sym_where_clause, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [74394] = 10, + [74310] = 10, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5380), 1, + ACTIONS(5379), 1, anon_sym_move, - STATE(211), 1, + STATE(217), 1, sym_closure_parameters, - STATE(1532), 1, + STATE(481), 1, sym_block, - STATE(3719), 1, + STATE(3788), 1, sym_label, - STATE(2372), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [74426] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74342] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_RPAREN, - STATE(2381), 1, + ACTIONS(5381), 1, + anon_sym_RBRACE, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3374), 1, + STATE(3275), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2373), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [74458] = 10, - ACTIONS(105), 1, + [74374] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5383), 1, + sym_identifier, + ACTIONS(5385), 1, + anon_sym_async, + ACTIONS(5387), 1, + anon_sym_ref, + ACTIONS(5389), 1, + sym_mutable_specifier, + ACTIONS(5391), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, + STATE(2368), 2, + sym_line_comment, + sym_block_comment, + [74406] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_RBRACK, - STATE(2382), 1, + ACTIONS(5393), 1, + anon_sym_RPAREN, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3376), 1, + STATE(3248), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2374), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [74490] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74438] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(2383), 1, - aux_sym_macro_definition_repeat1, - STATE(3378), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2375), 2, + ACTIONS(5397), 1, + anon_sym_EQ, + ACTIONS(5395), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [74522] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3152), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [74466] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5384), 1, + ACTIONS(5399), 1, anon_sym_RBRACE, - STATE(2244), 1, + STATE(2353), 1, aux_sym_macro_definition_repeat1, - STATE(3290), 1, + STATE(3448), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2376), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [74554] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74498] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5390), 1, - anon_sym_RBRACK, - ACTIONS(5392), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5394), 1, - anon_sym_EQ, - STATE(3756), 1, - sym_delim_token_tree, - STATE(2377), 2, + ACTIONS(5401), 1, + anon_sym_SEMI, + STATE(1158), 1, + sym_field_declaration_list, + STATE(2916), 1, + sym_ordered_field_declaration_list, + STATE(3385), 1, + sym_where_clause, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [74586] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74530] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(5398), 1, - anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, - STATE(2378), 2, + ACTIONS(5403), 1, + anon_sym_SEMI, + STATE(1224), 1, + sym_field_declaration_list, + STATE(2973), 1, + sym_ordered_field_declaration_list, + STATE(3245), 1, + sym_where_clause, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [74618] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74562] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5131), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(5398), 1, + ACTIONS(5407), 1, anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, - STATE(2379), 2, + ACTIONS(5405), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74650] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3180), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [74590] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(5398), 1, - anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, - STATE(2380), 2, + ACTIONS(5409), 1, + anon_sym_RPAREN, + STATE(2369), 1, + aux_sym_macro_definition_repeat1, + STATE(3258), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74682] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74622] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(2244), 1, + ACTIONS(5409), 1, + anon_sym_RBRACK, + STATE(2402), 1, aux_sym_macro_definition_repeat1, - STATE(3390), 1, + STATE(3266), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2381), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74714] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74654] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, + ACTIONS(5411), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2359), 1, aux_sym_macro_definition_repeat1, - STATE(3391), 1, + STATE(3384), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2382), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - [74746] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74686] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, + ACTIONS(5413), 1, anon_sym_RPAREN, - STATE(2244), 1, + STATE(2394), 1, aux_sym_macro_definition_repeat1, - STATE(3392), 1, + STATE(3343), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2383), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [74778] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74718] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, + ACTIONS(5413), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2364), 1, aux_sym_macro_definition_repeat1, - STATE(3393), 1, + STATE(3378), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2384), 2, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74810] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74750] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5366), 1, - anon_sym_COLON, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5364), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2385), 2, - sym_line_comment, - sym_block_comment, - [74838] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2386), 2, + ACTIONS(5415), 1, + sym_identifier, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [74864] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4930), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74772] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5155), 1, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5408), 1, - anon_sym_EQ, - ACTIONS(5406), 2, + ACTIONS(5417), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2387), 2, + STATE(2367), 1, + aux_sym_macro_definition_repeat1, + STATE(3428), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, + STATE(2381), 2, sym_line_comment, sym_block_comment, - STATE(2985), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [74892] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74804] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, - STATE(2388), 2, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, + anon_sym_COLON_COLON, + ACTIONS(5361), 1, + anon_sym_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5359), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2382), 2, sym_line_comment, sym_block_comment, - [74922] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74832] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5410), 2, + ACTIONS(5419), 1, sym_identifier, - sym_super, - STATE(2389), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [74952] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4930), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74854] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(5414), 1, - anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_macro_definition_repeat1, - STATE(3458), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2390), 2, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5421), 1, + anon_sym_move, + STATE(199), 1, + sym_closure_parameters, + STATE(1485), 1, + sym_block, + STATE(3724), 1, + sym_label, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [74984] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [74886] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(5423), 1, anon_sym_RBRACE, - STATE(2376), 1, - aux_sym_macro_definition_repeat1, - STATE(3462), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2391), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [75016] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3345), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74916] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5418), 1, + ACTIONS(5425), 1, anon_sym_RBRACE, - STATE(2392), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3345), 2, sym_field_pattern, sym_remaining_field_pattern, - [75046] = 9, - ACTIONS(105), 1, + [74946] = 10, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5131), 1, + anon_sym_LPAREN, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5427), 1, + anon_sym_SEMI, + STATE(720), 1, + sym_field_declaration_list, + STATE(3182), 1, + sym_ordered_field_declaration_list, + STATE(3244), 1, + sym_where_clause, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + [74978] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5227), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5231), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5233), 1, sym_mutable_specifier, - ACTIONS(5420), 1, + ACTIONS(5429), 1, anon_sym_RBRACE, - STATE(2393), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3345), 2, sym_field_pattern, sym_remaining_field_pattern, - [75076] = 5, - ACTIONS(105), 1, + [75008] = 10, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, + anon_sym_LBRACE, + ACTIONS(5431), 1, + anon_sym_RBRACE, + STATE(2246), 1, + aux_sym_macro_definition_repeat1, + STATE(3255), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, + STATE(2389), 2, + sym_line_comment, + sym_block_comment, + [75040] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5433), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [75066] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, + ACTIONS(5435), 1, anon_sym_trait, - STATE(2394), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3690), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75098] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75088] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, - sym_identifier, - STATE(2395), 2, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, + anon_sym_LBRACE, + ACTIONS(5437), 1, + anon_sym_RBRACE, + STATE(2354), 1, + aux_sym_macro_definition_repeat1, + STATE(3453), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, [75120] = 10, - ACTIONS(105), 1, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5439), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, + STATE(1485), 1, + sym_block, + STATE(3724), 1, + sym_label, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + [75152] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(1138), 1, - sym_field_declaration_list, - STATE(2912), 1, - sym_ordered_field_declaration_list, - STATE(3353), 1, - sym_where_clause, - STATE(2396), 2, + ACTIONS(5375), 1, + anon_sym_RPAREN, + STATE(2246), 1, + aux_sym_macro_definition_repeat1, + STATE(3273), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [75152] = 7, - ACTIONS(105), 1, + [75184] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5441), 1, + anon_sym_trait, + STATE(2395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75206] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(5002), 1, anon_sym_DOT_DOT, - ACTIONS(5428), 1, + ACTIONS(5006), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(5004), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2397), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [75178] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4716), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [75232] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, + ACTIONS(4910), 1, + anon_sym_COLON_COLON, + ACTIONS(5365), 1, anon_sym_LPAREN, - ACTIONS(5106), 1, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5430), 1, - anon_sym_SEMI, - STATE(712), 1, - sym_field_declaration_list, - STATE(2882), 1, - sym_ordered_field_declaration_list, - STATE(3299), 1, - sym_where_clause, + ACTIONS(5443), 1, + anon_sym_RBRACK, + ACTIONS(5445), 1, + anon_sym_EQ, + STATE(3740), 1, + sym_delim_token_tree, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + [75264] = 9, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(5447), 1, + anon_sym_RBRACE, STATE(2398), 2, sym_line_comment, sym_block_comment, - [75210] = 10, - ACTIONS(3), 1, + STATE(3345), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75294] = 10, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - aux_sym_line_comment_token1, - ACTIONS(5434), 1, - aux_sym_line_comment_token3, - ACTIONS(5436), 1, - anon_sym_BANG2, - ACTIONS(5438), 1, - anon_sym_SLASH2, - STATE(3507), 1, - sym__line_doc_comment_marker, - STATE(3558), 1, - sym__inner_line_doc_comment_marker, - STATE(3715), 1, - sym__outer_line_doc_comment_marker, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, + ACTIONS(5365), 1, + anon_sym_LPAREN, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + anon_sym_RBRACK, + ACTIONS(5445), 1, + anon_sym_EQ, + STATE(3740), 1, + sym_delim_token_tree, STATE(2399), 2, sym_line_comment, sym_block_comment, - [75242] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75326] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_trait, + ACTIONS(5449), 1, + sym_identifier, STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(4930), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75264] = 10, - ACTIONS(105), 1, + [75348] = 9, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, + ACTIONS(5451), 1, + anon_sym_RBRACE, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + STATE(3345), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75378] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5335), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5337), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, - anon_sym_RBRACE, - STATE(2244), 1, + ACTIONS(5393), 1, + anon_sym_RBRACK, + STATE(2246), 1, aux_sym_macro_definition_repeat1, - STATE(3280), 1, + STATE(3254), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3592), 1, sym_token_tree_pattern, - STATE(2401), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [75296] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75410] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5444), 1, - sym_identifier, - STATE(2402), 2, + ACTIONS(4942), 1, + anon_sym_COLON_COLON, + ACTIONS(5365), 1, + anon_sym_LPAREN, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, + anon_sym_RBRACK, + ACTIONS(5445), 1, + anon_sym_EQ, + STATE(3740), 1, + sym_delim_token_tree, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75318] = 5, - ACTIONS(105), 1, + [75442] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - sym_identifier, - STATE(2403), 2, + ACTIONS(5453), 1, + aux_sym_line_comment_token1, + ACTIONS(5455), 1, + aux_sym_line_comment_token3, + ACTIONS(5457), 1, + anon_sym_BANG2, + ACTIONS(5459), 1, + anon_sym_SLASH2, + STATE(3595), 1, + sym__line_doc_comment_marker, + STATE(3632), 1, + sym__inner_line_doc_comment_marker, + STATE(3656), 1, + sym__outer_line_doc_comment_marker, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75340] = 10, + [75474] = 10, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5448), 1, + ACTIONS(5461), 1, anon_sym_move, - STATE(224), 1, + STATE(214), 1, sym_closure_parameters, - STATE(1724), 1, + STATE(1822), 1, sym_block, - STATE(3783), 1, + STATE(3789), 1, sym_label, - STATE(2404), 2, - sym_line_comment, - sym_block_comment, - [75372] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_SEMI, - STATE(665), 1, - sym_declaration_list, - STATE(3025), 1, - sym_where_clause, STATE(2405), 2, sym_line_comment, sym_block_comment, - [75401] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75506] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(4308), 1, anon_sym_LBRACE, - ACTIONS(5452), 1, - anon_sym_SEMI, - STATE(1224), 1, - sym_declaration_list, - STATE(2982), 1, - sym_where_clause, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5357), 1, + anon_sym_STAR, + STATE(2903), 1, + sym_use_list, + STATE(3633), 1, + sym_type_arguments, + ACTIONS(5355), 2, + sym_identifier, + sym_super, STATE(2406), 2, sym_line_comment, sym_block_comment, - [75430] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75536] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4810), 1, - anon_sym_DOT_DOT, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5463), 1, + anon_sym_move, + STATE(188), 1, + sym_closure_parameters, + STATE(1485), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75451] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75568] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1012), 1, - anon_sym_DOT_DOT, + ACTIONS(5465), 1, + sym_identifier, STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1014), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75472] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4930), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75590] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1256), 1, - sym_declaration_list, - STATE(2851), 1, - sym_trait_bounds, - STATE(3498), 1, - sym_where_clause, + ACTIONS(5467), 1, + anon_sym_RPAREN, + STATE(2356), 1, + aux_sym_macro_definition_repeat1, + STATE(3379), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, STATE(2409), 2, sym_line_comment, sym_block_comment, - [75501] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75622] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1016), 1, - anon_sym_DOT_DOT, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, + anon_sym_LBRACE, + ACTIONS(5467), 1, + anon_sym_RBRACK, + STATE(2357), 1, + aux_sym_macro_definition_repeat1, + STATE(3381), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1018), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75522] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75654] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1042), 1, - anon_sym_DOT_DOT, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, + anon_sym_LBRACE, + ACTIONS(5411), 1, + anon_sym_RPAREN, + STATE(2358), 1, + aux_sym_macro_definition_repeat1, + STATE(3382), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1044), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75543] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75686] = 10, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(958), 1, - anon_sym_DOT_DOT, + ACTIONS(5335), 1, + anon_sym_LPAREN, + ACTIONS(5337), 1, + anon_sym_LBRACK, + ACTIONS(5339), 1, + anon_sym_LBRACE, + ACTIONS(5469), 1, + anon_sym_RBRACE, + STATE(2389), 1, + aux_sym_macro_definition_repeat1, + STATE(3298), 1, + sym_macro_rule, + STATE(3592), 1, + sym_token_tree_pattern, STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(960), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75564] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75718] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5471), 1, anon_sym_LBRACE, - ACTIONS(5454), 1, - anon_sym_SEMI, - STATE(738), 1, - sym_declaration_list, - STATE(3118), 1, + STATE(642), 1, + sym_enum_variant_list, + STATE(2733), 1, + sym_type_parameters, + STATE(3443), 1, sym_where_clause, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75593] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75747] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5456), 1, + ACTIONS(5473), 1, anon_sym_SEMI, - STATE(1272), 1, + STATE(1194), 1, sym_declaration_list, - STATE(2990), 1, + STATE(2961), 1, sym_where_clause, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75622] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75776] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5458), 1, - anon_sym_SEMI, - STATE(1274), 1, - sym_declaration_list, - STATE(2991), 1, - sym_where_clause, + ACTIONS(5475), 1, + anon_sym_DASH_GT, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75651] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3780), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75797] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5460), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5477), 1, anon_sym_SEMI, - STATE(1288), 1, + STATE(681), 1, sym_declaration_list, - STATE(2994), 1, + STATE(3200), 1, sym_where_clause, STATE(2416), 2, sym_line_comment, sym_block_comment, - [75680] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75826] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5462), 1, - anon_sym_SEMI, - STATE(1290), 1, - sym_declaration_list, - STATE(2995), 1, - sym_where_clause, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, + anon_sym_for, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75709] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5110), 1, anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5464), 1, - anon_sym_SEMI, - STATE(1292), 1, - sym_declaration_list, - STATE(2996), 1, - sym_where_clause, + [75849] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5479), 1, + anon_sym_DASH_GT, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75738] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3702), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75870] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5466), 1, - anon_sym_SEMI, - STATE(1294), 1, - sym_declaration_list, - STATE(2997), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(215), 1, + sym_closure_parameters, + STATE(1830), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75767] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [75899] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5468), 1, - anon_sym_SEMI, - STATE(740), 1, - sym_declaration_list, - STATE(3120), 1, - sym_where_clause, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75796] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5097), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [75918] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(5481), 1, + anon_sym_EQ, STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75815] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3772), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75941] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(774), 1, - sym_declaration_list, - STATE(2859), 1, - sym_trait_bounds, - STATE(3455), 1, - sym_where_clause, + ACTIONS(5483), 1, + anon_sym_DASH_GT, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75844] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3708), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75962] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5470), 1, - anon_sym_SEMI, - STATE(1329), 1, - sym_declaration_list, - STATE(3000), 1, - sym_where_clause, + ACTIONS(5485), 1, + anon_sym_DASH_GT, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75873] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3714), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [75983] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5487), 1, anon_sym_SEMI, - STATE(1331), 1, + STATE(521), 1, sym_declaration_list, - STATE(3001), 1, + STATE(3163), 1, sym_where_clause, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75902] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76012] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5075), 1, - anon_sym_for, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(180), 1, + sym_closure_parameters, + STATE(426), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75925] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76041] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(624), 1, + ACTIONS(5489), 1, + anon_sym_SEMI, + STATE(1237), 1, sym_declaration_list, - STATE(2649), 1, - sym_trait_bounds, - STATE(3366), 1, + STATE(2987), 1, sym_where_clause, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75954] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76070] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(702), 1, + ACTIONS(5491), 1, + anon_sym_SEMI, + STATE(1211), 1, sym_declaration_list, - STATE(2622), 1, - sym_trait_bounds, - STATE(3429), 1, + STATE(2969), 1, sym_where_clause, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75983] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76099] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5474), 1, + ACTIONS(5493), 1, anon_sym_SEMI, - STATE(610), 1, + STATE(1239), 1, sym_declaration_list, - STATE(3168), 1, + STATE(2988), 1, sym_where_clause, STATE(2428), 2, sym_line_comment, sym_block_comment, - [76012] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76128] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4860), 1, anon_sym_DOT_DOT, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4862), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2429), 2, sym_line_comment, sym_block_comment, - [76037] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [76151] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5476), 1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, anon_sym_SEMI, - ACTIONS(5478), 1, - anon_sym_EQ, - STATE(3055), 1, - sym_trait_bounds, - STATE(3230), 1, + STATE(1243), 1, + sym_declaration_list, + STATE(2991), 1, sym_where_clause, STATE(2430), 2, sym_line_comment, sym_block_comment, - [76066] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76180] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(214), 1, - sym_closure_parameters, - STATE(1497), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5363), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5345), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2431), 2, sym_line_comment, sym_block_comment, - [76095] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76205] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, + ACTIONS(5497), 1, anon_sym_DASH_GT, STATE(2432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 5, + ACTIONS(3750), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76116] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76226] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(5499), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_declaration_list, + STATE(2992), 1, + sym_where_clause, STATE(2433), 2, sym_line_comment, sym_block_comment, - [76145] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76255] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_enum_variant_list, - STATE(2850), 1, - sym_type_parameters, - STATE(3441), 1, - sym_where_clause, + ACTIONS(5501), 1, + anon_sym_RBRACK, + ACTIONS(5042), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2434), 2, sym_line_comment, sym_block_comment, - [76174] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3698), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76278] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(213), 1, - sym_closure_parameters, - STATE(1497), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(1216), 1, + sym_declaration_list, + STATE(2675), 1, + sym_trait_bounds, + STATE(3236), 1, + sym_where_clause, STATE(2435), 2, sym_line_comment, sym_block_comment, - [76203] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76307] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5488), 1, - anon_sym_if, - STATE(3782), 1, - sym_label, - STATE(498), 2, - sym_if_expression, - sym_block, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5504), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_declaration_list, + STATE(3030), 1, + sym_where_clause, STATE(2436), 2, sym_line_comment, sym_block_comment, - [76230] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76336] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(679), 1, - sym_field_declaration_list, - STATE(2632), 1, - sym_type_parameters, - STATE(3246), 1, - sym_where_clause, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5506), 1, + anon_sym_GT, + ACTIONS(5508), 1, + anon_sym_COMMA, + STATE(3093), 1, + sym_trait_bounds, + STATE(3094), 1, + aux_sym_type_arguments_repeat1, STATE(2437), 2, sym_line_comment, sym_block_comment, - [76259] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76365] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, + ACTIONS(5135), 1, anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(1109), 1, + STATE(1128), 1, sym_enum_variant_list, - STATE(2856), 1, + STATE(2864), 1, sym_type_parameters, - STATE(3404), 1, + STATE(3377), 1, sym_where_clause, STATE(2438), 2, sym_line_comment, sym_block_comment, - [76288] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76394] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(234), 1, - sym_closure_parameters, - STATE(1497), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_DOT_DOT, + ACTIONS(5231), 1, + anon_sym_ref, + ACTIONS(5233), 1, + sym_mutable_specifier, STATE(2439), 2, sym_line_comment, sym_block_comment, - [76317] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + STATE(3345), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [76421] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5492), 1, - anon_sym_SEMI, - STATE(1111), 1, - sym_declaration_list, - STATE(3147), 1, - sym_where_clause, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5090), 1, + anon_sym_for, STATE(2440), 2, sym_line_comment, sym_block_comment, - [76346] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76444] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4700), 1, anon_sym_DOT_DOT, - STATE(2441), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4826), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(5363), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_if, - [76367] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5494), 1, - anon_sym_GT, - ACTIONS(5496), 1, + ACTIONS(5512), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3066), 1, - sym_trait_bounds, - STATE(3067), 1, - aux_sym_type_arguments_repeat1, - STATE(2442), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [76396] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76469] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, - anon_sym_SEMI, - STATE(631), 1, - sym_declaration_list, - STATE(3138), 1, + STATE(1138), 1, + sym_field_declaration_list, + STATE(2878), 1, + sym_type_parameters, + STATE(3409), 1, sym_where_clause, - STATE(2443), 2, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [76425] = 9, - ACTIONS(105), 1, + [76498] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(2487), 1, + aux_sym_where_clause_repeat1, + STATE(2443), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3521), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [76521] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5135), 1, anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1119), 1, + STATE(725), 1, sym_field_declaration_list, - STATE(2879), 1, + STATE(2742), 1, sym_type_parameters, - STATE(3426), 1, + STATE(3238), 1, sym_where_clause, STATE(2444), 2, sym_line_comment, sym_block_comment, - [76454] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76550] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5500), 1, - anon_sym_if, - STATE(3783), 1, - sym_label, - STATE(1762), 2, - sym_if_expression, + STATE(202), 1, + sym_closure_parameters, + STATE(1509), 1, sym_block, + STATE(3724), 1, + sym_label, STATE(2445), 2, sym_line_comment, sym_block_comment, - [76481] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76579] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5516), 1, + anon_sym_if, + STATE(3679), 1, + sym_label, + STATE(405), 2, + sym_if_expression, + sym_block, STATE(2446), 2, sym_line_comment, sym_block_comment, - [76506] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76606] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5518), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_declaration_list, + STATE(3070), 1, + sym_where_clause, STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76529] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76635] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(213), 1, - sym_closure_parameters, - STATE(480), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(711), 1, + sym_declaration_list, + STATE(2700), 1, + sym_trait_bounds, + STATE(3389), 1, + sym_where_clause, STATE(2448), 2, sym_line_comment, sym_block_comment, - [76558] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76664] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5001), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5520), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_declaration_list, + STATE(3022), 1, + sym_where_clause, STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [76579] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76693] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(239), 1, - sym_closure_parameters, - STATE(1735), 1, - sym_block, - STATE(3783), 1, - sym_label, STATE(2450), 2, sym_line_comment, sym_block_comment, - [76608] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3690), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76712] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, - anon_sym_DASH_GT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(1276), 1, + sym_declaration_list, + STATE(2693), 1, + sym_trait_bounds, + STATE(3360), 1, + sym_where_clause, STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76629] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76741] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_enum_variant_list, - STATE(2857), 1, - sym_type_parameters, - STATE(3195), 1, - sym_where_clause, + ACTIONS(3744), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5022), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5522), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2452), 2, sym_line_comment, sym_block_comment, - [76658] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76764] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_DASH_GT, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(603), 1, + sym_declaration_list, + STATE(2654), 1, + sym_trait_bounds, + STATE(3434), 1, + sym_where_clause, STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 5, - anon_sym_COLON, + [76793] = 9, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, anon_sym_PLUS, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5525), 1, anon_sym_GT, + ACTIONS(5527), 1, anon_sym_COMMA, - anon_sym_as, - [76679] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5508), 1, - anon_sym_DASH_GT, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76700] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76822] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, + ACTIONS(5531), 1, anon_sym_COMMA, - STATE(2455), 3, + STATE(2443), 1, + aux_sym_where_clause_repeat1, + STATE(2455), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - ACTIONS(5510), 4, + ACTIONS(5529), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [76721] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76845] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(642), 1, - sym_field_declaration_list, - STATE(2753), 1, - sym_type_parameters, - STATE(3198), 1, - sym_where_clause, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(5533), 1, + anon_sym_GT, + ACTIONS(5535), 1, + anon_sym_COMMA, + STATE(3125), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3594), 2, + anon_sym_PLUS, + anon_sym_as, STATE(2456), 2, sym_line_comment, sym_block_comment, - [76750] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76872] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, - anon_sym_DASH_GT, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5537), 1, + anon_sym_SEMI, + STATE(684), 1, + sym_declaration_list, + STATE(3068), 1, + sym_where_clause, STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76771] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76901] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5517), 1, - anon_sym_DASH_GT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5539), 1, + anon_sym_SEMI, + ACTIONS(5541), 1, + anon_sym_EQ, + STATE(3090), 1, + sym_trait_bounds, + STATE(3289), 1, + sym_where_clause, STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76792] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76930] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_for, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5543), 1, + anon_sym_SEMI, + STATE(739), 1, + sym_declaration_list, + STATE(3062), 1, + sym_where_clause, STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [76815] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76959] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5545), 1, anon_sym_SEMI, - STATE(566), 1, + STATE(741), 1, sym_declaration_list, - STATE(3080), 1, + STATE(2964), 1, sym_where_clause, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76844] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [76988] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(5521), 1, - anon_sym_GT, - ACTIONS(5523), 1, - anon_sym_COMMA, - STATE(3162), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(1161), 1, + sym_declaration_list, + STATE(2651), 1, + sym_trait_bounds, + STATE(3391), 1, + sym_where_clause, STATE(2461), 2, sym_line_comment, sym_block_comment, - [76871] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77017] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5525), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5547), 1, anon_sym_SEMI, - STATE(568), 1, + STATE(605), 1, sym_declaration_list, - STATE(3086), 1, + STATE(2917), 1, sym_where_clause, STATE(2462), 2, sym_line_comment, sym_block_comment, - [76900] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77046] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5527), 1, - anon_sym_SEMI, - STATE(507), 1, - sym_declaration_list, - STATE(3008), 1, - sym_where_clause, + ACTIONS(5042), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2463), 2, sym_line_comment, sym_block_comment, - [76929] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3698), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [77067] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5471), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, - anon_sym_SEMI, - STATE(509), 1, - sym_declaration_list, - STATE(3029), 1, + STATE(631), 1, + sym_enum_variant_list, + STATE(2661), 1, + sym_type_parameters, + STATE(3383), 1, sym_where_clause, STATE(2464), 2, sym_line_comment, sym_block_comment, - [76958] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77096] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_DASH_GT, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5166), 1, + anon_sym_for, STATE(2465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 5, - anon_sym_COLON, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76979] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [77119] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3799), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(5001), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5533), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_enum_variant_list, + STATE(2655), 1, + sym_type_parameters, + STATE(3456), 1, + sym_where_clause, STATE(2466), 2, sym_line_comment, sym_block_comment, - [77002] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77148] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1141), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5549), 1, + anon_sym_SEMI, + STATE(706), 1, sym_declaration_list, - STATE(2778), 1, - sym_trait_bounds, - STATE(3385), 1, + STATE(3153), 1, sym_where_clause, STATE(2467), 2, sym_line_comment, sym_block_comment, - [77031] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77177] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5536), 1, - anon_sym_SEMI, - ACTIONS(5538), 1, - anon_sym_EQ, - STATE(2915), 1, - sym_trait_bounds, - STATE(3397), 1, - sym_where_clause, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5551), 1, + anon_sym_if, + STATE(3789), 1, + sym_label, + STATE(1859), 2, + sym_if_expression, + sym_block, STATE(2468), 2, sym_line_comment, sym_block_comment, - [77060] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77204] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5540), 1, + ACTIONS(5553), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(1190), 1, sym_declaration_list, - STATE(2917), 1, + STATE(2959), 1, sym_where_clause, STATE(2469), 2, sym_line_comment, sym_block_comment, - [77089] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77233] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2470), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5082), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [77108] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - STATE(1152), 1, - sym_enum_variant_list, - STATE(2824), 1, - sym_type_parameters, - STATE(3362), 1, + ACTIONS(5555), 1, + anon_sym_SEMI, + STATE(1292), 1, + sym_declaration_list, + STATE(3003), 1, sym_where_clause, - STATE(2471), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [77137] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77262] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5168), 1, - anon_sym_for, - STATE(2472), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77160] = 9, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - STATE(1157), 1, - sym_field_declaration_list, - STATE(2840), 1, - sym_type_parameters, - STATE(3211), 1, + ACTIONS(5557), 1, + anon_sym_SEMI, + STATE(1294), 1, + sym_declaration_list, + STATE(3004), 1, sym_where_clause, - STATE(2473), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [77189] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77291] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4965), 2, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2474), 2, + ACTIONS(5559), 1, + anon_sym_SEMI, + ACTIONS(5561), 1, + anon_sym_EQ, + STATE(2919), 1, + sym_trait_bounds, + STATE(3400), 1, + sym_where_clause, + STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3721), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [77210] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77320] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5542), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5563), 1, anon_sym_SEMI, - STATE(696), 1, + STATE(745), 1, sym_declaration_list, - STATE(3169), 1, + STATE(3012), 1, sym_where_clause, - STATE(2475), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [77239] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77349] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3196), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5211), 1, anon_sym_COLON, - ACTIONS(5544), 1, + ACTIONS(5565), 1, anon_sym_GT, - ACTIONS(5546), 1, + ACTIONS(5567), 1, anon_sym_COMMA, - STATE(3177), 1, + STATE(3047), 1, sym_trait_bounds, - STATE(3184), 1, + STATE(3048), 1, aux_sym_type_arguments_repeat1, - STATE(2476), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [77268] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77378] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3196), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5211), 1, anon_sym_COLON, - ACTIONS(5548), 1, + ACTIONS(5569), 1, anon_sym_GT, - ACTIONS(5550), 1, + ACTIONS(5571), 1, anon_sym_COMMA, - STATE(2935), 1, + STATE(2933), 1, sym_trait_bounds, - STATE(2936), 1, + STATE(2934), 1, aux_sym_type_arguments_repeat1, - STATE(2477), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - [77297] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77407] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - anon_sym_RBRACK, - ACTIONS(5001), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2478), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3799), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [77320] = 8, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5552), 1, - anon_sym_if, - STATE(3719), 1, - sym_label, - STATE(1447), 2, - sym_if_expression, - sym_block, - STATE(2479), 2, + ACTIONS(5573), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym_declaration_list, + STATE(3132), 1, + sym_where_clause, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [77347] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77436] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5554), 1, + ACTIONS(5575), 1, anon_sym_SEMI, - STATE(1170), 1, + STATE(1308), 1, sym_declaration_list, - STATE(2955), 1, + STATE(3005), 1, sym_where_clause, - STATE(2480), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [77376] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77465] = 9, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - [77401] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2486), 1, - aux_sym_where_clause_repeat1, - STATE(2482), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5577), 1, + anon_sym_SEMI, + STATE(747), 1, + sym_declaration_list, + STATE(3020), 1, + sym_where_clause, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5556), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [77424] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77494] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5560), 1, + ACTIONS(5579), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(1310), 1, sym_declaration_list, - STATE(2956), 1, + STATE(3006), 1, sym_where_clause, - STATE(2483), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [77453] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77523] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, + ACTIONS(5581), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(1312), 1, sym_declaration_list, - STATE(2961), 1, + STATE(3008), 1, sym_where_clause, - STATE(2484), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [77482] = 9, - ACTIONS(105), 1, + [77552] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5173), 1, + anon_sym_for, + STATE(2481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77575] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1195), 1, + ACTIONS(5583), 1, + anon_sym_SEMI, + STATE(1314), 1, sym_declaration_list, - STATE(2749), 1, - sym_trait_bounds, - STATE(3228), 1, + STATE(3009), 1, sym_where_clause, - STATE(2485), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [77511] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77604] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5564), 1, + ACTIONS(5522), 1, + anon_sym_RBRACK, + ACTIONS(5022), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2455), 1, - aux_sym_where_clause_repeat1, - STATE(2486), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 4, + ACTIONS(3744), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [77534] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_DASH_GT, + [77627] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5502), 2, + ACTIONS(5022), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3744), 4, anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - STATE(2487), 2, + anon_sym_DASH_GT, + [77648] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5585), 1, + anon_sym_DASH_GT, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [77559] = 6, - ACTIONS(105), 1, + ACTIONS(3792), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77669] = 9, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_field_declaration_list, + STATE(2656), 1, + sym_type_parameters, + STATE(3205), 1, + sym_where_clause, + STATE(2486), 2, + sym_line_comment, + sym_block_comment, + [77698] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5566), 1, - anon_sym_RBRACK, - ACTIONS(4965), 2, - anon_sym_PIPE, + ACTIONS(5589), 1, anon_sym_COMMA, - STATE(2488), 2, + STATE(2487), 3, sym_line_comment, sym_block_comment, - ACTIONS(3721), 3, + aux_sym_where_clause_repeat1, + ACTIONS(5587), 4, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [77582] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_SQUOTE, + [77719] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5569), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5592), 1, anon_sym_SEMI, - STATE(525), 1, + STATE(677), 1, sym_declaration_list, - STATE(2908), 1, + STATE(3176), 1, sym_where_clause, - STATE(2489), 2, + STATE(2488), 2, sym_line_comment, sym_block_comment, - [77611] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77748] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5088), 1, + anon_sym_for, + STATE(2489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(5110), 1, anon_sym_where, - ACTIONS(5120), 1, + [77771] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(5571), 1, - anon_sym_SEMI, - STATE(527), 1, - sym_declaration_list, - STATE(2918), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(180), 1, + sym_closure_parameters, + STATE(1509), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2490), 2, sym_line_comment, sym_block_comment, - [77640] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77800] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5573), 1, + ACTIONS(5594), 1, anon_sym_SEMI, - STATE(529), 1, + STATE(1168), 1, sym_declaration_list, - STATE(2933), 1, + STATE(2920), 1, sym_where_clause, STATE(2491), 2, sym_line_comment, sym_block_comment, - [77669] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77829] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_declaration_list, - STATE(2943), 1, - sym_where_clause, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5181), 1, + anon_sym_for, STATE(2492), 2, sym_line_comment, sym_block_comment, - [77698] = 9, - ACTIONS(19), 1, + ACTIONS(3594), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_PLUS, + anon_sym_where, + [77852] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(213), 1, - sym_closure_parameters, - STATE(427), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_SEMI, + STATE(654), 1, + sym_declaration_list, + STATE(3160), 1, + sym_where_clause, STATE(2493), 2, sym_line_comment, sym_block_comment, - [77727] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77881] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5577), 1, - anon_sym_if, - STATE(3621), 1, - sym_label, - STATE(401), 2, - sym_if_expression, - sym_block, + ACTIONS(5598), 1, + anon_sym_DASH_GT, STATE(2494), 2, sym_line_comment, sym_block_comment, - [77754] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3786), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77902] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3721), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4965), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5566), 2, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5512), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77777] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77927] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5579), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5600), 1, anon_sym_SEMI, - STATE(649), 1, + STATE(517), 1, sym_declaration_list, - STATE(2988), 1, + STATE(3155), 1, sym_where_clause, STATE(2496), 2, sym_line_comment, sym_block_comment, - [77806] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77956] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3793), 1, - anon_sym_COLON, - ACTIONS(5581), 1, - anon_sym_EQ, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(5602), 1, + anon_sym_SEMI, + STATE(1151), 1, + sym_declaration_list, + STATE(2911), 1, + sym_where_clause, STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [77829] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [77985] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5185), 1, + anon_sym_for, STATE(2498), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [77856] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [78008] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5583), 1, + ACTIONS(5604), 1, anon_sym_SEMI, - STATE(732), 1, + STATE(1349), 1, sym_declaration_list, - STATE(3105), 1, + STATE(3015), 1, sym_where_clause, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77885] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78037] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, - anon_sym_for, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5345), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77908] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78062] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(5585), 1, + ACTIONS(5606), 1, anon_sym_SEMI, - STATE(670), 1, + STATE(1351), 1, sym_declaration_list, - STATE(3032), 1, + STATE(3016), 1, sym_where_clause, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77937] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78091] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5124), 1, - anon_sym_for, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, + anon_sym_if, + STATE(3788), 1, + sym_label, + STATE(498), 2, + sym_if_expression, + sym_block, STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77960] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78118] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5126), 1, - anon_sym_for, + ACTIONS(3698), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5042), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5501), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77983] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78141] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5610), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(624), 1, sym_declaration_list, - STATE(3106), 1, + STATE(3171), 1, sym_where_clause, STATE(2504), 2, sym_line_comment, sym_block_comment, - [78012] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78170] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, + ACTIONS(4831), 1, + anon_sym_DOT_DOT, STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [78035] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4829), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78191] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5138), 1, - anon_sym_for, + ACTIONS(1046), 1, + anon_sym_DOT_DOT, STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [78058] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1048), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78212] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(5589), 1, - anon_sym_SEMI, - STATE(1216), 1, - sym_declaration_list, - STATE(2978), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(189), 1, + sym_closure_parameters, + STATE(1509), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2507), 2, sym_line_comment, sym_block_comment, - [78087] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78241] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(5591), 1, - anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, - STATE(2979), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(180), 1, + sym_closure_parameters, + STATE(486), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2508), 2, sym_line_comment, sym_block_comment, - [78116] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78270] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(1222), 1, - sym_declaration_list, - STATE(2981), 1, - sym_where_clause, + ACTIONS(1050), 1, + anon_sym_DOT_DOT, STATE(2509), 2, sym_line_comment, sym_block_comment, - [78145] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1052), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78291] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5595), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5612), 1, anon_sym_SEMI, - STATE(1131), 1, + STATE(523), 1, sym_declaration_list, - STATE(2907), 1, + STATE(3166), 1, sym_where_clause, STATE(2510), 2, sym_line_comment, sym_block_comment, - [78174] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78320] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(1246), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(1054), 1, + anon_sym_DOT_DOT, STATE(2511), 2, sym_line_comment, sym_block_comment, - [78200] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1056), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78341] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5614), 1, + anon_sym_SEMI, + STATE(519), 1, + sym_declaration_list, + STATE(3158), 1, + sym_where_clause, STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78218] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78370] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + STATE(636), 1, + sym_field_declaration_list, + STATE(2696), 1, + sym_type_parameters, + STATE(3373), 1, + sym_where_clause, STATE(2513), 2, sym_line_comment, sym_block_comment, - [78242] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78399] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1903), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(1058), 1, + anon_sym_DOT_DOT, STATE(2514), 2, sym_line_comment, sym_block_comment, - [78268] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1060), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78420] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5601), 1, - anon_sym_STAR_SLASH, - ACTIONS(5603), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5605), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5607), 1, - sym__block_comment_content, - STATE(3251), 1, - sym__block_doc_comment_marker, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5616), 1, + anon_sym_if, + STATE(3724), 1, + sym_label, + STATE(1476), 2, + sym_if_expression, + sym_block, STATE(2515), 2, sym_line_comment, sym_block_comment, - [78294] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78447] = 9, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(5609), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(617), 1, + sym_declaration_list, + STATE(2701), 1, + sym_trait_bounds, + STATE(3210), 1, + sym_where_clause, STATE(2516), 2, sym_line_comment, sym_block_comment, - [78320] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78476] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5544), 1, - anon_sym_GT, - ACTIONS(5546), 1, - anon_sym_COMMA, - STATE(3177), 1, - sym_trait_bounds, - STATE(3184), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4844), 1, + anon_sym_DOT_DOT, STATE(2517), 2, sym_line_comment, sym_block_comment, - [78346] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4842), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78497] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5548), 1, - anon_sym_GT, - ACTIONS(5550), 1, - anon_sym_COMMA, - STATE(2935), 1, - sym_trait_bounds, - STATE(2936), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5105), 1, + anon_sym_for, STATE(2518), 2, sym_line_comment, sym_block_comment, - [78372] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3594), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [78520] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, + STATE(2422), 1, + sym_parameters, STATE(2519), 2, sym_line_comment, sym_block_comment, - [78396] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78546] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1794), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5618), 1, + anon_sym_SEMI, + STATE(674), 1, sym_block, - STATE(3783), 1, + STATE(3784), 1, sym_label, STATE(2520), 2, sym_line_comment, sym_block_comment, - [78422] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78572] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(5620), 1, + anon_sym_SEMI, + ACTIONS(5622), 1, anon_sym_COLON, - STATE(2952), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5628), 1, + anon_sym_else, STATE(2521), 2, sym_line_comment, sym_block_comment, - [78446] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78598] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5617), 1, - anon_sym_SEMI, - STATE(1168), 1, - sym_block, - STATE(3781), 1, - sym_label, - STATE(2522), 2, - sym_line_comment, - sym_block_comment, - [78472] = 8, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5619), 1, - anon_sym_EQ, - STATE(3018), 1, - sym_type_parameters, - STATE(3675), 1, - sym_where_clause, - STATE(2523), 2, + ACTIONS(3974), 1, + anon_sym_PLUS, + ACTIONS(5074), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5630), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [78498] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78620] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2524), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(5621), 5, + ACTIONS(5633), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78516] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78638] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2525), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(5623), 5, + ACTIONS(5635), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78534] = 5, - ACTIONS(105), 1, + [78656] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5637), 1, + anon_sym_RPAREN, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(3124), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2525), 2, + sym_line_comment, + sym_block_comment, + [78680] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78554] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5641), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78698] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78574] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3412), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [78716] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1451), 1, + STATE(1539), 1, sym_block, - STATE(3719), 1, + STATE(3724), 1, sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - [78600] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78742] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78618] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3570), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78760] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5625), 1, - anon_sym_RPAREN, - ACTIONS(5628), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5643), 1, + anon_sym_SEMI, + STATE(588), 1, + sym_block, + STATE(3784), 1, + sym_label, STATE(2530), 2, sym_line_comment, sym_block_comment, - [78642] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78786] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2531), 2, sym_line_comment, sym_block_comment, - [78666] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3740), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78804] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1859), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5645), 1, + anon_sym_SEMI, + STATE(593), 1, sym_block, - STATE(3783), 1, + STATE(3784), 1, sym_label, STATE(2532), 2, sym_line_comment, sym_block_comment, - [78692] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78830] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5633), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2533), 2, sym_line_comment, sym_block_comment, - [78714] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3800), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78848] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5636), 1, - anon_sym_SEMI, - STATE(1212), 1, - sym_block, - STATE(3781), 1, - sym_label, STATE(2534), 2, sym_line_comment, sym_block_comment, - [78740] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3722), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78866] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(5638), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78758] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3758), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78884] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(5640), 5, + ACTIONS(5647), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78776] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78902] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1482), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(5642), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78794] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78928] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5649), 1, + anon_sym_SEMI, + STATE(597), 1, + sym_block, + STATE(3784), 1, + sym_label, STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78812] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78954] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RBRACK, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5651), 1, + anon_sym_STAR_SLASH, + ACTIONS(5653), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5655), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5657), 1, + sym__block_comment_content, + STATE(3435), 1, + sym__block_doc_comment_marker, STATE(2539), 2, sym_line_comment, sym_block_comment, - [78834] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78980] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(5644), 5, + ACTIONS(5659), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [78852] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [78998] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78870] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5661), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79016] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78888] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5663), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79034] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5646), 1, - anon_sym_SEMI, - STATE(764), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5014), 1, + anon_sym_RPAREN, + ACTIONS(5665), 1, + anon_sym_COLON, + ACTIONS(5667), 1, + anon_sym_PIPE, + ACTIONS(5669), 1, + anon_sym_COMMA, + STATE(3096), 1, + aux_sym_closure_parameters_repeat1, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78914] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79060] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, - sym_identifier, + ACTIONS(5673), 1, + anon_sym_COLON_COLON, + ACTIONS(5675), 1, + anon_sym_as, STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(5650), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [78934] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5671), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79082] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5679), 1, + anon_sym_STAR, + STATE(3074), 1, + sym_use_list, + ACTIONS(5677), 2, + sym_identifier, + sym_super, STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(5652), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78952] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79106] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5654), 5, + ACTIONS(5681), 5, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - [78970] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [79124] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_SEMI, - STATE(1266), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5685), 1, + anon_sym_COLON_COLON, + ACTIONS(5687), 1, + anon_sym_as, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78996] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5683), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79146] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(728), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5687), 1, + anon_sym_as, + ACTIONS(5689), 1, + anon_sym_COLON_COLON, STATE(2548), 2, sym_line_comment, sym_block_comment, - [79022] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5683), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79168] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1908), 1, - sym_block, - STATE(3783), 1, - sym_label, STATE(2549), 2, sym_line_comment, sym_block_comment, - [79048] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5660), 1, + ACTIONS(5691), 5, anon_sym_SEMI, - ACTIONS(5662), 1, - anon_sym_COLON, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5666), 1, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(5668), 1, - anon_sym_else, - STATE(2550), 2, - sym_line_comment, - sym_block_comment, - [79074] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_COMMA, + anon_sym_where, + [79186] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2551), 2, + ACTIONS(5687), 1, + anon_sym_as, + ACTIONS(5693), 1, + anon_sym_COLON_COLON, + STATE(2550), 2, sym_line_comment, sym_block_comment, - ACTIONS(5670), 5, + ACTIONS(5683), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [79092] = 4, - ACTIONS(105), 1, + [79208] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5347), 1, + anon_sym_COLON, + ACTIONS(5349), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2551), 2, + sym_line_comment, + sym_block_comment, + [79232] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(5672), 5, + ACTIONS(3582), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [79110] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79250] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5674), 1, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5695), 1, anon_sym_SEMI, - STATE(1297), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5697), 1, + anon_sym_COLON, + ACTIONS(5699), 1, + anon_sym_EQ, + ACTIONS(5701), 1, + anon_sym_else, STATE(2553), 2, sym_line_comment, sym_block_comment, - [79136] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79276] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5703), 1, + sym_identifier, + ACTIONS(5705), 1, anon_sym_GT, + ACTIONS(5707), 1, anon_sym_COMMA, + STATE(3092), 1, + sym_lifetime, STATE(2554), 2, sym_line_comment, sym_block_comment, - [79160] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79302] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3196), 1, anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1473), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(3506), 1, + sym_trait_bounds, + ACTIONS(5709), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2555), 2, sym_line_comment, sym_block_comment, - [79186] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79326] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_SEMI, - STATE(1311), 1, - sym_block, - STATE(3781), 1, - sym_label, STATE(2556), 2, sym_line_comment, sym_block_comment, - [79212] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5711), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79344] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5713), 1, + sym_identifier, + ACTIONS(5715), 1, + anon_sym_GT, + ACTIONS(5717), 1, + anon_sym_COMMA, + STATE(2902), 1, + sym_lifetime, STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79230] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79370] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5678), 1, - anon_sym_SEMI, - STATE(1314), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + STATE(1403), 1, + sym_parameters, + STATE(2041), 1, + sym_type_arguments, STATE(2558), 2, sym_line_comment, sym_block_comment, - [79256] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79396] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(4089), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5055), 2, + ACTIONS(5078), 1, anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5719), 1, + anon_sym_SEMI, + ACTIONS(5721), 1, + anon_sym_COLON, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5725), 1, + anon_sym_else, STATE(2559), 2, sym_line_comment, sym_block_comment, - [79278] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79422] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5232), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5683), 1, + ACTIONS(5727), 1, anon_sym_SEMI, - STATE(1339), 1, + STATE(526), 1, sym_block, - STATE(3781), 1, + STATE(3784), 1, sym_label, STATE(2560), 2, sym_line_comment, sym_block_comment, - [79304] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79448] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(1347), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(3356), 1, + sym_trait_bounds, + ACTIONS(5729), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2561), 2, sym_line_comment, sym_block_comment, - [79330] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79472] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5687), 1, + ACTIONS(5078), 1, + anon_sym_PIPE, + ACTIONS(5731), 1, anon_sym_SEMI, - STATE(594), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5733), 1, + anon_sym_COLON, + ACTIONS(5735), 1, + anon_sym_EQ, + ACTIONS(5737), 1, + anon_sym_else, STATE(2562), 2, sym_line_comment, sym_block_comment, - [79356] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79498] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5689), 1, - anon_sym_SEMI, - STATE(1357), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5349), 1, + anon_sym_COLON_COLON, + ACTIONS(5361), 1, + anon_sym_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2563), 2, sym_line_comment, sym_block_comment, - [79382] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79522] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5691), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5506), 1, + anon_sym_GT, + ACTIONS(5508), 1, + anon_sym_COMMA, + STATE(3093), 1, + sym_trait_bounds, + STATE(3094), 1, + aux_sym_type_arguments_repeat1, STATE(2564), 2, sym_line_comment, sym_block_comment, - [79408] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79548] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5695), 1, - anon_sym_STAR, - STATE(2900), 1, - sym_use_list, - ACTIONS(5693), 2, - sym_identifier, - sym_super, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1950), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2565), 2, sym_line_comment, sym_block_comment, - [79432] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79574] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5697), 1, - anon_sym_SEMI, - STATE(1366), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5569), 1, + anon_sym_GT, + ACTIONS(5571), 1, + anon_sym_COMMA, + STATE(2933), 1, + sym_trait_bounds, + STATE(2934), 1, + aux_sym_type_arguments_repeat1, STATE(2566), 2, sym_line_comment, sym_block_comment, - [79458] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79600] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2102), 1, - sym_parameters, + ACTIONS(5739), 1, + anon_sym_RPAREN, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2567), 2, sym_line_comment, sym_block_comment, - [79484] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79624] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1798), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2568), 2, sym_line_comment, sym_block_comment, - [79510] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79650] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5743), 1, + anon_sym_SEMI, + STATE(1188), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2569), 2, sym_line_comment, sym_block_comment, - [79536] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79676] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, - ACTIONS(5701), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2570), 2, sym_line_comment, sym_block_comment, - [79560] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3600), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79694] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5703), 1, + ACTIONS(5745), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(540), 1, sym_block, - STATE(3778), 1, + STATE(3784), 1, sym_label, STATE(2571), 2, sym_line_comment, sym_block_comment, - [79586] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79720] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, + ACTIONS(1425), 1, anon_sym_RPAREN, - ACTIONS(5707), 1, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(2924), 1, + STATE(2983), 1, aux_sym_parameters_repeat1, - ACTIONS(4667), 2, + ACTIONS(4688), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2572), 2, sym_line_comment, sym_block_comment, - [79610] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79744] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1789), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2573), 2, sym_line_comment, sym_block_comment, - [79634] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79770] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3496), 1, - sym_trait_bounds, - ACTIONS(5709), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_SEMI, + STATE(1233), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2574), 2, sym_line_comment, sym_block_comment, - [79658] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79796] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5751), 1, + anon_sym_SEMI, + STATE(1266), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2575), 2, sym_line_comment, sym_block_comment, - [79682] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79822] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_PLUS, - ACTIONS(5055), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5680), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5753), 1, + anon_sym_SEMI, + STATE(1286), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2576), 2, sym_line_comment, sym_block_comment, - [79704] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79848] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5713), 1, - sym_identifier, - ACTIONS(5715), 1, - anon_sym_GT, - ACTIONS(5717), 1, - anon_sym_COMMA, - STATE(3090), 1, - sym_lifetime, + STATE(1734), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2577), 2, sym_line_comment, sym_block_comment, - [79730] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79874] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5719), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, anon_sym_SEMI, - ACTIONS(5721), 1, - anon_sym_COLON, - ACTIONS(5723), 1, - anon_sym_EQ, - ACTIONS(5725), 1, - anon_sym_else, + STATE(1317), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2578), 2, sym_line_comment, sym_block_comment, - [79756] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79900] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5201), 1, anon_sym_LBRACE, - ACTIONS(5727), 1, + ACTIONS(5757), 1, anon_sym_SEMI, - STATE(576), 1, + STATE(1331), 1, sym_block, - STATE(3778), 1, + STATE(3787), 1, sym_label, STATE(2579), 2, sym_line_comment, sym_block_comment, - [79782] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79926] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5494), 1, - anon_sym_GT, - ACTIONS(5496), 1, - anon_sym_COMMA, - STATE(3066), 1, - sym_trait_bounds, - STATE(3067), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5759), 1, + anon_sym_SEMI, + STATE(1334), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2580), 2, sym_line_comment, sym_block_comment, - [79808] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79952] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5761), 1, + sym_identifier, STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5729), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79826] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5763), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + [79972] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5765), 1, + anon_sym_SEMI, + STATE(1359), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [79846] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [79998] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5767), 1, + anon_sym_SEMI, + STATE(1377), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79864] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80024] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5731), 1, - anon_sym_RPAREN, - ACTIONS(5733), 1, - anon_sym_COLON, - ACTIONS(5735), 1, - anon_sym_COMMA, - STATE(3193), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5769), 1, + anon_sym_SEMI, + STATE(1382), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2584), 2, sym_line_comment, sym_block_comment, - [79890] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80050] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5771), 1, + anon_sym_SEMI, + STATE(1386), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5737), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79908] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80076] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5773), 1, + sym_identifier, + ACTIONS(5775), 1, + anon_sym_GT, + ACTIONS(5777), 1, + anon_sym_COMMA, + STATE(3043), 1, + sym_lifetime, STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79926] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80102] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + STATE(1685), 1, + sym_parameters, + STATE(2041), 1, + sym_type_arguments, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5739), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79944] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80128] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5741), 1, - anon_sym_SEMI, - STATE(784), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5565), 1, + anon_sym_GT, + ACTIONS(5567), 1, + anon_sym_COMMA, + STATE(3047), 1, + sym_trait_bounds, + STATE(3048), 1, + aux_sym_type_arguments_repeat1, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79970] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80154] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_COLON_COLON, - ACTIONS(5747), 1, - anon_sym_as, + ACTIONS(5779), 1, + anon_sym_RPAREN, + ACTIONS(5781), 1, + anon_sym_COMMA, + STATE(3049), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(5743), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [79992] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80178] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - anon_sym_STAR, - STATE(3126), 1, - sym_use_list, - ACTIONS(5749), 2, - sym_identifier, - sym_super, + ACTIONS(5783), 1, + anon_sym_SEMI, + STATE(543), 1, + sym_block, + STATE(3784), 1, + sym_label, STATE(2590), 2, sym_line_comment, sym_block_comment, - [80016] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80204] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2453), 1, - sym_parameters, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5785), 1, + anon_sym_RPAREN, + ACTIONS(5787), 1, + anon_sym_COLON, + ACTIONS(5789), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_slice_pattern_repeat1, STATE(2591), 2, sym_line_comment, sym_block_comment, - [80042] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80230] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1495), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(1431), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2592), 2, sym_line_comment, sym_block_comment, - [80068] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80254] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5753), 1, - anon_sym_SEMI, - STATE(603), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5211), 1, + anon_sym_COLON, + ACTIONS(5525), 1, + anon_sym_GT, + ACTIONS(5527), 1, + anon_sym_COMMA, + STATE(3075), 1, + sym_trait_bounds, + STATE(3076), 1, + aux_sym_type_arguments_repeat1, STATE(2593), 2, sym_line_comment, sym_block_comment, - [80094] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80280] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5755), 1, - anon_sym_SEMI, - ACTIONS(5757), 1, - anon_sym_COLON, - ACTIONS(5759), 1, - anon_sym_EQ, - ACTIONS(5761), 1, - anon_sym_else, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5795), 1, + anon_sym_STAR, + STATE(2896), 1, + sym_use_list, + ACTIONS(5793), 2, + sym_identifier, + sym_super, STATE(2594), 2, sym_line_comment, sym_block_comment, - [80120] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80304] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5765), 1, - anon_sym_COLON_COLON, - ACTIONS(5767), 1, - anon_sym_as, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(3594), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - [80142] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80324] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_as, - ACTIONS(5769), 1, - anon_sym_COLON_COLON, + ACTIONS(4308), 1, + anon_sym_LBRACE, + ACTIONS(5357), 1, + anon_sym_STAR, + STATE(2903), 1, + sym_use_list, + ACTIONS(5355), 2, + sym_identifier, + sym_super, STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [80164] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80348] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3537), 5, + ACTIONS(5797), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [80182] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80366] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_COMMA, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, STATE(2598), 2, sym_line_comment, sym_block_comment, - [80208] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5799), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80384] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1486), 1, + STATE(1556), 1, sym_block, - STATE(3719), 1, + STATE(3724), 1, sym_label, STATE(2599), 2, sym_line_comment, sym_block_comment, - [80234] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80410] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_EQ, - ACTIONS(5190), 1, + ACTIONS(5074), 2, anon_sym_COLON, - STATE(3160), 1, - sym_trait_bounds, - ACTIONS(4821), 2, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_PIPE, STATE(2600), 2, sym_line_comment, sym_block_comment, - [80258] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3974), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [80430] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5777), 1, - sym_identifier, - ACTIONS(5779), 1, - sym_integer_literal, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, - sym_attribute_item, + ACTIONS(1421), 1, + anon_sym_RPAREN, + ACTIONS(5801), 1, + anon_sym_COMMA, + STATE(3056), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2601), 2, sym_line_comment, sym_block_comment, - [80284] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80454] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3986), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5781), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80302] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80474] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3856), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(5783), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80320] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4886), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80494] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2604), 2, sym_line_comment, sym_block_comment, - ACTIONS(5785), 5, + ACTIONS(5803), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [80338] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80512] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, + ACTIONS(5211), 1, anon_sym_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2546), 1, + STATE(3138), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3506), 1, sym_trait_bounds, + ACTIONS(5709), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2605), 2, sym_line_comment, sym_block_comment, - [80364] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80536] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_COLON_COLON, STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, + ACTIONS(5805), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [80386] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_where, + [80554] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5789), 1, - sym_identifier, - ACTIONS(5791), 1, - anon_sym_GT, - ACTIONS(5793), 1, + ACTIONS(5807), 1, + anon_sym_RPAREN, + ACTIONS(5810), 1, anon_sym_COMMA, - STATE(2894), 1, - sym_lifetime, + STATE(3124), 1, + aux_sym_parameters_repeat1, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2607), 2, sym_line_comment, sym_block_comment, - [80412] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80578] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5795), 1, - anon_sym_SEMI, - STATE(662), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5813), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2608), 2, sym_line_comment, sym_block_comment, - [80438] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80600] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5374), 1, - anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1497), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2609), 2, sym_line_comment, sym_block_comment, - [80462] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80626] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(1396), 1, - sym_parameters, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3090), 1, + anon_sym_POUND, + ACTIONS(5816), 1, + sym_identifier, + ACTIONS(5818), 1, + sym_integer_literal, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1122), 1, + sym_attribute_item, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80488] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80652] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5366), 1, - anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2611), 2, sym_line_comment, sym_block_comment, - [80512] = 8, - ACTIONS(105), 1, + ACTIONS(5820), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80670] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5822), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80688] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5797), 1, + ACTIONS(5824), 1, anon_sym_SEMI, - STATE(534), 1, + STATE(776), 1, sym_block, - STATE(3778), 1, + STATE(3784), 1, sym_label, - STATE(2612), 2, - sym_line_comment, - sym_block_comment, - [80538] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3541), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [80556] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80714] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5799), 1, - sym_identifier, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5826), 1, + anon_sym_SEMI, + STATE(735), 1, + sym_block, + STATE(3784), 1, + sym_label, STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5801), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [80576] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80740] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5803), 1, + ACTIONS(5813), 1, + anon_sym_RBRACK, + ACTIONS(3594), 2, anon_sym_SEMI, - ACTIONS(5805), 1, - anon_sym_COLON, - ACTIONS(5807), 1, - anon_sym_EQ, - ACTIONS(5809), 1, - anon_sym_else, + anon_sym_PLUS, + ACTIONS(4688), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80602] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80762] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5811), 1, - anon_sym_SEMI, - STATE(584), 1, - sym_block, - STATE(3778), 1, - sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80628] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(3586), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [80780] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5813), 1, + ACTIONS(4835), 1, anon_sym_EQ, - STATE(3182), 1, - sym_type_parameters, - STATE(3759), 1, - sym_where_clause, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(3098), 1, + sym_trait_bounds, + ACTIONS(4837), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80654] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80804] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5205), 1, anon_sym_LBRACE, - ACTIONS(5815), 1, + ACTIONS(5828), 1, anon_sym_SEMI, - STATE(548), 1, + STATE(569), 1, sym_block, - STATE(3778), 1, + STATE(3784), 1, sym_label, STATE(2618), 2, sym_line_comment, sym_block_comment, - [80680] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80830] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 2, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + ACTIONS(4833), 1, anon_sym_COLON, - anon_sym_PIPE, + STATE(2041), 1, + sym_type_arguments, + STATE(2612), 1, + sym_trait_bounds, STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4089), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [80700] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80856] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5817), 1, + ACTIONS(5830), 1, sym_identifier, - ACTIONS(5819), 1, - anon_sym_GT, - ACTIONS(5821), 1, - anon_sym_COMMA, - STATE(3035), 1, - sym_lifetime, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80726] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5832), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + [80876] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1537), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5630), 1, + anon_sym_RBRACK, + ACTIONS(3974), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5074), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80749] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80898] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(759), 1, - sym_declaration_list, - STATE(3424), 1, - sym_where_clause, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80772] = 7, - ACTIONS(19), 1, + ACTIONS(5587), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80916] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(409), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5834), 1, + anon_sym_EQ, + STATE(3192), 1, + sym_type_parameters, + STATE(3765), 1, + sym_where_clause, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80795] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80942] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5823), 1, - anon_sym_LPAREN, - ACTIONS(5825), 1, - anon_sym_LBRACK, - ACTIONS(5827), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5205), 1, anon_sym_LBRACE, - STATE(2653), 1, - sym_token_tree, + ACTIONS(5836), 1, + anon_sym_SEMI, + STATE(577), 1, + sym_block, + STATE(3784), 1, + sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80818] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80968] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_LT, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5838), 1, + anon_sym_EQ, + STATE(2999), 1, + sym_type_parameters, + STATE(3776), 1, + sym_where_clause, STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80837] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [80994] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1546), 1, + ACTIONS(5205), 1, + anon_sym_LBRACE, + ACTIONS(5840), 1, + anon_sym_SEMI, + STATE(652), 1, sym_block, - STATE(3719), 1, + STATE(3784), 1, sym_label, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80860] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81020] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - STATE(3626), 1, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(4714), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, + STATE(2112), 1, + sym_parameters, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80881] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81046] = 8, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5833), 1, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5842), 1, anon_sym_SEMI, - STATE(3634), 1, - sym_where_clause, + STATE(1367), 1, + sym_block, + STATE(3787), 1, + sym_label, STATE(2628), 2, sym_line_comment, sym_block_comment, - [80904] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81072] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1862), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2629), 2, sym_line_comment, sym_block_comment, - [80925] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81095] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3530), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80948] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81118] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_COLON_COLON, + ACTIONS(5844), 1, + anon_sym_LPAREN, + ACTIONS(5846), 1, + anon_sym_LBRACK, + ACTIONS(5848), 1, + anon_sym_LBRACE, + STATE(416), 1, + sym_delim_token_tree, STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80967] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81141] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - STATE(629), 1, - sym_field_declaration_list, - STATE(3273), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1456), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80990] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81164] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(5850), 1, + sym_identifier, + STATE(1502), 1, + sym_type_arguments, STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81009] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81187] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5349), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(988), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81026] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81208] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + STATE(710), 1, + sym_declaration_list, + STATE(3376), 1, + sym_where_clause, STATE(2635), 2, sym_line_comment, sym_block_comment, - [81049] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81231] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5731), 1, - anon_sym_RPAREN, - ACTIONS(5735), 1, - anon_sym_COMMA, - STATE(3193), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3652), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2636), 2, sym_line_comment, sym_block_comment, - [81072] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81254] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(414), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + STATE(3633), 1, + sym_type_arguments, + ACTIONS(5852), 2, + sym_identifier, + sym_super, STATE(2637), 2, sym_line_comment, sym_block_comment, - [81095] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81275] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(494), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + STATE(3716), 1, + sym_type_arguments, + ACTIONS(5852), 2, + sym_identifier, + sym_super, STATE(2638), 2, sym_line_comment, sym_block_comment, - [81118] = 7, - ACTIONS(105), 1, + [81296] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(482), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5854), 1, + aux_sym_token_repetition_pattern_token1, STATE(2639), 2, sym_line_comment, sym_block_comment, - [81141] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5856), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81315] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, - anon_sym_DQUOTE, - STATE(2655), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5858), 1, + anon_sym_RPAREN, + ACTIONS(5860), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_slice_pattern_repeat1, STATE(2640), 2, sym_line_comment, sym_block_comment, - [81162] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81338] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, - anon_sym_COLON_COLON, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5862), 1, + anon_sym_RPAREN, + ACTIONS(5864), 1, + anon_sym_COMMA, + STATE(2938), 1, + aux_sym_slice_pattern_repeat1, STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81181] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81361] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - STATE(3016), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5866), 1, + anon_sym_RPAREN, + ACTIONS(5868), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2642), 2, sym_line_comment, sym_block_comment, - [81204] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81384] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5849), 1, - anon_sym_async, - ACTIONS(5851), 1, - anon_sym_move, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5739), 1, + anon_sym_RPAREN, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_parameters_repeat1, STATE(2643), 2, sym_line_comment, sym_block_comment, - [81227] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81407] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1728), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5870), 1, + anon_sym_in, STATE(2644), 2, sym_line_comment, sym_block_comment, - [81250] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5872), 3, + sym_self, + sym_super, + sym_crate, + [81426] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_RPAREN, - ACTIONS(5855), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5874), 1, + anon_sym_SEMI, + STATE(3754), 1, + sym_where_clause, STATE(2645), 2, sym_line_comment, sym_block_comment, - [81273] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81449] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5857), 1, - anon_sym_RPAREN, - ACTIONS(5859), 1, - anon_sym_COMMA, - STATE(3026), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(3729), 1, + sym_where_clause, STATE(2646), 2, sym_line_comment, sym_block_comment, - [81296] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81472] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5878), 1, + anon_sym_SEMI, + STATE(3733), 1, + sym_where_clause, STATE(2647), 2, sym_line_comment, sym_block_comment, - [81319] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81495] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5861), 1, - anon_sym_in, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(3356), 1, + sym_trait_bounds, + ACTIONS(5729), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(5863), 3, - sym_self, - sym_super, - sym_crate, - [81338] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81516] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_declaration_list, - STATE(3369), 1, - sym_where_clause, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5880), 1, + anon_sym_SEMI, + ACTIONS(5882), 1, + anon_sym_EQ, + ACTIONS(5884), 1, + anon_sym_else, STATE(2649), 2, sym_line_comment, sym_block_comment, - [81361] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81539] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, - anon_sym_LPAREN, - ACTIONS(5867), 1, - anon_sym_LBRACK, - ACTIONS(5869), 1, - anon_sym_LBRACE, - STATE(2046), 1, - sym_delim_token_tree, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5888), 1, + sym_super, + STATE(2136), 1, + sym_type_arguments, STATE(2650), 2, sym_line_comment, sym_block_comment, - [81384] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81562] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(497), 1, - sym_block, - STATE(3782), 1, - sym_label, + STATE(1204), 1, + sym_declaration_list, + STATE(3220), 1, + sym_where_clause, STATE(2651), 2, sym_line_comment, sym_block_comment, - [81407] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81585] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(463), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5890), 1, + anon_sym_SEMI, + STATE(3746), 1, + sym_where_clause, STATE(2652), 2, sym_line_comment, sym_block_comment, - [81430] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81608] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1215), 1, + sym_declaration_list, + STATE(3234), 1, + sym_where_clause, STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(5871), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81447] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81631] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(477), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + STATE(535), 1, + sym_declaration_list, + STATE(3470), 1, + sym_where_clause, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81470] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81654] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5873), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1220), 1, + sym_enum_variant_list, + STATE(3243), 1, + sym_where_clause, STATE(2655), 2, sym_line_comment, sym_block_comment, - [81491] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81677] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, - anon_sym_LPAREN, - ACTIONS(5867), 1, - anon_sym_LBRACK, - ACTIONS(5869), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(2049), 1, - sym_delim_token_tree, + STATE(1226), 1, + sym_field_declaration_list, + STATE(3246), 1, + sym_where_clause, STATE(2656), 2, sym_line_comment, sym_block_comment, - [81514] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81700] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, - STATE(1628), 1, - sym_type_arguments, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5785), 1, + anon_sym_RPAREN, + ACTIONS(5789), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_slice_pattern_repeat1, STATE(2657), 2, sym_line_comment, sym_block_comment, - [81537] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81723] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, - STATE(1631), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1489), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81560] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81746] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LT2, - STATE(2526), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1514), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81583] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81769] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LT2, - STATE(2527), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1491), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2660), 2, sym_line_comment, sym_block_comment, - [81606] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81792] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5883), 1, - anon_sym_RPAREN, - ACTIONS(5885), 1, - anon_sym_COMMA, - STATE(3031), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_enum_variant_list, + STATE(3481), 1, + sym_where_clause, STATE(2661), 2, sym_line_comment, sym_block_comment, - [81629] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81815] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5837), 2, - sym_identifier, - sym_super, + ACTIONS(5892), 1, + anon_sym_DQUOTE, + STATE(2798), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2662), 2, sym_line_comment, sym_block_comment, - [81650] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81836] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, - STATE(2663), 2, - sym_line_comment, - sym_block_comment, - [81673] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5887), 1, + ACTIONS(1425), 1, anon_sym_RPAREN, - ACTIONS(5889), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(2937), 1, - aux_sym_slice_pattern_repeat1, - STATE(2664), 2, + STATE(2983), 1, + aux_sym_parameters_repeat1, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [81696] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81859] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(1664), 1, - sym_parameters, - STATE(2026), 1, - sym_type_arguments, - STATE(2665), 2, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(5898), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [81719] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81882] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, sym_identifier, - STATE(3735), 1, - sym_type_arguments, - STATE(2666), 2, + ACTIONS(5900), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [81742] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81905] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5891), 1, + ACTIONS(5902), 1, anon_sym_SEMI, - STATE(3549), 1, + STATE(3767), 1, sym_where_clause, - STATE(2667), 2, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [81765] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81928] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(1639), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(475), 1, + STATE(2242), 1, sym_block, - STATE(3782), 1, + STATE(3780), 1, sym_label, - STATE(2668), 2, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [81788] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [81951] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(5665), 1, + anon_sym_COLON, + ACTIONS(5667), 1, anon_sym_PIPE, - ACTIONS(5893), 1, - anon_sym_RPAREN, - ACTIONS(5895), 1, + ACTIONS(5669), 1, anon_sym_COMMA, - STATE(3119), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2669), 2, + STATE(3096), 1, + aux_sym_closure_parameters_repeat1, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [81811] = 7, - ACTIONS(105), 1, + [81974] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(5904), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5906), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81993] = 7, + ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(5897), 1, - anon_sym_RPAREN, - ACTIONS(5899), 1, - anon_sym_COMMA, - STATE(2939), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5908), 1, + anon_sym_async, + ACTIONS(5910), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, STATE(2670), 2, sym_line_comment, sym_block_comment, - [81834] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82016] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(421), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(5914), 1, + anon_sym_EQ, + ACTIONS(5916), 1, + anon_sym_else, STATE(2671), 2, sym_line_comment, sym_block_comment, - [81857] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82039] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81880] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1030), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [82056] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(5699), 1, - anon_sym_RPAREN, - ACTIONS(5701), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5918), 1, + anon_sym_SEMI, + STATE(3720), 1, + sym_where_clause, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81903] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82079] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5903), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5920), 1, + anon_sym_SEMI, + STATE(3735), 1, + sym_where_clause, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81926] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82102] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_declaration_list, + STATE(3349), 1, + sym_where_clause, STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(5905), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81945] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82125] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5907), 1, - anon_sym_SEMI, - ACTIONS(5909), 1, - anon_sym_EQ, - ACTIONS(5911), 1, - anon_sym_else, + ACTIONS(5922), 1, + anon_sym_async, + ACTIONS(5924), 1, + anon_sym_move, + STATE(188), 1, + sym_closure_parameters, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81968] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82148] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5913), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5926), 1, + anon_sym_SEMI, + STATE(3796), 1, + sym_where_clause, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81991] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82171] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, - anon_sym_COLON_COLON, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1275), 1, + sym_declaration_list, + STATE(3359), 1, + sym_where_clause, STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82010] = 5, - ACTIONS(3), 1, + [82194] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5928), 1, + anon_sym_COLON_COLON, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(5917), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82029] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4974), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82213] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3106), 1, anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(5930), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2680), 2, sym_line_comment, sym_block_comment, - [82052] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82236] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3496), 1, - sym_trait_bounds, - ACTIONS(5709), 2, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(5932), 1, anon_sym_GT, - anon_sym_COMMA, + STATE(3296), 1, + sym_lifetime, STATE(2681), 2, sym_line_comment, sym_block_comment, - [82073] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82259] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, + ACTIONS(5934), 1, + anon_sym_COLON_COLON, STATE(2682), 2, sym_line_comment, sym_block_comment, - [82096] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82278] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5711), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, + ACTIONS(5936), 1, + anon_sym_COLON_COLON, STATE(2683), 2, sym_line_comment, sym_block_comment, - [82119] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82297] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5919), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + STATE(484), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2684), 2, sym_line_comment, sym_block_comment, - [82142] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82320] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, STATE(2685), 2, sym_line_comment, sym_block_comment, - [82165] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82339] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1510), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + STATE(509), 1, + sym_declaration_list, + STATE(3412), 1, + sym_where_clause, STATE(2686), 2, sym_line_comment, sym_block_comment, - [82188] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82362] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5923), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5940), 1, + anon_sym_SEMI, + STATE(3562), 1, + sym_where_clause, STATE(2687), 2, sym_line_comment, sym_block_comment, - [82211] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82385] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5925), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + STATE(616), 1, + sym_declaration_list, + STATE(3204), 1, + sym_where_clause, STATE(2688), 2, sym_line_comment, sym_block_comment, - [82234] = 5, - ACTIONS(3), 1, + [82408] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5927), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3196), 1, + anon_sym_PLUS, STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(5929), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82253] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5942), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [82427] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1727), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, + anon_sym_COMMA, + STATE(3002), 1, + aux_sym_slice_pattern_repeat1, STATE(2690), 2, sym_line_comment, sym_block_comment, - [82276] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82450] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1729), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5948), 1, + anon_sym_SEMI, + STATE(3594), 1, + sym_where_clause, STATE(2691), 2, sym_line_comment, sym_block_comment, - [82299] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82473] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5931), 1, - anon_sym_DQUOTE, - STATE(2702), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5950), 1, + anon_sym_SEMI, + STATE(3596), 1, + sym_where_clause, STATE(2692), 2, sym_line_comment, sym_block_comment, - [82320] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82496] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3553), 1, - sym_block, - STATE(3719), 1, - sym_label, + STATE(1326), 1, + sym_declaration_list, + STATE(3411), 1, + sym_where_clause, STATE(2693), 2, sym_line_comment, sym_block_comment, - [82343] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82519] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(481), 1, + STATE(1490), 1, sym_block, - STATE(3782), 1, + STATE(3724), 1, sym_label, STATE(2694), 2, sym_line_comment, sym_block_comment, - [82366] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82542] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - ACTIONS(5933), 1, - anon_sym_async, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5952), 1, + anon_sym_RPAREN, + ACTIONS(5954), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2695), 2, sym_line_comment, sym_block_comment, - [82389] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82565] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + STATE(722), 1, + sym_field_declaration_list, + STATE(3423), 1, + sym_where_clause, STATE(2696), 2, sym_line_comment, sym_block_comment, - [82410] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82588] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(3554), 1, + STATE(425), 1, sym_block, - STATE(3719), 1, + STATE(3679), 1, sym_label, STATE(2697), 2, sym_line_comment, sym_block_comment, - [82433] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82611] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_LPAREN, - ACTIONS(5937), 1, - anon_sym_LBRACK, - ACTIONS(5939), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym_delim_token_tree, + ACTIONS(4860), 1, + anon_sym_DOT_DOT, + ACTIONS(5956), 1, + anon_sym_COLON_COLON, + ACTIONS(4862), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82456] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82632] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1738), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(3188), 1, + anon_sym_PLUS, STATE(2699), 2, sym_line_comment, sym_block_comment, - [82479] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5958), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [82651] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1650), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + STATE(770), 1, + sym_declaration_list, + STATE(3307), 1, + sym_where_clause, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82502] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82674] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1740), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5137), 1, + anon_sym_where, + STATE(698), 1, + sym_declaration_list, + STATE(3264), 1, + sym_where_clause, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82525] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82697] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5960), 1, + anon_sym_SEMI, + STATE(3618), 1, + sym_where_clause, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82546] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82720] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_LPAREN, - ACTIONS(5937), 1, - anon_sym_LBRACK, - ACTIONS(5939), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_delim_token_tree, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5962), 1, + anon_sym_SEMI, + ACTIONS(5964), 1, + anon_sym_EQ, + ACTIONS(5966), 1, + anon_sym_else, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82569] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82743] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5943), 1, - sym_identifier, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5968), 1, + anon_sym_SEMI, + STATE(3818), 1, + sym_where_clause, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82592] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82766] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5837), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(5943), 1, + ACTIONS(5970), 1, sym_identifier, - STATE(2132), 1, + STATE(3633), 1, sym_type_arguments, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82615] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82789] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(408), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2706), 2, sym_line_comment, sym_block_comment, - [82638] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82812] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(3460), 1, anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3735), 1, + ACTIONS(3764), 1, + anon_sym_COLON_COLON, + ACTIONS(5058), 1, + anon_sym_BANG, + STATE(1422), 1, sym_type_arguments, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82661] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82835] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2303), 1, + sym_parameters, + STATE(3369), 1, + sym_type_parameters, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82682] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82858] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5947), 1, - sym_identifier, - STATE(1505), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5637), 1, + anon_sym_RPAREN, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(3124), 1, + aux_sym_parameters_repeat1, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82705] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82881] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1757), 1, + STATE(483), 1, sym_block, - STATE(3783), 1, + STATE(3788), 1, sym_label, STATE(2710), 2, sym_line_comment, sym_block_comment, - [82728] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82904] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1533), 1, + STATE(485), 1, sym_block, - STATE(3719), 1, + STATE(3788), 1, sym_label, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82751] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82927] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5949), 1, - anon_sym_async, - ACTIONS(5951), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(5972), 1, + anon_sym_DQUOTE, + STATE(2723), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2712), 2, sym_line_comment, sym_block_comment, - [82774] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82948] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5953), 1, - anon_sym_SEMI, - ACTIONS(5955), 1, - anon_sym_EQ, - ACTIONS(5957), 1, - anon_sym_else, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82797] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82967] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1535), 1, + ACTIONS(5201), 1, + anon_sym_LBRACE, + STATE(2923), 1, sym_block, - STATE(3719), 1, + STATE(3787), 1, sym_label, STATE(2714), 2, sym_line_comment, sym_block_comment, - [82820] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [82990] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5959), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5976), 1, + anon_sym_async, + ACTIONS(5978), 1, + anon_sym_move, + STATE(199), 1, + sym_closure_parameters, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82839] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83013] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5707), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, - STATE(2716), 2, - sym_line_comment, - sym_block_comment, - [82862] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1765), 1, + STATE(1825), 1, sym_block, - STATE(3783), 1, + STATE(3789), 1, sym_label, - STATE(2717), 2, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [82885] = 6, - ACTIONS(105), 1, + [83036] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, + ACTIONS(4994), 1, + anon_sym_BANG, + STATE(1670), 1, + sym_type_arguments, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + [83059] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_DQUOTE, - STATE(2784), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5980), 1, + anon_sym_LPAREN, + ACTIONS(5982), 1, + anon_sym_LBRACK, + ACTIONS(5984), 1, + anon_sym_LBRACE, + STATE(2046), 1, + sym_delim_token_tree, STATE(2718), 2, sym_line_comment, sym_block_comment, - [82906] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83082] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82929] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83105] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(469), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82948] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83128] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5965), 1, - anon_sym_DQUOTE, - STATE(2727), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, - STATE(2721), 2, - sym_line_comment, - sym_block_comment, - [82969] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_PIPE, - ACTIONS(5967), 1, - anon_sym_RBRACK, - ACTIONS(5969), 1, + ACTIONS(5986), 1, + anon_sym_RPAREN, + ACTIONS(5988), 1, anon_sym_COMMA, - STATE(3129), 1, + STATE(3111), 1, aux_sym_slice_pattern_repeat1, - STATE(2722), 2, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [82992] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83151] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(1263), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1771), 1, + STATE(489), 1, sym_block, - STATE(3783), 1, + STATE(3788), 1, sym_label, - STATE(2723), 2, + STATE(2722), 2, sym_line_comment, sym_block_comment, - [83015] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83174] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5971), 1, - anon_sym_async, - ACTIONS(5973), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(2724), 2, - sym_line_comment, - sym_block_comment, - [83038] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, + ACTIONS(5990), 1, anon_sym_DQUOTE, - ACTIONS(5977), 2, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, sym_string_content, sym_escape_sequence, - STATE(2725), 3, + STATE(2723), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83057] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83195] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, ACTIONS(5980), 1, anon_sym_LPAREN, @@ -185853,19900 +187434,20062 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(5984), 1, anon_sym_LBRACE, - STATE(1777), 1, + STATE(2053), 1, sym_delim_token_tree, - STATE(2726), 2, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [83080] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83218] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5986), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, - STATE(2727), 2, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(5992), 1, + sym_identifier, + ACTIONS(5994), 1, + sym_super, + STATE(1643), 1, + sym_type_arguments, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [83101] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83241] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5980), 1, - anon_sym_LPAREN, - ACTIONS(5982), 1, - anon_sym_LBRACK, - ACTIONS(5984), 1, - anon_sym_LBRACE, - STATE(1779), 1, - sym_delim_token_tree, - STATE(2728), 2, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(5992), 1, + sym_identifier, + ACTIONS(5994), 1, + sym_super, + STATE(1645), 1, + sym_type_arguments, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [83124] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83264] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, + ACTIONS(5852), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(5996), 1, sym_identifier, - STATE(2133), 1, + ACTIONS(5998), 1, + anon_sym_LT2, + STATE(2602), 1, sym_type_arguments, - STATE(2729), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [83147] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83287] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, + ACTIONS(5852), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(5996), 1, sym_identifier, - STATE(2132), 1, + ACTIONS(5998), 1, + anon_sym_LT2, + STATE(2603), 1, sym_type_arguments, - STATE(2730), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [83170] = 7, - ACTIONS(105), 1, + [83310] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6000), 1, + anon_sym_RPAREN, + ACTIONS(6002), 1, + anon_sym_COMMA, + STATE(3040), 1, + aux_sym_tuple_type_repeat1, + STATE(2729), 2, + sym_line_comment, + sym_block_comment, + [83333] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, - STATE(2731), 2, + ACTIONS(4688), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [83193] = 7, - ACTIONS(105), 1, + [83352] = 6, + ACTIONS(103), 1, + aux_sym_string_literal_token1, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2310), 1, + sym_string_literal, + ACTIONS(4938), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(2731), 2, + sym_line_comment, + sym_block_comment, + [83373] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5355), 1, sym_super, - ACTIONS(5945), 1, + ACTIONS(5886), 1, sym_identifier, - STATE(3735), 1, + STATE(3633), 1, sym_type_arguments, STATE(2732), 2, sym_line_comment, sym_block_comment, - [83216] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83396] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5990), 1, - anon_sym_SEMI, - STATE(3713), 1, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(600), 1, + sym_enum_variant_list, + STATE(3484), 1, sym_where_clause, STATE(2733), 2, sym_line_comment, sym_block_comment, - [83239] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83419] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1622), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(2218), 1, - sym_block, - STATE(3774), 1, - sym_label, + ACTIONS(4192), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_LT2, + STATE(1686), 1, + sym_parameters, + STATE(2034), 1, + sym_type_arguments, STATE(2734), 2, sym_line_comment, sym_block_comment, - [83262] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83442] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5992), 1, - anon_sym_SEMI, - STATE(3714), 1, - sym_where_clause, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(5886), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, STATE(2735), 2, sym_line_comment, sym_block_comment, - [83285] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83465] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5994), 1, - anon_sym_DQUOTE, - STATE(2738), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(407), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2736), 2, sym_line_comment, sym_block_comment, - [83306] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83488] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5996), 1, - anon_sym_async, - ACTIONS(5998), 1, - anon_sym_move, - STATE(211), 1, - sym_closure_parameters, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(492), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2737), 2, sym_line_comment, sym_block_comment, - [83329] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83511] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6000), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4950), 1, + anon_sym_for, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, STATE(2738), 2, sym_line_comment, sym_block_comment, - [83350] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83534] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, - anon_sym_DQUOTE, - STATE(2838), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5365), 1, + anon_sym_LPAREN, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_LBRACE, + STATE(1510), 1, + sym_delim_token_tree, STATE(2739), 2, sym_line_comment, sym_block_comment, - [83371] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83557] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5779), 1, + anon_sym_RPAREN, + ACTIONS(5781), 1, + anon_sym_COMMA, + STATE(3049), 1, + aux_sym_parameters_repeat1, STATE(2740), 2, sym_line_comment, sym_block_comment, - [83394] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83580] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6008), 1, + anon_sym_RPAREN, + ACTIONS(6010), 1, + anon_sym_COMMA, + STATE(2984), 1, + aux_sym_tuple_pattern_repeat1, STATE(2741), 2, sym_line_comment, sym_block_comment, - [83417] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83603] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6006), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5133), 1, + anon_sym_LBRACE, + ACTIONS(5137), 1, + anon_sym_where, + STATE(622), 1, + sym_field_declaration_list, + STATE(3346), 1, + sym_where_clause, STATE(2742), 2, sym_line_comment, sym_block_comment, - [83440] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83626] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6008), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + STATE(495), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2743), 2, sym_line_comment, sym_block_comment, - [83463] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83649] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(493), 1, + STATE(1512), 1, sym_block, - STATE(3782), 1, + STATE(3724), 1, sym_label, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83486] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83672] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1431), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83509] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83695] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(6012), 1, + anon_sym_LPAREN, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6016), 1, + anon_sym_LBRACE, + STATE(2771), 1, + sym_token_tree, STATE(2746), 2, sym_line_comment, sym_block_comment, - [83532] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83718] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3735), 1, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + ACTIONS(6018), 1, + anon_sym_for, + STATE(2041), 1, sym_type_arguments, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83555] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83741] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_LPAREN, - ACTIONS(6014), 1, - anon_sym_LBRACK, - ACTIONS(6016), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_delim_token_tree, + ACTIONS(1431), 1, + anon_sym_RPAREN, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5791), 1, + anon_sym_COMMA, + STATE(3058), 1, + aux_sym_parameters_repeat1, STATE(2748), 2, sym_line_comment, sym_block_comment, - [83578] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83764] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, - STATE(3342), 1, - sym_where_clause, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(6020), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83601] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83787] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5837), 2, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, sym_identifier, - sym_super, + ACTIONS(6022), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83622] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83810] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6018), 1, - anon_sym_RPAREN, - ACTIONS(6020), 1, - anon_sym_COMMA, - STATE(3130), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(6024), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83645] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83833] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(6022), 1, - anon_sym_COLON_COLON, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(6026), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83666] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83856] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - STATE(714), 1, - sym_field_declaration_list, - STATE(3370), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1824), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83689] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83879] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1826), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(6024), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [83708] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83902] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6026), 1, - anon_sym_SEMI, - STATE(3812), 1, - sym_where_clause, + ACTIONS(6028), 1, + anon_sym_DQUOTE, + STATE(2762), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83731] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83923] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1263), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(496), 1, + sym_block, + STATE(3788), 1, + sym_label, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83752] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83946] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2338), 1, - sym_parameters, - STATE(3449), 1, - sym_type_parameters, + ACTIONS(5152), 1, + anon_sym_move, + ACTIONS(6030), 1, + anon_sym_async, + STATE(207), 1, + sym_closure_parameters, STATE(2757), 2, sym_line_comment, sym_block_comment, - [83775] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83969] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(6032), 1, + anon_sym_LPAREN, + ACTIONS(6034), 1, + anon_sym_LBRACK, + ACTIONS(6036), 1, anon_sym_LBRACE, - STATE(1255), 1, - sym_declaration_list, - STATE(3358), 1, - sym_where_clause, + STATE(1086), 1, + sym_delim_token_tree, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83798] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [83992] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2307), 1, - sym_parameters, - STATE(3364), 1, - sym_type_parameters, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1833), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83821] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84015] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1651), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83840] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84038] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_EQ, - ACTIONS(6034), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1836), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83861] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84061] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(6038), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83880] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84082] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6032), 1, + anon_sym_LPAREN, + ACTIONS(6034), 1, + anon_sym_LBRACK, ACTIONS(6036), 1, anon_sym_LBRACE, - ACTIONS(6038), 1, - anon_sym_for, - ACTIONS(6040), 1, - anon_sym_loop, - ACTIONS(6042), 1, - anon_sym_while, + STATE(1073), 1, + sym_delim_token_tree, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83903] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84105] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(5029), 1, - anon_sym_BANG, - STATE(1428), 1, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6040), 1, + sym_identifier, + STATE(2136), 1, sym_type_arguments, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83926] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84128] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_COLON, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6040), 1, + sym_identifier, + STATE(2138), 1, + sym_type_arguments, STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83945] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84151] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6046), 1, - anon_sym_COMMA, - ACTIONS(4357), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2766), 3, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6042), 1, + sym_identifier, + STATE(3633), 1, + sym_type_arguments, + STATE(2766), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [83964] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84174] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_COMMA, - ACTIONS(6024), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2767), 3, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6042), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, + STATE(2767), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83983] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84197] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_COLON_COLON, + ACTIONS(417), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1855), 1, + sym_block, + STATE(3789), 1, + sym_label, STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84002] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84220] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2454), 1, - sym_parameters, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6044), 1, + anon_sym_SEMI, + STATE(3602), 1, + sym_where_clause, STATE(2769), 2, sym_line_comment, sym_block_comment, - [84025] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84243] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6052), 1, - anon_sym_SEMI, - ACTIONS(6054), 1, - anon_sym_EQ, - ACTIONS(6056), 1, - anon_sym_else, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(403), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2770), 2, sym_line_comment, sym_block_comment, - [84048] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84266] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(1475), 1, - sym_delim_token_tree, STATE(2771), 2, sym_line_comment, sym_block_comment, - [84071] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6046), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [84283] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3719), 1, - sym_label, - STATE(3758), 1, - sym_block, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6048), 1, + anon_sym_RPAREN, + ACTIONS(6050), 1, + anon_sym_COMMA, + STATE(3145), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2772), 2, sym_line_comment, sym_block_comment, - [84094] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84306] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6052), 1, + anon_sym_EQ, + ACTIONS(6054), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2773), 2, sym_line_comment, sym_block_comment, - [84117] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84327] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(417), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(1500), 1, + STATE(1869), 1, sym_block, - STATE(3719), 1, + STATE(3789), 1, sym_label, STATE(2774), 2, sym_line_comment, sym_block_comment, - [84140] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84350] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1427), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(6056), 1, + anon_sym_async, + ACTIONS(6058), 1, + anon_sym_move, + STATE(214), 1, + sym_closure_parameters, STATE(2775), 2, sym_line_comment, sym_block_comment, - [84163] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84373] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(3528), 1, + STATE(3684), 1, sym_block, - STATE(3719), 1, + STATE(3724), 1, sym_label, STATE(2776), 2, sym_line_comment, sym_block_comment, - [84186] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84396] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(6060), 1, + anon_sym_LPAREN, + ACTIONS(6062), 1, + anon_sym_LBRACK, + ACTIONS(6064), 1, + anon_sym_LBRACE, + STATE(1874), 1, + sym_delim_token_tree, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84205] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84419] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_declaration_list, - STATE(3213), 1, - sym_where_clause, + ACTIONS(6066), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2778), 2, sym_line_comment, sym_block_comment, - [84228] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84440] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6060), 1, + anon_sym_LPAREN, + ACTIONS(6062), 1, + anon_sym_LBRACK, + ACTIONS(6064), 1, + anon_sym_LBRACE, + STATE(1876), 1, + sym_delim_token_tree, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [84245] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84463] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2310), 1, - sym_parameters, - STATE(3387), 1, - sym_type_parameters, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6068), 1, + sym_identifier, + STATE(2136), 1, + sym_type_arguments, STATE(2780), 2, sym_line_comment, sym_block_comment, - [84268] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84486] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6058), 1, - anon_sym_SEMI, - STATE(3551), 1, - sym_where_clause, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6068), 1, + sym_identifier, + STATE(2138), 1, + sym_type_arguments, STATE(2781), 2, sym_line_comment, sym_block_comment, - [84291] = 5, - ACTIONS(3), 1, + [84509] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6060), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6042), 1, + sym_identifier, + STATE(3633), 1, + sym_type_arguments, STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(6062), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84310] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84532] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1509), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6042), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, STATE(2783), 2, sym_line_comment, sym_block_comment, - [84333] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84555] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6064), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1446), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2784), 2, sym_line_comment, sym_block_comment, - [84354] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84578] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym_delim_token_tree, + ACTIONS(5624), 1, + anon_sym_PIPE, STATE(2785), 2, sym_line_comment, sym_block_comment, - [84377] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6070), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [84597] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3106), 1, anon_sym_SQUOTE, - STATE(3647), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(6072), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2786), 2, sym_line_comment, sym_block_comment, - [84400] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84620] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6066), 1, - anon_sym_SEMI, - STATE(3525), 1, - sym_where_clause, + ACTIONS(6074), 1, + anon_sym_DQUOTE, + STATE(2789), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2787), 2, sym_line_comment, sym_block_comment, - [84423] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84641] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3709), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2788), 2, + ACTIONS(6076), 1, + anon_sym_COMMA, + ACTIONS(6070), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2788), 3, sym_line_comment, sym_block_comment, - [84446] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_slice_pattern_repeat1, + [84660] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6068), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(6079), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2789), 2, sym_line_comment, sym_block_comment, - [84469] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84681] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(6070), 1, + ACTIONS(6081), 1, sym_identifier, - STATE(1633), 1, + STATE(3633), 1, sym_type_arguments, STATE(2790), 2, sym_line_comment, sym_block_comment, - [84492] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84704] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(416), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2791), 2, - sym_line_comment, - sym_block_comment, - [84515] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(6070), 1, + ACTIONS(6081), 1, sym_identifier, - STATE(1655), 1, + STATE(3716), 1, sym_type_arguments, - STATE(2792), 2, + STATE(2791), 2, sym_line_comment, sym_block_comment, - [84538] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84727] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6072), 1, + STATE(2792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3412), 4, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + anon_sym_COMMA, + [84744] = 5, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, STATE(2793), 2, sym_line_comment, sym_block_comment, - [84561] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6083), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [84763] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5844), 1, + anon_sym_LPAREN, + ACTIONS(5846), 1, + anon_sym_LBRACK, + ACTIONS(5848), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1536), 1, - sym_block, - STATE(3719), 1, - sym_label, + STATE(406), 1, + sym_delim_token_tree, STATE(2794), 2, sym_line_comment, sym_block_comment, - [84584] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84786] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, + ACTIONS(3106), 1, anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(5896), 1, sym_identifier, - ACTIONS(6074), 1, + ACTIONS(6085), 1, anon_sym_GT, - STATE(3307), 1, + STATE(3296), 1, sym_lifetime, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84607] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84809] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6081), 1, + sym_identifier, + STATE(3633), 1, + sym_type_arguments, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(6076), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84626] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84832] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3685), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6081), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84649] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84855] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(423), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6087), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2798), 2, sym_line_comment, sym_block_comment, - [84672] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84876] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1194), 1, - sym_declaration_list, - STATE(3226), 1, - sym_where_clause, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2318), 1, + sym_parameters, + STATE(3500), 1, + sym_type_parameters, STATE(2799), 2, sym_line_comment, sym_block_comment, - [84695] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84899] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3710), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84718] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84922] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6089), 1, + anon_sym_DQUOTE, + STATE(2844), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84739] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84943] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6080), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5329), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2802), 2, sym_line_comment, sym_block_comment, - [84762] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [84964] = 5, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2314), 1, - sym_parameters, - STATE(3402), 1, - sym_type_parameters, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5928), 1, + anon_sym_COLON_COLON, STATE(2803), 2, sym_line_comment, sym_block_comment, - [84785] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4900), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84983] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, - anon_sym_COMMA, - STATE(3186), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5934), 1, + anon_sym_COLON_COLON, STATE(2804), 2, sym_line_comment, sym_block_comment, - [84808] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4912), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85002] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, + ACTIONS(5936), 1, anon_sym_COLON_COLON, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, + ACTIONS(4912), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84827] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85021] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6086), 1, - anon_sym_SEMI, - STATE(3582), 1, - sym_where_clause, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2344), 1, + sym_parameters, + STATE(3371), 1, + sym_type_parameters, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84850] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85044] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6088), 1, - anon_sym_RPAREN, - ACTIONS(6090), 1, - anon_sym_COMMA, - STATE(3166), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84873] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4912), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85063] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3617), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(6091), 1, + anon_sym_in, STATE(2808), 2, sym_line_comment, sym_block_comment, - [84896] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6093), 3, + sym_self, + sym_super, + sym_crate, + [85082] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5365), 1, + anon_sym_LPAREN, + ACTIONS(5367), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3619), 1, - sym_block, - STATE(3719), 1, - sym_label, + STATE(1465), 1, + sym_delim_token_tree, STATE(2809), 2, sym_line_comment, sym_block_comment, - [84919] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85105] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6092), 1, - anon_sym_RBRACK, - ACTIONS(6094), 1, - anon_sym_COMMA, - STATE(3190), 1, - aux_sym_slice_pattern_repeat1, - STATE(2810), 2, - sym_line_comment, - sym_block_comment, - [84942] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, + ACTIONS(6095), 1, anon_sym_LBRACE, - ACTIONS(6098), 1, + ACTIONS(6097), 1, anon_sym_for, - ACTIONS(6100), 1, + ACTIONS(6099), 1, anon_sym_loop, - ACTIONS(6102), 1, + ACTIONS(6101), 1, anon_sym_while, - STATE(2811), 2, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [84965] = 7, - ACTIONS(105), 1, + [85128] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6103), 1, + sym_identifier, + STATE(1637), 1, + sym_type_arguments, + STATE(2811), 2, + sym_line_comment, + sym_block_comment, + [85151] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(2026), 1, + STATE(3633), 1, sym_type_arguments, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(5355), 2, + sym_identifier, + sym_super, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84988] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85172] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6104), 1, - sym_identifier, - STATE(2133), 1, + STATE(3716), 1, sym_type_arguments, + ACTIONS(5355), 2, + sym_identifier, + sym_super, STATE(2813), 2, sym_line_comment, sym_block_comment, - [85011] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85193] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6104), 1, - sym_identifier, - STATE(2132), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3509), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2814), 2, sym_line_comment, sym_block_comment, - [85034] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85216] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - STATE(3527), 1, + STATE(417), 1, sym_block, - STATE(3719), 1, + STATE(3679), 1, sym_label, STATE(2815), 2, sym_line_comment, sym_block_comment, - [85057] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85239] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6106), 1, - anon_sym_RPAREN, - ACTIONS(6108), 1, - anon_sym_COMMA, - STATE(2888), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5928), 1, + anon_sym_COLON_COLON, STATE(2816), 2, sym_line_comment, sym_block_comment, - [85080] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4956), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85258] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3565), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(5850), 1, + sym_identifier, + STATE(1449), 1, + sym_type_arguments, STATE(2817), 2, sym_line_comment, sym_block_comment, - [85103] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85281] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3568), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5934), 1, + anon_sym_COLON_COLON, STATE(2818), 2, sym_line_comment, sym_block_comment, - [85126] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85300] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6110), 1, - anon_sym_SEMI, - STATE(3611), 1, - sym_where_clause, + ACTIONS(5936), 1, + anon_sym_COLON_COLON, STATE(2819), 2, sym_line_comment, sym_block_comment, - [85149] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85319] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2320), 1, - sym_parameters, - STATE(3401), 1, - sym_type_parameters, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3537), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2820), 2, sym_line_comment, sym_block_comment, - [85172] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85342] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(3742), 1, - sym_where_clause, + ACTIONS(5938), 1, + anon_sym_COLON_COLON, STATE(2821), 2, sym_line_comment, sym_block_comment, - [85195] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85361] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(402), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6105), 1, + anon_sym_COLON, STATE(2822), 2, sym_line_comment, sym_block_comment, - [85218] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5078), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [85380] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6114), 1, - anon_sym_SEMI, - STATE(3613), 1, - sym_where_clause, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2314), 1, + sym_parameters, + STATE(3399), 1, + sym_type_parameters, STATE(2823), 2, sym_line_comment, sym_block_comment, - [85241] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85403] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3233), 1, - sym_where_clause, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6103), 1, + sym_identifier, + STATE(1638), 1, + sym_type_arguments, STATE(2824), 2, sym_line_comment, sym_block_comment, - [85264] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85426] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3622), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2825), 2, + ACTIONS(6107), 1, + anon_sym_DQUOTE, + ACTIONS(6109), 2, + sym_string_content, + sym_escape_sequence, + STATE(2825), 3, sym_line_comment, sym_block_comment, - [85287] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_string_literal_repeat1, + [85445] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(700), 1, - sym_declaration_list, - STATE(3465), 1, - sym_where_clause, + ACTIONS(6112), 1, + anon_sym_COLON, STATE(2826), 2, sym_line_comment, sym_block_comment, - [85310] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5078), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [85464] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3648), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(1421), 1, + anon_sym_RPAREN, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5801), 1, + anon_sym_COMMA, + STATE(3056), 1, + aux_sym_parameters_repeat1, STATE(2827), 2, sym_line_comment, sym_block_comment, - [85333] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85487] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(290), 1, - sym_block, - STATE(3621), 1, - sym_label, STATE(2828), 2, sym_line_comment, sym_block_comment, - [85356] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4464), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [85504] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6114), 1, + anon_sym_RPAREN, + ACTIONS(6116), 1, + anon_sym_COMMA, + STATE(3189), 1, + aux_sym_tuple_pattern_repeat1, STATE(2829), 2, sym_line_comment, sym_block_comment, - [85379] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85527] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6118), 1, + anon_sym_RBRACK, + ACTIONS(6120), 1, + anon_sym_COMMA, + STATE(3193), 1, + aux_sym_slice_pattern_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [85402] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85550] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6116), 1, - anon_sym_RPAREN, - ACTIONS(6118), 1, - anon_sym_COMMA, - STATE(3070), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6122), 1, + sym_identifier, + STATE(2136), 1, + sym_type_arguments, STATE(2831), 2, sym_line_comment, sym_block_comment, - [85425] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85573] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(385), 1, + sym_block, + STATE(3679), 1, + sym_label, STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [85442] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85596] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6010), 1, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(6124), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2833), 2, sym_line_comment, sym_block_comment, - [85465] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85619] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3724), 1, + sym_label, + STATE(3808), 1, + sym_block, STATE(2834), 2, sym_line_comment, sym_block_comment, - [85486] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85642] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + ACTIONS(6126), 1, + anon_sym_GT, + STATE(3296), 1, + sym_lifetime, STATE(2835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85505] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85665] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - STATE(1398), 1, - sym_parameters, - STATE(2026), 1, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6122), 1, + sym_identifier, + STATE(2138), 1, sym_type_arguments, STATE(2836), 2, sym_line_comment, sym_block_comment, - [85528] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85688] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6120), 1, - anon_sym_LBRACE, - ACTIONS(6122), 1, - anon_sym_for, - ACTIONS(6124), 1, - anon_sym_loop, - ACTIONS(6126), 1, - anon_sym_while, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2334), 1, + sym_parameters, + STATE(3413), 1, + sym_type_parameters, STATE(2837), 2, sym_line_comment, sym_block_comment, - [85551] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85711] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, ACTIONS(6128), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, STATE(2838), 2, sym_line_comment, sym_block_comment, - [85572] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85734] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(6130), 1, + anon_sym_LBRACE, + ACTIONS(6132), 1, + anon_sym_for, + ACTIONS(6134), 1, + anon_sym_loop, + ACTIONS(6136), 1, + anon_sym_while, STATE(2839), 2, sym_line_comment, sym_block_comment, - [85595] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85757] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - STATE(1205), 1, - sym_field_declaration_list, - STATE(3237), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3603), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2840), 2, sym_line_comment, sym_block_comment, - [85618] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85780] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_LPAREN, - ACTIONS(6014), 1, - anon_sym_LBRACK, - ACTIONS(6016), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_delim_token_tree, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6138), 1, + anon_sym_RPAREN, + ACTIONS(6140), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_tuple_type_repeat1, STATE(2841), 2, sym_line_comment, sym_block_comment, - [85641] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85803] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6130), 1, - anon_sym_SEMI, - STATE(3600), 1, - sym_where_clause, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3615), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2842), 2, sym_line_comment, sym_block_comment, - [85664] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85826] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - anon_sym_COLON, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3635), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [85683] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85849] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6134), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, + ACTIONS(6142), 1, + anon_sym_DQUOTE, + STATE(2825), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2844), 2, sym_line_comment, sym_block_comment, - [85706] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85870] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5428), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4720), 1, + anon_sym_BANG, + ACTIONS(4782), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + STATE(2044), 1, + sym_type_arguments, STATE(2845), 2, sym_line_comment, sym_block_comment, - [85727] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85893] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2293), 1, - sym_parameters, - STATE(3292), 1, - sym_type_parameters, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + ACTIONS(6144), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, STATE(2846), 2, sym_line_comment, sym_block_comment, - [85750] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85916] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - ACTIONS(6138), 1, - anon_sym_for, - ACTIONS(6140), 1, - anon_sym_loop, - ACTIONS(6142), 1, - anon_sym_while, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3557), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2847), 2, sym_line_comment, sym_block_comment, - [85773] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [85939] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6146), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3559), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85796] = 7, - ACTIONS(105), 1, + [85962] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(6146), 1, + anon_sym_COMMA, + ACTIONS(4362), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2849), 3, + sym_line_comment, + sym_block_comment, + aux_sym_arguments_repeat1, + [85981] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5355), 1, sym_super, - ACTIONS(5947), 1, + ACTIONS(5970), 1, sym_identifier, - STATE(1493), 1, + STATE(3633), 1, sym_type_arguments, - STATE(2849), 2, - sym_line_comment, - sym_block_comment, - [85819] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(606), 1, - sym_enum_variant_list, - STATE(3405), 1, - sym_where_clause, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85842] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1306), 1, - sym_declaration_list, - STATE(3408), 1, - sym_where_clause, + [86004] = 7, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5888), 1, + sym_super, + STATE(2138), 1, + sym_type_arguments, STATE(2851), 2, sym_line_comment, sym_block_comment, - [85865] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86027] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6148), 1, - anon_sym_SEMI, - STATE(3579), 1, - sym_where_clause, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3724), 1, + sym_label, + STATE(3820), 1, + sym_block, STATE(2852), 2, sym_line_comment, sym_block_comment, - [85888] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86050] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6150), 1, - anon_sym_SEMI, - STATE(3628), 1, - sym_where_clause, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3605), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85911] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86073] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6152), 1, - anon_sym_for, - STATE(2029), 1, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, sym_type_arguments, + STATE(2423), 1, + sym_parameters, STATE(2854), 2, sym_line_comment, sym_block_comment, - [85934] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86096] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4708), 1, + anon_sym_LPAREN, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(2323), 1, + sym_parameters, + STATE(3295), 1, + sym_type_parameters, STATE(2855), 2, sym_line_comment, sym_block_comment, - [85955] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86119] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - STATE(1127), 1, - sym_enum_variant_list, - STATE(3386), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3623), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85978] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86142] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(708), 1, - sym_enum_variant_list, - STATE(3266), 1, - sym_where_clause, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(3764), 1, + anon_sym_COLON_COLON, + ACTIONS(4720), 1, + anon_sym_BANG, + STATE(1422), 1, + sym_type_arguments, STATE(2857), 2, sym_line_comment, sym_block_comment, - [86001] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86165] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4196), 1, anon_sym_LT2, - ACTIONS(6144), 1, + ACTIONS(4374), 1, anon_sym_COLON_COLON, - ACTIONS(6154), 1, - anon_sym_for, - STATE(2029), 1, + ACTIONS(4720), 1, + anon_sym_BANG, + STATE(1670), 1, sym_type_arguments, STATE(2858), 2, sym_line_comment, sym_block_comment, - [86024] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86188] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(543), 1, - sym_declaration_list, - STATE(3352), 1, - sym_where_clause, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5363), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2859), 2, sym_line_comment, sym_block_comment, - [86047] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86209] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(3452), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4945), 1, - anon_sym_for, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(1404), 1, + sym_parameters, + STATE(2034), 1, sym_type_arguments, STATE(2860), 2, sym_line_comment, sym_block_comment, - [86070] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86232] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3598), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5355), 1, + sym_super, + ACTIONS(5970), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, STATE(2861), 2, sym_line_comment, sym_block_comment, - [86093] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86255] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(6149), 1, + anon_sym_LBRACE, + ACTIONS(6151), 1, + anon_sym_for, + ACTIONS(6153), 1, + anon_sym_loop, + ACTIONS(6155), 1, + anon_sym_while, STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86112] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86278] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(353), 1, anon_sym_LBRACE, - STATE(1140), 1, - sym_declaration_list, - STATE(3368), 1, - sym_where_clause, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(1487), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2863), 2, sym_line_comment, sym_block_comment, - [86135] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86301] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, - anon_sym_COLON_COLON, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1147), 1, + sym_enum_variant_list, + STATE(3396), 1, + sym_where_clause, STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86154] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86324] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, - STATE(2132), 1, - sym_type_arguments, + ACTIONS(4700), 1, + anon_sym_DOT_DOT, + ACTIONS(5433), 1, + anon_sym_COLON_COLON, + ACTIONS(4702), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2865), 2, sym_line_comment, sym_block_comment, - [86177] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86345] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3575), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5888), 1, + sym_super, + ACTIONS(5970), 1, + sym_identifier, + STATE(3716), 1, + sym_type_arguments, STATE(2866), 2, sym_line_comment, sym_block_comment, - [86200] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86368] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6156), 1, - anon_sym_SEMI, - ACTIONS(6158), 1, - anon_sym_EQ, - ACTIONS(6160), 1, - anon_sym_else, + ACTIONS(6157), 1, + anon_sym_LBRACE, + ACTIONS(6159), 1, + anon_sym_for, + ACTIONS(6161), 1, + anon_sym_loop, + ACTIONS(6163), 1, + anon_sym_while, STATE(2867), 2, sym_line_comment, sym_block_comment, - [86223] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86391] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6162), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(3506), 1, + sym_trait_bounds, + ACTIONS(5709), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2868), 2, sym_line_comment, sym_block_comment, - [86246] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86412] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6164), 1, - anon_sym_for, - STATE(2029), 1, + STATE(3633), 1, sym_type_arguments, + ACTIONS(5888), 2, + sym_identifier, + sym_super, STATE(2869), 2, sym_line_comment, sym_block_comment, - [86269] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_COMMA, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, - STATE(2870), 2, - sym_line_comment, - sym_block_comment, - [86292] = 5, + [86433] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, + ACTIONS(6165), 1, aux_sym_token_repetition_pattern_token1, - STATE(2871), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(6168), 3, + ACTIONS(6167), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [86311] = 7, - ACTIONS(105), 1, + [86452] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, + anon_sym_PLUS, + STATE(2871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6169), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [86471] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6170), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6171), 1, + anon_sym_SEMI, + STATE(3663), 1, + sym_where_clause, STATE(2872), 2, sym_line_comment, sym_block_comment, - [86334] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86494] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4972), 1, + anon_sym_for, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + STATE(2041), 1, + sym_type_arguments, STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(984), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [86351] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86517] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3516), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2874), 2, sym_line_comment, sym_block_comment, - ACTIONS(6172), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [86370] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86540] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4957), 1, - anon_sym_for, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(353), 1, + anon_sym_LBRACE, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + STATE(3528), 1, + sym_block, + STATE(3724), 1, + sym_label, STATE(2875), 2, sym_line_comment, sym_block_comment, - [86393] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86563] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - STATE(773), 1, + STATE(1160), 1, sym_declaration_list, - STATE(3452), 1, + STATE(3390), 1, sym_where_clause, STATE(2876), 2, sym_line_comment, sym_block_comment, - [86416] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86586] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, + STATE(3716), 1, sym_type_arguments, - STATE(2103), 1, - sym_parameters, + ACTIONS(5888), 2, + sym_identifier, + sym_super, STATE(2877), 2, sym_line_comment, sym_block_comment, - [86439] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86607] = 7, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - STATE(2878), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6174), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [86458] = 7, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(1146), 1, + STATE(1166), 1, sym_field_declaration_list, - STATE(3413), 1, + STATE(3410), 1, sym_where_clause, - STATE(2879), 2, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [86481] = 7, - ACTIONS(105), 1, + [86630] = 7, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + ACTIONS(6173), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, + STATE(2879), 2, + sym_line_comment, + sym_block_comment, + [86653] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_declaration_list, - STATE(3363), 1, - sym_where_clause, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + ACTIONS(6175), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, STATE(2880), 2, sym_line_comment, sym_block_comment, - [86504] = 6, - ACTIONS(101), 1, - aux_sym_string_literal_token1, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86676] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2288), 1, - sym_string_literal, - ACTIONS(4931), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(2034), 1, + sym_type_arguments, + STATE(2611), 1, + sym_trait_bounds, STATE(2881), 2, sym_line_comment, sym_block_comment, - [86525] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86699] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6176), 1, - anon_sym_SEMI, - STATE(3691), 1, - sym_where_clause, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6006), 1, + anon_sym_COLON_COLON, + ACTIONS(6177), 1, + anon_sym_for, + STATE(2041), 1, + sym_type_arguments, STATE(2882), 2, sym_line_comment, sym_block_comment, - [86545] = 4, - ACTIONS(105), 1, + [86722] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(6179), 1, + aux_sym_token_repetition_pattern_token1, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(6178), 3, + ACTIONS(6181), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [86561] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86741] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(1006), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [86577] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1034), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [86758] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, - anon_sym_RBRACE, - ACTIONS(6182), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6183), 1, + anon_sym_SEMI, + STATE(3646), 1, + sym_where_clause, STATE(2885), 2, sym_line_comment, sym_block_comment, - [86597] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86781] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RBRACE, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6185), 1, + anon_sym_SEMI, + ACTIONS(6187), 1, + anon_sym_EQ, + ACTIONS(6189), 1, + anon_sym_else, STATE(2886), 2, sym_line_comment, sym_block_comment, - [86617] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86804] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6190), 1, - anon_sym_COLON, - ACTIONS(6188), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2034), 1, + sym_type_arguments, + STATE(2113), 1, + sym_parameters, STATE(2887), 2, sym_line_comment, sym_block_comment, - [86635] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86827] = 7, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6191), 1, anon_sym_RPAREN, - ACTIONS(6192), 1, + ACTIONS(6193), 1, anon_sym_COMMA, - STATE(2913), 1, + STATE(3159), 1, aux_sym_tuple_type_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [86655] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86850] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6195), 1, + anon_sym_DQUOTE, + STATE(2778), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5894), 2, + sym_string_content, + sym_escape_sequence, STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86671] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86871] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(4833), 1, + anon_sym_COLON, + STATE(2611), 1, + sym_trait_bounds, STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(6194), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86687] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86891] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, + ACTIONS(6197), 1, + anon_sym_RBRACE, + ACTIONS(6199), 1, anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, + STATE(2937), 1, + aux_sym_struct_pattern_repeat1, STATE(2891), 2, sym_line_comment, sym_block_comment, - [86707] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86911] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6201), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86723] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86931] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_GT, - ACTIONS(6198), 1, + ACTIONS(6203), 1, + anon_sym_RBRACE, + ACTIONS(6205), 1, anon_sym_COMMA, - STATE(2947), 1, - aux_sym_use_bounds_repeat1, + STATE(2939), 1, + aux_sym_struct_pattern_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [86743] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86951] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6200), 1, - anon_sym_GT, - ACTIONS(6202), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_use_bounds_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - [86763] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6207), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86967] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, - anon_sym_RBRACE, - ACTIONS(6204), 1, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(6209), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + STATE(3118), 1, + aux_sym_tuple_type_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [86783] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [86987] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6206), 1, - anon_sym_SEMI, - ACTIONS(6208), 1, - anon_sym_EQ, STATE(2896), 2, sym_line_comment, sym_block_comment, - [86803] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6211), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87003] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(5001), 3, - anon_sym_EQ_GT, + ACTIONS(6213), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87019] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [86819] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(6215), 1, + anon_sym_move, + STATE(180), 1, + sym_closure_parameters, STATE(2898), 2, sym_line_comment, sym_block_comment, - [86839] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87039] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3151), 1, + ACTIONS(5739), 1, anon_sym_RPAREN, - ACTIONS(6214), 1, + ACTIONS(5741), 1, anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + STATE(2941), 1, + aux_sym_parameters_repeat1, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86859] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87059] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(6216), 3, + ACTIONS(6217), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [86875] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87075] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6219), 1, + anon_sym_GT, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(2947), 1, + aux_sym_use_bounds_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86891] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87095] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6223), 1, + anon_sym_GT, + ACTIONS(6225), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_use_bounds_repeat1, STATE(2902), 2, sym_line_comment, sym_block_comment, - ACTIONS(6218), 3, + [87115] = 4, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2903), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6227), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [86907] = 4, - ACTIONS(105), 1, + [87131] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6229), 1, + anon_sym_SEMI, + ACTIONS(6231), 1, + anon_sym_EQ, + STATE(2904), 2, + sym_line_comment, + sym_block_comment, + [87151] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2903), 2, + STATE(2905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6233), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87167] = 4, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2906), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 3, + ACTIONS(4996), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86923] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87183] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4867), 1, - anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(6235), 1, + anon_sym_RBRACE, + ACTIONS(6237), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, - STATE(2904), 2, + STATE(2952), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [86943] = 6, - ACTIONS(105), 1, + [87203] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(2908), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4998), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87219] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4867), 1, + ACTIONS(4884), 1, anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(6239), 1, anon_sym_COMMA, - STATE(2954), 1, + STATE(3172), 1, aux_sym_type_parameters_repeat1, - STATE(2905), 2, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [86963] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87239] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACE, - ACTIONS(6222), 1, + ACTIONS(4884), 1, + anon_sym_GT, + ACTIONS(6239), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, - STATE(2906), 2, + STATE(2958), 1, + aux_sym_type_parameters_repeat1, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [86983] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87259] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6224), 1, + ACTIONS(6241), 1, anon_sym_SEMI, - STATE(1172), 1, + STATE(1192), 1, sym_declaration_list, - STATE(2907), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [87003] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87279] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6226), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_declaration_list, - STATE(2908), 2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [87023] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6243), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87295] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(6228), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2909), 2, + ACTIONS(6245), 1, + anon_sym_SEMI, + ACTIONS(6247), 1, + anon_sym_EQ, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [87041] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87315] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(6230), 1, + ACTIONS(6249), 1, anon_sym_SEMI, - ACTIONS(6232), 1, + ACTIONS(6251), 1, anon_sym_EQ, - STATE(2910), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [87061] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87335] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, + ACTIONS(6253), 1, anon_sym_RBRACE, - ACTIONS(6236), 1, + ACTIONS(6255), 1, anon_sym_COMMA, - STATE(2958), 1, + STATE(2965), 1, aux_sym_field_declaration_list_repeat1, - STATE(2911), 2, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [87081] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87355] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6238), 1, + ACTIONS(6257), 1, anon_sym_SEMI, - STATE(3638), 1, + STATE(3670), 1, sym_where_clause, - STATE(2912), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [87101] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87375] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6228), 1, - anon_sym_RPAREN, - ACTIONS(6240), 1, - anon_sym_COMMA, - STATE(2913), 3, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6259), 1, + anon_sym_SEMI, + STATE(679), 1, + sym_declaration_list, + STATE(2917), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [87119] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87395] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2914), 2, + STATE(2918), 2, sym_line_comment, sym_block_comment, - ACTIONS(6243), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87135] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5022), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87411] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6245), 1, + ACTIONS(6261), 1, anon_sym_SEMI, - STATE(3580), 1, + STATE(3524), 1, sym_where_clause, - STATE(2915), 2, + STATE(2919), 2, sym_line_comment, sym_block_comment, - [87155] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87431] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2916), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6247), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87171] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6249), 1, + ACTIONS(6263), 1, anon_sym_SEMI, - STATE(1192), 1, + STATE(1213), 1, sym_declaration_list, - STATE(2917), 2, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [87191] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87451] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6251), 1, - anon_sym_SEMI, - STATE(564), 1, - sym_declaration_list, - STATE(2918), 2, - sym_line_comment, - sym_block_comment, - [87211] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6253), 1, - sym_identifier, - ACTIONS(6255), 1, - anon_sym_ref, - ACTIONS(6257), 1, - sym_mutable_specifier, - STATE(2919), 2, + ACTIONS(918), 1, + anon_sym_RPAREN, + ACTIONS(6265), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [87231] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87471] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, + ACTIONS(5076), 1, anon_sym_RBRACE, - ACTIONS(6259), 1, + ACTIONS(6267), 1, anon_sym_COMMA, - STATE(2945), 1, + STATE(3089), 1, aux_sym_field_initializer_list_repeat1, - STATE(2920), 2, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [87251] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87491] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, - ACTIONS(6261), 1, - sym_identifier, - STATE(2921), 2, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [87271] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1507), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87507] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6263), 1, - anon_sym_SEMI, - STATE(3749), 1, - sym_where_clause, - STATE(2922), 2, + ACTIONS(6269), 1, + anon_sym_RPAREN, + ACTIONS(6271), 1, + anon_sym_COMMA, + STATE(2982), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [87291] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87527] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6265), 1, + ACTIONS(6273), 1, anon_sym_SEMI, - STATE(3688), 1, + STATE(3739), 1, sym_where_clause, - STATE(2923), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [87311] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87547] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, + ACTIONS(912), 1, + anon_sym_RBRACK, + ACTIONS(4376), 1, anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, - STATE(2924), 2, + STATE(2849), 1, + aux_sym_arguments_repeat1, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [87331] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87567] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(930), 1, + ACTIONS(934), 1, anon_sym_RPAREN, - ACTIONS(4329), 1, + ACTIONS(4382), 1, anon_sym_COMMA, - STATE(2766), 1, + STATE(2849), 1, aux_sym_arguments_repeat1, - STATE(2925), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [87351] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87587] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2926), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87367] = 4, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(2927), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6267), 3, - anon_sym_SEMI, + ACTIONS(5086), 1, anon_sym_RBRACE, + ACTIONS(6275), 1, anon_sym_COMMA, - [87383] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, + STATE(3089), 1, + aux_sym_field_initializer_list_repeat1, STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(6269), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87399] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87607] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6279), 1, + anon_sym_COLON, + ACTIONS(6277), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87415] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87625] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(910), 1, + anon_sym_RBRACK, + ACTIONS(6281), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87431] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87645] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6285), 1, + anon_sym_COLON, + ACTIONS(6283), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87447] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87663] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(934), 1, - anon_sym_RBRACK, - ACTIONS(6271), 1, + ACTIONS(6287), 1, + anon_sym_RBRACE, + ACTIONS(6289), 1, anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + STATE(3102), 1, + aux_sym_struct_pattern_repeat1, STATE(2932), 2, sym_line_comment, sym_block_comment, - [87467] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87683] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6273), 1, - anon_sym_SEMI, - STATE(570), 1, - sym_declaration_list, + ACTIONS(1679), 1, + anon_sym_GT, + ACTIONS(6291), 1, + anon_sym_COMMA, + STATE(2979), 1, + aux_sym_type_arguments_repeat1, STATE(2933), 2, sym_line_comment, sym_block_comment, - [87487] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87703] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6275), 1, - anon_sym_RBRACE, - ACTIONS(6277), 1, + ACTIONS(1679), 1, + anon_sym_GT, + ACTIONS(6291), 1, anon_sym_COMMA, - STATE(2934), 3, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, + STATE(2934), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87505] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87723] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1666), 1, - anon_sym_GT, - ACTIONS(6280), 1, + ACTIONS(3148), 1, + anon_sym_RPAREN, + ACTIONS(6293), 1, anon_sym_COMMA, - STATE(2971), 1, - aux_sym_type_arguments_repeat1, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - [87525] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87743] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1666), 1, + ACTIONS(1689), 1, anon_sym_GT, - ACTIONS(6280), 1, + ACTIONS(6295), 1, anon_sym_COMMA, - STATE(3053), 1, + STATE(2951), 1, aux_sym_type_arguments_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [87545] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87763] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3131), 1, - anon_sym_RPAREN, - ACTIONS(6282), 1, + ACTIONS(5331), 1, + anon_sym_RBRACE, + ACTIONS(6297), 1, anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + STATE(3000), 1, + aux_sym_struct_pattern_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [87565] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87783] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - ACTIONS(6284), 1, + ACTIONS(3150), 1, + anon_sym_RPAREN, + ACTIONS(6299), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(2938), 2, sym_line_comment, sym_block_comment, - [87585] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87803] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3133), 1, - anon_sym_RPAREN, - ACTIONS(6286), 1, + ACTIONS(5333), 1, + anon_sym_RBRACE, + ACTIONS(6301), 1, anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + STATE(3000), 1, + aux_sym_struct_pattern_repeat1, STATE(2939), 2, sym_line_comment, sym_block_comment, - [87605] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87823] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6303), 2, anon_sym_RPAREN, - ACTIONS(5599), 1, anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, STATE(2940), 2, sym_line_comment, sym_block_comment, - [87625] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87841] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, - anon_sym_RBRACE, - ACTIONS(6288), 1, + ACTIONS(1425), 1, + anon_sym_RPAREN, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [87645] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87861] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, + ACTIONS(5070), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87661] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87877] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6290), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_declaration_list, STATE(2943), 2, sym_line_comment, sym_block_comment, - [87681] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5080), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87893] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, + ACTIONS(1425), 1, anon_sym_RPAREN, - ACTIONS(5631), 1, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(3077), 1, + STATE(2983), 1, aux_sym_parameters_repeat1, STATE(2944), 2, sym_line_comment, sym_block_comment, - [87701] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87913] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, - anon_sym_RBRACE, - ACTIONS(6294), 1, - anon_sym_COMMA, - STATE(2945), 3, + STATE(2945), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87719] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6305), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87929] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [87739] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5008), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87945] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5903), 1, + ACTIONS(5898), 1, anon_sym_GT, - ACTIONS(6297), 1, + ACTIONS(6307), 1, anon_sym_COMMA, - STATE(3087), 1, + STATE(3088), 1, aux_sym_use_bounds_repeat1, STATE(2947), 2, sym_line_comment, sym_block_comment, - [87759] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [87965] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5913), 1, - anon_sym_GT, - ACTIONS(6299), 1, - anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(2948), 2, sym_line_comment, sym_block_comment, - [87779] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5012), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87981] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(6301), 1, + ACTIONS(5900), 1, anon_sym_GT, - STATE(3298), 1, - sym_lifetime, + ACTIONS(6309), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, STATE(2949), 2, sym_line_comment, sym_block_comment, - [87799] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88001] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5122), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, - anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, STATE(2950), 2, sym_line_comment, sym_block_comment, - [87819] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5034), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88017] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5122), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, + ACTIONS(5729), 1, + anon_sym_GT, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2951), 2, + STATE(2951), 3, sym_line_comment, sym_block_comment, - [87839] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_arguments_repeat1, + [88035] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_GT, - ACTIONS(6305), 1, + ACTIONS(5121), 1, + anon_sym_RBRACE, + ACTIONS(6314), 1, anon_sym_COMMA, - STATE(3084), 1, - aux_sym_for_lifetimes_repeat1, + STATE(3174), 1, + aux_sym_enum_variant_list_repeat2, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87859] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88055] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - anon_sym_SEMI, - STATE(639), 1, - sym_declaration_list, + ACTIONS(5121), 1, + anon_sym_RBRACE, + ACTIONS(6314), 1, + anon_sym_COMMA, + STATE(2986), 1, + aux_sym_enum_variant_list_repeat2, STATE(2953), 2, sym_line_comment, sym_block_comment, - [87879] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88075] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_GT, - ACTIONS(6309), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, STATE(2954), 2, sym_line_comment, sym_block_comment, - [87899] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5044), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88091] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5020), 1, anon_sym_LBRACE, - ACTIONS(6311), 1, - anon_sym_SEMI, - STATE(1220), 1, - sym_declaration_list, + STATE(2034), 1, + sym_type_arguments, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87919] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88111] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6313), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6316), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2956), 2, sym_line_comment, sym_block_comment, - [87939] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88129] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6317), 1, - anon_sym_EQ, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87959] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(1044), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [88145] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, + ACTIONS(4890), 1, + anon_sym_GT, + ACTIONS(6318), 1, anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3172), 1, + aux_sym_type_parameters_repeat1, STATE(2958), 2, sym_line_comment, sym_block_comment, - [87979] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88165] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6320), 1, + anon_sym_SEMI, + STATE(1241), 1, + sym_declaration_list, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87999] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88185] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6074), 1, - anon_sym_GT, - ACTIONS(6321), 1, + ACTIONS(6324), 1, + anon_sym_COLON, + ACTIONS(6322), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [88019] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88203] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6323), 1, + ACTIONS(6326), 1, anon_sym_SEMI, - STATE(1238), 1, + STATE(1247), 1, sym_declaration_list, STATE(2961), 2, sym_line_comment, sym_block_comment, - [88039] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88223] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5521), 1, - anon_sym_GT, - ACTIONS(5523), 1, - anon_sym_COMMA, - STATE(3162), 1, - aux_sym_type_parameters_repeat1, STATE(2962), 2, sym_line_comment, sym_block_comment, - [88059] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6328), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88239] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_GT, - ACTIONS(6325), 1, - anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6330), 1, + anon_sym_SEMI, + ACTIONS(6332), 1, + anon_sym_EQ, STATE(2963), 2, sym_line_comment, sym_block_comment, - [88079] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88259] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6327), 1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6334), 1, anon_sym_SEMI, - ACTIONS(6329), 1, - anon_sym_EQ, + STATE(671), 1, + sym_declaration_list, STATE(2964), 2, sym_line_comment, sym_block_comment, - [88099] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88279] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(3799), 1, - sym_where_clause, + ACTIONS(5123), 1, + anon_sym_RBRACE, + ACTIONS(6336), 1, + anon_sym_COMMA, + STATE(3013), 1, + aux_sym_field_declaration_list_repeat1, STATE(2965), 2, sym_line_comment, sym_block_comment, - [88119] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88299] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, + ACTIONS(5123), 1, anon_sym_RBRACE, - ACTIONS(6333), 1, + ACTIONS(6336), 1, anon_sym_COMMA, - STATE(2945), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2996), 1, + aux_sym_field_declaration_list_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [88139] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88319] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(936), 1, - anon_sym_RPAREN, - ACTIONS(6335), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, STATE(2967), 2, sym_line_comment, sym_block_comment, - [88159] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5024), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88335] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 1, - anon_sym_COLON, - ACTIONS(6337), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2968), 2, sym_line_comment, sym_block_comment, - [88177] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5026), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88351] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6341), 1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6338), 1, anon_sym_SEMI, - ACTIONS(6343), 1, - anon_sym_EQ, + STATE(1258), 1, + sym_declaration_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [88197] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88371] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - anon_sym_RBRACE, - ACTIONS(6347), 1, - anon_sym_COMMA, - STATE(2895), 1, - aux_sym_struct_pattern_repeat1, STATE(2970), 2, sym_line_comment, sym_block_comment, - [88217] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5074), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88387] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1674), 1, - anon_sym_GT, - ACTIONS(6349), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - [88237] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5030), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88403] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3188), 1, anon_sym_PLUS, - ACTIONS(6351), 1, + ACTIONS(6340), 1, anon_sym_SEMI, - ACTIONS(6353), 1, + ACTIONS(6342), 1, anon_sym_EQ, STATE(2972), 2, sym_line_comment, sym_block_comment, - [88257] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88423] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_COMMA, - ACTIONS(6355), 1, - anon_sym_PIPE, - STATE(3004), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6344), 1, + anon_sym_SEMI, + STATE(3792), 1, + sym_where_clause, STATE(2973), 2, sym_line_comment, sym_block_comment, - [88277] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88443] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1368), 1, - anon_sym_RPAREN, - ACTIONS(6357), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + ACTIONS(6346), 1, + anon_sym_LPAREN, + ACTIONS(6348), 1, + anon_sym_LBRACK, + ACTIONS(6350), 1, + anon_sym_LBRACE, STATE(2974), 2, sym_line_comment, sym_block_comment, - [88297] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88463] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6361), 1, - anon_sym_COLON, - ACTIONS(6359), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6352), 1, + anon_sym_SEMI, + STATE(3582), 1, + sym_where_clause, STATE(2975), 2, sym_line_comment, sym_block_comment, - [88315] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88483] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6363), 1, - anon_sym_SEMI, - ACTIONS(6365), 1, - anon_sym_EQ, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(6354), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(2976), 2, sym_line_comment, sym_block_comment, - [88335] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88503] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_RBRACE, - ACTIONS(6367), 1, - anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(6356), 1, + sym_identifier, + ACTIONS(6358), 1, + anon_sym_ref, + ACTIONS(6360), 1, + sym_mutable_specifier, STATE(2977), 2, sym_line_comment, sym_block_comment, - [88355] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88523] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6369), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6362), 1, anon_sym_SEMI, - STATE(1268), 1, - sym_declaration_list, + STATE(3803), 1, + sym_where_clause, STATE(2978), 2, sym_line_comment, sym_block_comment, - [88375] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88543] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6371), 1, - anon_sym_SEMI, - STATE(1270), 1, - sym_declaration_list, + ACTIONS(1673), 1, + anon_sym_GT, + ACTIONS(6364), 1, + anon_sym_COMMA, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(2979), 2, sym_line_comment, sym_block_comment, - [88395] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88563] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6373), 1, - anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, STATE(2980), 2, sym_line_comment, sym_block_comment, - [88415] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5056), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88579] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6375), 1, - anon_sym_SEMI, - STATE(1276), 1, - sym_declaration_list, STATE(2981), 2, sym_line_comment, sym_block_comment, - [88435] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5014), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88595] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6377), 1, - anon_sym_SEMI, - STATE(1278), 1, - sym_declaration_list, - STATE(2982), 2, + ACTIONS(6366), 1, + anon_sym_RPAREN, + ACTIONS(6368), 1, + anon_sym_COMMA, + STATE(2982), 3, sym_line_comment, sym_block_comment, - [88455] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_ordered_field_declaration_list_repeat1, + [88613] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6381), 1, - anon_sym_EQ, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(6371), 1, + anon_sym_COMMA, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(2983), 2, sym_line_comment, sym_block_comment, - [88475] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88633] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_RBRACE, - ACTIONS(6383), 1, + ACTIONS(2356), 1, + anon_sym_RPAREN, + ACTIONS(6373), 1, anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3087), 1, + aux_sym_tuple_pattern_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [88495] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88653] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6387), 1, - anon_sym_EQ, - ACTIONS(6385), 2, + ACTIONS(6375), 1, anon_sym_RBRACE, + ACTIONS(6377), 1, anon_sym_COMMA, + STATE(3045), 1, + aux_sym_field_declaration_list_repeat1, STATE(2985), 2, sym_line_comment, sym_block_comment, - [88513] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88673] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(5143), 1, anon_sym_RBRACE, - ACTIONS(6389), 1, + ACTIONS(6379), 1, anon_sym_COMMA, - STATE(3095), 1, + STATE(3174), 1, aux_sym_enum_variant_list_repeat2, STATE(2986), 2, sym_line_comment, sym_block_comment, - [88533] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88693] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_RBRACE, - ACTIONS(6389), 1, - anon_sym_COMMA, - STATE(3097), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6381), 1, + anon_sym_SEMI, + STATE(1288), 1, + sym_declaration_list, STATE(2987), 2, sym_line_comment, sym_block_comment, - [88553] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88713] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6391), 1, + ACTIONS(6383), 1, anon_sym_SEMI, - STATE(612), 1, + STATE(1290), 1, sym_declaration_list, STATE(2988), 2, sym_line_comment, sym_block_comment, - [88573] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88733] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(4277), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [88593] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4906), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88749] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6393), 1, - anon_sym_SEMI, - STATE(1316), 1, - sym_declaration_list, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6385), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2990), 2, sym_line_comment, sym_block_comment, - [88613] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88767] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6395), 1, + ACTIONS(6387), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(1296), 1, sym_declaration_list, STATE(2991), 2, sym_line_comment, sym_block_comment, - [88633] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88787] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(6397), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6389), 1, + anon_sym_SEMI, + STATE(1298), 1, + sym_declaration_list, STATE(2992), 2, sym_line_comment, sym_block_comment, - [88651] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88807] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(6399), 2, - anon_sym_PIPE, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6391), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(2993), 2, sym_line_comment, sym_block_comment, - [88669] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88825] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6401), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6393), 1, anon_sym_SEMI, - STATE(1325), 1, - sym_declaration_list, + ACTIONS(6395), 1, + anon_sym_EQ, STATE(2994), 2, sym_line_comment, sym_block_comment, - [88689] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88845] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6403), 1, - anon_sym_SEMI, - STATE(1327), 1, - sym_declaration_list, STATE(2995), 2, sym_line_comment, sym_block_comment, - [88709] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5050), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88861] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6405), 1, - anon_sym_SEMI, - STATE(1333), 1, - sym_declaration_list, + ACTIONS(5189), 1, + anon_sym_RBRACE, + ACTIONS(6397), 1, + anon_sym_COMMA, + STATE(3013), 1, + aux_sym_field_declaration_list_repeat1, STATE(2996), 2, sym_line_comment, sym_block_comment, - [88729] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88881] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6407), 1, - anon_sym_SEMI, - STATE(1335), 1, - sym_declaration_list, STATE(2997), 2, sym_line_comment, sym_block_comment, - [88749] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5683), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88897] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6409), 1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6399), 1, anon_sym_SEMI, - ACTIONS(6411), 1, - anon_sym_EQ, + STATE(3752), 1, + sym_where_clause, STATE(2998), 2, sym_line_comment, sym_block_comment, - [88769] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88917] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6413), 1, - anon_sym_SEMI, - STATE(3800), 1, + ACTIONS(6401), 1, + anon_sym_EQ, + STATE(3556), 1, sym_where_clause, STATE(2999), 2, sym_line_comment, sym_block_comment, - [88789] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88937] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6415), 1, - anon_sym_SEMI, - STATE(1353), 1, - sym_declaration_list, - STATE(3000), 2, + ACTIONS(6403), 1, + anon_sym_RBRACE, + ACTIONS(6405), 1, + anon_sym_COMMA, + STATE(3000), 3, sym_line_comment, sym_block_comment, - [88809] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_struct_pattern_repeat1, + [88955] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6417), 1, - anon_sym_SEMI, - STATE(1355), 1, - sym_declaration_list, + ACTIONS(5637), 1, + anon_sym_RPAREN, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(3124), 1, + aux_sym_parameters_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [88829] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88975] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3146), 1, + anon_sym_RBRACK, + ACTIONS(6408), 1, + anon_sym_COMMA, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(6419), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88845] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [88995] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6421), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + anon_sym_SEMI, + STATE(1336), 1, + sym_declaration_list, STATE(3003), 2, sym_line_comment, sym_block_comment, - [88863] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89015] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - anon_sym_PIPE, - ACTIONS(6423), 1, - anon_sym_COMMA, - STATE(3004), 3, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6412), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym_declaration_list, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [88881] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89035] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_RPAREN, - ACTIONS(6426), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6414), 1, + anon_sym_SEMI, + STATE(1345), 1, + sym_declaration_list, STATE(3005), 2, sym_line_comment, sym_block_comment, - [88901] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89055] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6416), 1, + anon_sym_SEMI, + STATE(1347), 1, + sym_declaration_list, STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(5055), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88917] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89075] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6418), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3007), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88933] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89093] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - ACTIONS(6428), 1, + ACTIONS(6420), 1, anon_sym_SEMI, - STATE(552), 1, + STATE(1353), 1, sym_declaration_list, STATE(3008), 2, sym_line_comment, sym_block_comment, - [88953] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89113] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6430), 1, - anon_sym_GT, - ACTIONS(6432), 1, - anon_sym_COMMA, - STATE(3009), 3, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6422), 1, + anon_sym_SEMI, + STATE(1355), 1, + sym_declaration_list, + STATE(3009), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [88971] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89133] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88987] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6424), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89149] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6435), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6426), 1, anon_sym_SEMI, - STATE(654), 1, - sym_declaration_list, + ACTIONS(6428), 1, + anon_sym_EQ, STATE(3011), 2, sym_line_comment, sym_block_comment, - [89007] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89169] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6430), 1, + anon_sym_SEMI, + STATE(775), 1, + sym_declaration_list, STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89023] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89189] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6437), 1, - anon_sym_SEMI, - ACTIONS(6439), 1, - anon_sym_RBRACK, - STATE(3013), 2, + ACTIONS(6432), 1, + anon_sym_RBRACE, + ACTIONS(6434), 1, + anon_sym_COMMA, + STATE(3013), 3, sym_line_comment, sym_block_comment, - [89043] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_field_declaration_list_repeat1, + [89207] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5665), 1, + anon_sym_COLON, + ACTIONS(6437), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3014), 2, sym_line_comment, sym_block_comment, - [89063] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89225] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6441), 1, - anon_sym_RBRACE, - ACTIONS(6443), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6439), 1, + anon_sym_SEMI, + STATE(1373), 1, + sym_declaration_list, STATE(3015), 2, sym_line_comment, sym_block_comment, - [89083] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89245] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6441), 1, + anon_sym_SEMI, + STATE(1375), 1, + sym_declaration_list, STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89099] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89265] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6445), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4236), 1, + anon_sym_LBRACE, + ACTIONS(6443), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_field_initializer_list, STATE(3017), 2, sym_line_comment, sym_block_comment, - [89117] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89285] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(3523), 1, - sym_where_clause, - STATE(3018), 2, + ACTIONS(6437), 1, + anon_sym_PIPE, + ACTIONS(6445), 1, + anon_sym_COMMA, + STATE(3018), 3, sym_line_comment, sym_block_comment, - [89137] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_closure_parameters_repeat1, + [89303] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6449), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(6448), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3019), 2, sym_line_comment, sym_block_comment, - [89157] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89321] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6450), 1, + anon_sym_SEMI, + STATE(505), 1, + sym_declaration_list, STATE(3020), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89173] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89341] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4869), 1, - anon_sym_GT, - ACTIONS(6451), 1, + ACTIONS(5117), 1, + anon_sym_RBRACE, + ACTIONS(6452), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, + STATE(3013), 1, + aux_sym_field_declaration_list_repeat1, STATE(3021), 2, sym_line_comment, sym_block_comment, - [89193] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89361] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_move, - STATE(213), 1, - sym_closure_parameters, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(584), 1, + sym_declaration_list, STATE(3022), 2, sym_line_comment, sym_block_comment, - [89213] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89381] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(3023), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 3, + ACTIONS(5018), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [89229] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89397] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6455), 1, - anon_sym_SEMI, - ACTIONS(6457), 1, - anon_sym_RBRACK, + ACTIONS(936), 1, + anon_sym_RPAREN, + ACTIONS(4384), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - [89249] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89417] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6459), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_declaration_list, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3025), 2, sym_line_comment, sym_block_comment, - [89269] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89435] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_RPAREN, - ACTIONS(6461), 1, + ACTIONS(6456), 1, + anon_sym_RBRACE, + ACTIONS(6458), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_tuple_type_repeat1, - STATE(3026), 2, + STATE(3026), 3, sym_line_comment, sym_block_comment, - [89289] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_list_repeat1, + [89453] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1428), 1, - sym_type_arguments, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6461), 1, + anon_sym_SEMI, + STATE(3753), 1, + sym_where_clause, STATE(3027), 2, sym_line_comment, sym_block_comment, - [89309] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89473] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, STATE(3028), 2, sym_line_comment, sym_block_comment, - [89329] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5078), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89489] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6463), 1, - anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6463), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3029), 2, sym_line_comment, sym_block_comment, - [89349] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89507] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - anon_sym_RPAREN, - ACTIONS(5895), 1, - anon_sym_COMMA, - STATE(3119), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6465), 1, + anon_sym_SEMI, + STATE(586), 1, + sym_declaration_list, STATE(3030), 2, sym_line_comment, sym_block_comment, - [89369] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89527] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, + ACTIONS(5512), 2, anon_sym_RPAREN, - ACTIONS(6465), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_tuple_type_repeat1, STATE(3031), 2, sym_line_comment, sym_block_comment, - [89389] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89545] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, ACTIONS(6467), 1, - anon_sym_SEMI, - STATE(742), 1, - sym_declaration_list, + anon_sym_move, + STATE(202), 1, + sym_closure_parameters, STATE(3032), 2, sym_line_comment, sym_block_comment, - [89409] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89565] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, - ACTIONS(5701), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + sym_identifier, + STATE(3296), 1, + sym_lifetime, STATE(3033), 2, sym_line_comment, sym_block_comment, - [89429] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89585] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, ACTIONS(6469), 1, - anon_sym_GT, - ACTIONS(6471), 1, - anon_sym_COMMA, - STATE(3048), 1, - aux_sym_use_bounds_repeat1, + anon_sym_SEMI, + STATE(675), 1, + sym_declaration_list, STATE(3034), 2, sym_line_comment, sym_block_comment, - [89449] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89605] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6471), 1, + anon_sym_SEMI, ACTIONS(6473), 1, - anon_sym_GT, - ACTIONS(6475), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_use_bounds_repeat1, + anon_sym_RBRACK, STATE(3035), 2, sym_line_comment, sym_block_comment, - [89469] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89625] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, + ACTIONS(6475), 1, + anon_sym_LPAREN, ACTIONS(6477), 1, - anon_sym_SEMI, - STATE(3543), 1, - sym_where_clause, + anon_sym_LBRACK, + ACTIONS(6479), 1, + anon_sym_LBRACE, STATE(3036), 2, sym_line_comment, sym_block_comment, - [89489] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89645] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3460), 1, + anon_sym_LT2, + ACTIONS(5187), 1, + anon_sym_COLON_COLON, + STATE(1422), 1, + sym_type_arguments, STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(5031), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89505] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89665] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6481), 1, + anon_sym_SEMI, + ACTIONS(6483), 1, + anon_sym_EQ, STATE(3038), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89521] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89685] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89537] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89703] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1632), 1, - anon_sym_GT, - ACTIONS(6479), 1, + ACTIONS(3288), 1, + anon_sym_RPAREN, + ACTIONS(6485), 1, anon_sym_COMMA, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, + STATE(3118), 1, + aux_sym_tuple_type_repeat1, STATE(3040), 2, sym_line_comment, sym_block_comment, - [89557] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89723] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1632), 1, - anon_sym_GT, - ACTIONS(6479), 1, + ACTIONS(5779), 1, + anon_sym_RPAREN, + ACTIONS(5781), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3049), 1, + aux_sym_parameters_repeat1, STATE(3041), 2, sym_line_comment, sym_block_comment, - [89577] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89743] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6487), 1, + anon_sym_GT, + ACTIONS(6489), 1, + anon_sym_COMMA, + STATE(3053), 1, + aux_sym_use_bounds_repeat1, STATE(3042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89593] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89763] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6491), 1, + anon_sym_GT, + ACTIONS(6493), 1, + anon_sym_COMMA, + STATE(3055), 1, + aux_sym_use_bounds_repeat1, STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4993), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89609] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89783] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(3044), 2, + ACTIONS(6004), 1, + anon_sym_RPAREN, + ACTIONS(6495), 1, + anon_sym_COMMA, + STATE(3044), 3, sym_line_comment, sym_block_comment, - ACTIONS(4997), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89625] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_parameters_repeat1, + [89801] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(6498), 1, anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + STATE(3013), 1, + aux_sym_field_declaration_list_repeat1, STATE(3045), 2, sym_line_comment, sym_block_comment, - [89645] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89821] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(4341), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(6500), 1, + anon_sym_COLON_COLON, + STATE(1541), 1, + sym_field_initializer_list, STATE(3046), 2, sym_line_comment, sym_block_comment, - [89665] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89841] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, + ACTIONS(1691), 1, + anon_sym_GT, + ACTIONS(6502), 1, anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, + STATE(3057), 1, + aux_sym_type_arguments_repeat1, STATE(3047), 2, sym_line_comment, sym_block_comment, - [89685] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89861] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, + ACTIONS(1691), 1, anon_sym_GT, - ACTIONS(6481), 1, + ACTIONS(6502), 1, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [89705] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89881] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_GT, - ACTIONS(6483), 1, + ACTIONS(1431), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(3049), 2, sym_line_comment, sym_block_comment, - [89725] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89901] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1660), 1, - anon_sym_GT, - ACTIONS(6485), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5111), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3050), 2, sym_line_comment, sym_block_comment, - [89745] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89921] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1658), 1, - anon_sym_GT, - ACTIONS(6487), 1, + ACTIONS(1431), 1, + anon_sym_RPAREN, + ACTIONS(5791), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3058), 1, + aux_sym_parameters_repeat1, STATE(3051), 2, sym_line_comment, sym_block_comment, - [89765] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89941] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1364), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6504), 1, + anon_sym_SEMI, + STATE(1133), 1, + sym_declaration_list, STATE(3052), 2, sym_line_comment, sym_block_comment, - [89785] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89961] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5709), 1, + ACTIONS(6020), 1, anon_sym_GT, - ACTIONS(6491), 1, + ACTIONS(6506), 1, anon_sym_COMMA, - STATE(3053), 3, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, + STATE(3053), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [89803] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [89981] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6496), 1, - anon_sym_COLON, - ACTIONS(6494), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(6508), 1, + anon_sym_GT, + ACTIONS(6510), 1, + anon_sym_as, STATE(3054), 2, sym_line_comment, sym_block_comment, - [89821] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90001] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(3587), 1, - sym_where_clause, + ACTIONS(6022), 1, + anon_sym_GT, + ACTIONS(6512), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, STATE(3055), 2, sym_line_comment, sym_block_comment, - [89841] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90021] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6500), 2, - anon_sym_RBRACE, + ACTIONS(1423), 1, + anon_sym_RPAREN, + ACTIONS(6514), 1, anon_sym_COMMA, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(3056), 2, sym_line_comment, sym_block_comment, - [89859] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90041] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4221), 1, - anon_sym_LBRACE, - ACTIONS(6502), 1, - anon_sym_COLON_COLON, - STATE(1922), 1, - sym_field_initializer_list, + ACTIONS(1683), 1, + anon_sym_GT, + ACTIONS(6516), 1, + anon_sym_COMMA, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(3057), 2, sym_line_comment, sym_block_comment, - [89879] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90061] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6504), 1, - anon_sym_move, - STATE(253), 1, - sym_closure_parameters, + ACTIONS(1417), 1, + anon_sym_RPAREN, + ACTIONS(6518), 1, + anon_sym_COMMA, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(3058), 2, sym_line_comment, sym_block_comment, - [89899] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90081] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6506), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6520), 1, + anon_sym_move, + STATE(189), 1, + sym_closure_parameters, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89917] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90101] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, - STATE(1717), 1, - sym_type_arguments, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6522), 1, + anon_sym_SEMI, + STATE(1140), 1, + sym_declaration_list, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89937] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90121] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(6524), 1, + anon_sym_GT, + STATE(3260), 1, + sym_lifetime, STATE(3061), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89953] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90141] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6508), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_COMMA, - STATE(3062), 3, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6526), 1, + anon_sym_SEMI, + STATE(668), 1, + sym_declaration_list, + STATE(3062), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [89971] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90161] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6513), 1, - anon_sym_SEMI, - ACTIONS(6515), 1, - anon_sym_EQ, + ACTIONS(6528), 1, + anon_sym_move, + STATE(210), 1, + sym_closure_parameters, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89991] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90181] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5707), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, STATE(3064), 2, sym_line_comment, sym_block_comment, - [90011] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6530), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90197] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6517), 1, - sym_mutable_specifier, - ACTIONS(6519), 1, - sym_self, STATE(3065), 2, sym_line_comment, sym_block_comment, - [90031] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5028), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90213] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1668), 1, - anon_sym_GT, - ACTIONS(6521), 1, - anon_sym_COMMA, - STATE(3069), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4196), 1, + anon_sym_LT2, + ACTIONS(5177), 1, + anon_sym_COLON_COLON, + STATE(1670), 1, + sym_type_arguments, STATE(3066), 2, sym_line_comment, sym_block_comment, - [90051] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90233] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1668), 1, + ACTIONS(5533), 1, anon_sym_GT, - ACTIONS(6521), 1, + ACTIONS(5535), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3125), 1, + aux_sym_type_parameters_repeat1, STATE(3067), 2, sym_line_comment, sym_block_comment, - [90071] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90253] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(5502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6532), 1, + anon_sym_SEMI, + STATE(545), 1, + sym_declaration_list, STATE(3068), 2, sym_line_comment, sym_block_comment, - [90089] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90273] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1670), 1, - anon_sym_GT, - ACTIONS(6523), 1, + ACTIONS(6534), 1, + anon_sym_RBRACE, + ACTIONS(6536), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3191), 1, + aux_sym_use_list_repeat1, STATE(3069), 2, sym_line_comment, sym_block_comment, - [90109] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90293] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, - anon_sym_RPAREN, - ACTIONS(6527), 1, - anon_sym_COMMA, - STATE(3135), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6538), 1, + anon_sym_SEMI, + STATE(547), 1, + sym_declaration_list, STATE(3070), 2, sym_line_comment, sym_block_comment, - [90129] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90313] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6540), 1, + sym_identifier, + ACTIONS(6542), 1, + anon_sym_await, + ACTIONS(6544), 1, + sym_integer_literal, STATE(3071), 2, sym_line_comment, sym_block_comment, - [90147] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90333] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6546), 1, + sym_mutable_specifier, + ACTIONS(6548), 1, + sym_self, STATE(3072), 2, sym_line_comment, sym_block_comment, - [90167] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90353] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, STATE(3073), 2, sym_line_comment, sym_block_comment, - [90187] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6550), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90369] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5071), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, STATE(3074), 2, sym_line_comment, sym_block_comment, - [90207] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6552), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90385] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_await, - ACTIONS(6535), 1, - sym_integer_literal, + ACTIONS(1675), 1, + anon_sym_GT, + ACTIONS(6554), 1, + anon_sym_COMMA, + STATE(3078), 1, + aux_sym_type_arguments_repeat1, STATE(3075), 2, sym_line_comment, sym_block_comment, - [90227] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90405] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6537), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(1675), 1, + anon_sym_GT, + ACTIONS(6554), 1, + anon_sym_COMMA, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(3076), 2, sym_line_comment, sym_block_comment, - [90247] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90425] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5963), 1, - anon_sym_RPAREN, - ACTIONS(6539), 1, + ACTIONS(6556), 1, + anon_sym_GT, + ACTIONS(6558), 1, anon_sym_COMMA, - STATE(3077), 3, + STATE(3138), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3077), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [90265] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90445] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6542), 1, + ACTIONS(1677), 1, anon_sym_GT, - ACTIONS(6544), 1, + ACTIONS(6560), 1, anon_sym_COMMA, - STATE(2952), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(3078), 2, sym_line_comment, sym_block_comment, - [90285] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90465] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(6546), 1, - anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, STATE(3079), 2, sym_line_comment, sym_block_comment, - [90305] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5016), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90481] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6548), 1, - anon_sym_SEMI, - STATE(590), 1, - sym_declaration_list, STATE(3080), 2, sym_line_comment, sym_block_comment, - [90325] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4688), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90497] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1354), 1, - anon_sym_RPAREN, - ACTIONS(6550), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, STATE(3081), 2, sym_line_comment, sym_block_comment, - [90345] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6562), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [90513] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6552), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, + ACTIONS(6564), 1, + anon_sym_move, + STATE(215), 1, + sym_closure_parameters, STATE(3082), 2, sym_line_comment, sym_block_comment, - [90365] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90533] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(6554), 1, - anon_sym_GT, - STATE(3298), 1, - sym_lifetime, + ACTIONS(932), 1, + anon_sym_RBRACK, + ACTIONS(4330), 1, + anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(3083), 2, sym_line_comment, sym_block_comment, - [90385] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90553] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 1, - anon_sym_GT, - ACTIONS(6558), 1, + ACTIONS(952), 1, + anon_sym_RBRACK, + ACTIONS(6566), 1, anon_sym_COMMA, - STATE(3084), 3, + STATE(2849), 1, + aux_sym_arguments_repeat1, + STATE(3084), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [90403] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90573] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(3085), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6561), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90419] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_SEMI, - STATE(592), 1, - sym_declaration_list, - STATE(3086), 2, + ACTIONS(6114), 1, + anon_sym_RPAREN, + ACTIONS(6116), 1, + anon_sym_COMMA, + STATE(3189), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [90439] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90593] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_GT, - ACTIONS(6567), 1, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6568), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3087), 3, + STATE(3086), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [90457] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90611] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, + ACTIONS(6568), 1, + anon_sym_RPAREN, ACTIONS(6570), 1, - anon_sym_SEMI, - STATE(1114), 1, - sym_declaration_list, - STATE(3088), 2, + anon_sym_COMMA, + STATE(3087), 3, sym_line_comment, sym_block_comment, - [90477] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_pattern_repeat1, + [90629] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6572), 1, + ACTIONS(6573), 1, anon_sym_GT, - ACTIONS(6574), 1, + ACTIONS(6575), 1, anon_sym_COMMA, - STATE(2960), 1, - aux_sym_use_bounds_repeat1, - STATE(3089), 2, + STATE(3088), 3, sym_line_comment, sym_block_comment, - [90497] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_use_bounds_repeat1, + [90647] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6576), 1, - anon_sym_GT, ACTIONS(6578), 1, + anon_sym_RBRACE, + ACTIONS(6580), 1, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_use_bounds_repeat1, - STATE(3090), 2, + STATE(3089), 3, sym_line_comment, sym_block_comment, - [90517] = 4, - ACTIONS(105), 1, + aux_sym_field_initializer_list_repeat1, + [90665] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6583), 1, + anon_sym_SEMI, + STATE(3673), 1, + sym_where_clause, + STATE(3090), 2, + sym_line_comment, + sym_block_comment, + [90685] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6585), 1, + anon_sym_GT, + ACTIONS(6587), 1, + anon_sym_COMMA, + STATE(3142), 1, + aux_sym_use_bounds_repeat1, STATE(3091), 2, sym_line_comment, sym_block_comment, - ACTIONS(6580), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90533] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90705] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(6546), 1, + ACTIONS(6589), 1, + anon_sym_GT, + ACTIONS(6591), 1, anon_sym_COMMA, - STATE(3141), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3143), 1, + aux_sym_use_bounds_repeat1, STATE(3092), 2, sym_line_comment, sym_block_comment, - [90553] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90725] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_move, - STATE(214), 1, - sym_closure_parameters, + ACTIONS(1687), 1, + anon_sym_GT, + ACTIONS(6593), 1, + anon_sym_COMMA, + STATE(2936), 1, + aux_sym_type_arguments_repeat1, STATE(3093), 2, sym_line_comment, sym_block_comment, - [90573] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90745] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_RBRACE, - ACTIONS(6586), 1, + ACTIONS(1687), 1, + anon_sym_GT, + ACTIONS(6593), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(3094), 2, sym_line_comment, sym_block_comment, - [90593] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90765] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6588), 1, - anon_sym_RBRACE, - ACTIONS(6590), 1, - anon_sym_COMMA, - STATE(3095), 3, + STATE(3095), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90611] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6595), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90781] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(6593), 2, - anon_sym_RBRACE, + ACTIONS(5669), 1, anon_sym_COMMA, + ACTIONS(6597), 1, + anon_sym_PIPE, + STATE(3018), 1, + aux_sym_closure_parameters_repeat1, STATE(3096), 2, sym_line_comment, sym_block_comment, - [90629] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90801] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACE, - ACTIONS(6597), 1, + ACTIONS(3174), 1, + anon_sym_RPAREN, + ACTIONS(6599), 1, anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(3097), 2, sym_line_comment, sym_block_comment, - [90649] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90821] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_SEMI, - STATE(1121), 1, - sym_declaration_list, + ACTIONS(6601), 1, + anon_sym_EQ, + ACTIONS(6603), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3098), 2, sym_line_comment, sym_block_comment, - [90669] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90839] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(932), 1, - anon_sym_RBRACK, - ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, STATE(3099), 2, sym_line_comment, sym_block_comment, - [90689] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5054), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90855] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(6607), 1, + anon_sym_COLON, + ACTIONS(6605), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3100), 2, sym_line_comment, sym_block_comment, - [90709] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90873] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LPAREN, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6607), 1, - anon_sym_LBRACE, STATE(3101), 2, sym_line_comment, sym_block_comment, - [90729] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5060), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90889] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5327), 1, + anon_sym_RBRACE, ACTIONS(6609), 1, - anon_sym_LPAREN, - ACTIONS(6611), 1, - anon_sym_LBRACK, - ACTIONS(6613), 1, - anon_sym_LBRACE, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_struct_pattern_repeat1, STATE(3102), 2, sym_line_comment, sym_block_comment, - [90749] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90909] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6615), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6611), 1, + anon_sym_SEMI, + ACTIONS(6613), 1, + anon_sym_RBRACK, STATE(3103), 2, sym_line_comment, sym_block_comment, - [90769] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90929] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6617), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3692), 1, + anon_sym_LBRACE, + ACTIONS(6615), 1, + anon_sym_COLON_COLON, + STATE(1541), 1, + sym_field_initializer_list, STATE(3104), 2, sym_line_comment, sym_block_comment, - [90787] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90949] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, + ACTIONS(6617), 1, + anon_sym_LPAREN, ACTIONS(6619), 1, - anon_sym_SEMI, - STATE(786), 1, - sym_declaration_list, + anon_sym_LBRACK, + ACTIONS(6621), 1, + anon_sym_LBRACE, STATE(3105), 2, sym_line_comment, sym_block_comment, - [90807] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90969] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(6623), 1, + anon_sym_LPAREN, + ACTIONS(6625), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, anon_sym_LBRACE, - ACTIONS(6621), 1, - anon_sym_SEMI, - STATE(505), 1, - sym_declaration_list, STATE(3106), 2, sym_line_comment, sym_block_comment, - [90827] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [90989] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6623), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(3107), 2, sym_line_comment, sym_block_comment, - [90845] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6629), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91005] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_RBRACE, - ACTIONS(6627), 1, - anon_sym_COMMA, - STATE(3192), 1, - aux_sym_use_list_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6631), 1, + anon_sym_LBRACE, + STATE(2034), 1, + sym_type_arguments, STATE(3108), 2, sym_line_comment, sym_block_comment, - [90865] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91025] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, + ACTIONS(6633), 1, sym_identifier, - ACTIONS(6631), 1, + ACTIONS(6635), 1, anon_sym_await, - ACTIONS(6633), 1, + ACTIONS(6637), 1, sym_integer_literal, STATE(3109), 2, sym_line_comment, sym_block_comment, - [90885] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91045] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6639), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90901] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91065] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3144), 1, + anon_sym_RPAREN, + ACTIONS(6641), 1, + anon_sym_COMMA, + STATE(2788), 1, + aux_sym_slice_pattern_repeat1, STATE(3111), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90917] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91085] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, + ACTIONS(4912), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90933] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91101] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5451), 1, + anon_sym_RBRACE, + ACTIONS(6643), 1, + anon_sym_COMMA, + STATE(3000), 1, + aux_sym_struct_pattern_repeat1, STATE(3113), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90949] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91121] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(3114), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 3, + ACTIONS(5010), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90965] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91137] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6645), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90981] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91155] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6635), 1, - anon_sym_SEMI, - ACTIONS(6637), 1, - anon_sym_EQ, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6647), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, STATE(3116), 2, sym_line_comment, sym_block_comment, - [91001] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91175] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, - ACTIONS(4315), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6649), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3117), 2, sym_line_comment, sym_block_comment, - [91021] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91195] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6639), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, - STATE(3118), 2, + ACTIONS(6645), 1, + anon_sym_RPAREN, + ACTIONS(6651), 1, + anon_sym_COMMA, + STATE(3118), 3, sym_line_comment, sym_block_comment, - [91041] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_tuple_type_repeat1, + [91213] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1837), 1, - anon_sym_RPAREN, - ACTIONS(6641), 1, - anon_sym_COMMA, - STATE(3159), 1, - aux_sym_tuple_pattern_repeat1, STATE(3119), 2, sym_line_comment, sym_block_comment, - [91061] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5042), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91229] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6643), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6654), 1, anon_sym_SEMI, - STATE(513), 1, - sym_declaration_list, + ACTIONS(6656), 1, + anon_sym_EQ, STATE(3120), 2, sym_line_comment, sym_block_comment, - [91081] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91249] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, - anon_sym_COMMA, - STATE(3186), 1, - aux_sym_tuple_pattern_repeat1, STATE(3121), 2, sym_line_comment, sym_block_comment, - [91101] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5046), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91265] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, STATE(3122), 2, sym_line_comment, sym_block_comment, - [91119] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5048), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91281] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6008), 1, + anon_sym_RPAREN, + ACTIONS(6010), 1, + anon_sym_COMMA, + STATE(2984), 1, + aux_sym_tuple_pattern_repeat1, STATE(3123), 2, sym_line_comment, sym_block_comment, - ACTIONS(6647), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91135] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91301] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6649), 1, - anon_sym_SEMI, - ACTIONS(6651), 1, - anon_sym_RBRACK, + ACTIONS(1421), 1, + anon_sym_RPAREN, + ACTIONS(5801), 1, + anon_sym_COMMA, + STATE(3044), 1, + aux_sym_parameters_repeat1, STATE(3124), 2, sym_line_comment, sym_block_comment, - [91155] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91321] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, - anon_sym_RBRACE, - ACTIONS(6655), 1, + ACTIONS(4878), 1, + anon_sym_GT, + ACTIONS(6658), 1, anon_sym_COMMA, - STATE(2986), 1, - aux_sym_enum_variant_list_repeat2, + STATE(3172), 1, + aux_sym_type_parameters_repeat1, STATE(3125), 2, sym_line_comment, sym_block_comment, - [91175] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91341] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, STATE(3126), 2, sym_line_comment, sym_block_comment, - ACTIONS(6657), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91191] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4962), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91357] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6659), 1, - anon_sym_SEMI, - ACTIONS(6661), 1, - anon_sym_EQ, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5164), 1, + anon_sym_COLON_COLON, + STATE(2044), 1, + sym_type_arguments, STATE(3127), 2, sym_line_comment, sym_block_comment, - [91211] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91377] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_AMP_AMP, - ACTIONS(6663), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6660), 1, + anon_sym_GT, + ACTIONS(6662), 1, + anon_sym_COMMA, + STATE(2909), 1, + aux_sym_type_parameters_repeat1, STATE(3128), 2, sym_line_comment, sym_block_comment, - [91229] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91397] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3153), 1, - anon_sym_RBRACK, - ACTIONS(6665), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6664), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, STATE(3129), 2, sym_line_comment, sym_block_comment, - [91249] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91415] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 1, - anon_sym_RPAREN, - ACTIONS(6669), 1, - anon_sym_COMMA, - STATE(3135), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(3130), 2, sym_line_comment, sym_block_comment, - [91269] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5062), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91431] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, + ACTIONS(1421), 1, + anon_sym_RPAREN, + ACTIONS(5801), 1, + anon_sym_COMMA, + STATE(3056), 1, + aux_sym_parameters_repeat1, STATE(3131), 2, sym_line_comment, sym_block_comment, - [91289] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91451] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4817), 1, - anon_sym_COLON, - ACTIONS(5071), 1, - anon_sym_COLON_COLON, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6666), 1, + anon_sym_SEMI, + STATE(1153), 1, + sym_declaration_list, STATE(3132), 2, sym_line_comment, sym_block_comment, - [91309] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91471] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6673), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3133), 2, sym_line_comment, sym_block_comment, - [91327] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5068), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91487] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_LBRACE, STATE(3134), 2, sym_line_comment, sym_block_comment, - [91347] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(5064), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91503] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, - anon_sym_RPAREN, - ACTIONS(6683), 1, + ACTIONS(4878), 1, + anon_sym_GT, + ACTIONS(6658), 1, anon_sym_COMMA, - STATE(3135), 3, + STATE(3173), 1, + aux_sym_type_parameters_repeat1, + STATE(3135), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [91365] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91523] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6686), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6668), 1, + anon_sym_AMP_AMP, + ACTIONS(4458), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3136), 2, sym_line_comment, sym_block_comment, - [91383] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91541] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + ACTIONS(6670), 1, + anon_sym_GT, + STATE(3260), 1, + sym_lifetime, STATE(3137), 2, sym_line_comment, sym_block_comment, - ACTIONS(6688), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [91399] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91561] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6690), 1, - anon_sym_SEMI, - STATE(698), 1, - sym_declaration_list, + ACTIONS(6670), 1, + anon_sym_GT, + ACTIONS(6672), 1, + anon_sym_COMMA, + STATE(3202), 1, + aux_sym_for_lifetimes_repeat1, STATE(3138), 2, sym_line_comment, sym_block_comment, - [91419] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91581] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 1, - anon_sym_RBRACE, - ACTIONS(6694), 1, - anon_sym_COMMA, - STATE(3139), 3, + ACTIONS(6668), 1, + anon_sym_AMP_AMP, + ACTIONS(6674), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3139), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [91437] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91599] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(6676), 1, + anon_sym_RPAREN, + ACTIONS(6678), 1, + anon_sym_COMMA, + STATE(2982), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3140), 2, sym_line_comment, sym_block_comment, - [91457] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91619] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5140), 1, - anon_sym_RBRACE, - ACTIONS(6697), 1, - anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6680), 1, + anon_sym_SEMI, + STATE(3523), 1, + sym_where_clause, STATE(3141), 2, sym_line_comment, sym_block_comment, - [91477] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91639] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(6699), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(6124), 1, + anon_sym_GT, + ACTIONS(6682), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, STATE(3142), 2, sym_line_comment, sym_block_comment, - [91497] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91659] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6701), 2, - anon_sym_RPAREN, + ACTIONS(6126), 1, + anon_sym_GT, + ACTIONS(6684), 1, anon_sym_COMMA, + STATE(3088), 1, + aux_sym_use_bounds_repeat1, STATE(3143), 2, sym_line_comment, sym_block_comment, - [91515] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91679] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5195), 1, + anon_sym_RBRACE, + ACTIONS(6498), 1, + anon_sym_COMMA, + STATE(3021), 1, + aux_sym_field_declaration_list_repeat1, STATE(3144), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91531] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91699] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(902), 1, - anon_sym_RBRACK, - ACTIONS(6703), 1, + ACTIONS(6686), 1, + anon_sym_RPAREN, + ACTIONS(6688), 1, anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + STATE(2982), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3145), 2, sym_line_comment, sym_block_comment, - [91551] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91719] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6705), 1, - anon_sym_GT, - ACTIONS(6707), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6690), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2904), 1, - aux_sym_type_parameters_repeat1, STATE(3146), 2, sym_line_comment, sym_block_comment, - [91571] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91737] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6709), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_declaration_list, + ACTIONS(6692), 1, + anon_sym_RBRACE, + ACTIONS(6694), 1, + anon_sym_COMMA, + STATE(3113), 1, + aux_sym_struct_pattern_repeat1, STATE(3147), 2, sym_line_comment, sym_block_comment, - [91591] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91757] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6711), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6698), 1, + anon_sym_COLON, + ACTIONS(6696), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3148), 2, sym_line_comment, sym_block_comment, - [91611] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91775] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6713), 1, + ACTIONS(6700), 1, anon_sym_SEMI, - STATE(3707), 1, + STATE(3577), 1, sym_where_clause, STATE(3149), 2, sym_line_comment, sym_block_comment, - [91631] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91795] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - anon_sym_LBRACK, - ACTIONS(6719), 1, - anon_sym_LBRACE, + ACTIONS(6702), 1, + anon_sym_RBRACE, + ACTIONS(6704), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_field_initializer_list_repeat1, STATE(3150), 2, sym_line_comment, sym_block_comment, - [91651] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91815] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(6706), 1, + anon_sym_EQ_GT, + ACTIONS(6708), 1, anon_sym_PIPE, - ACTIONS(6721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6710), 1, + anon_sym_if, STATE(3151), 2, sym_line_comment, sym_block_comment, - [91669] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91835] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6714), 1, + anon_sym_EQ, + ACTIONS(6712), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91685] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91853] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6716), 1, + anon_sym_SEMI, + STATE(767), 1, + sym_declaration_list, STATE(3153), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91701] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91873] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5119), 1, + anon_sym_RBRACE, + ACTIONS(6718), 1, + anon_sym_COMMA, + STATE(3174), 1, + aux_sym_enum_variant_list_repeat2, STATE(3154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91717] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91893] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6720), 1, + anon_sym_SEMI, + STATE(555), 1, + sym_declaration_list, STATE(3155), 2, sym_line_comment, sym_block_comment, - ACTIONS(5065), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91733] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91913] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6723), 1, - anon_sym_SEMI, - STATE(3583), 1, - sym_where_clause, + ACTIONS(5119), 1, + anon_sym_RBRACE, + ACTIONS(6718), 1, + anon_sym_COMMA, + STATE(3181), 1, + aux_sym_enum_variant_list_repeat2, STATE(3156), 2, sym_line_comment, sym_block_comment, - [91753] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91933] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(6722), 1, + anon_sym_RBRACE, + ACTIONS(6724), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_field_initializer_list_repeat1, STATE(3157), 2, sym_line_comment, sym_block_comment, - ACTIONS(6725), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91769] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91953] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6726), 1, + anon_sym_SEMI, + STATE(557), 1, + sym_declaration_list, STATE(3158), 2, sym_line_comment, sym_block_comment, - ACTIONS(6727), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [91785] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91973] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 1, + ACTIONS(3284), 1, anon_sym_RPAREN, - ACTIONS(6729), 1, + ACTIONS(6728), 1, anon_sym_COMMA, - STATE(3159), 3, + STATE(3118), 1, + aux_sym_tuple_type_repeat1, + STATE(3159), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [91803] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [91993] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, - anon_sym_EQ, - ACTIONS(6734), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6730), 1, + anon_sym_SEMI, + STATE(607), 1, + sym_declaration_list, STATE(3160), 2, sym_line_comment, sym_block_comment, - [91821] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92013] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6738), 1, - anon_sym_ref, - ACTIONS(6740), 1, - sym_mutable_specifier, + ACTIONS(5158), 1, + anon_sym_LBRACE, + ACTIONS(6732), 1, + anon_sym_SEMI, + STATE(1174), 1, + sym_declaration_list, STATE(3161), 2, sym_line_comment, sym_block_comment, - [91841] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92033] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4871), 1, - anon_sym_GT, - ACTIONS(6742), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5152), 1, + anon_sym_move, + STATE(207), 1, + sym_closure_parameters, STATE(3162), 2, sym_line_comment, sym_block_comment, - [91861] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92053] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, - anon_sym_RBRACE, - ACTIONS(6746), 1, - anon_sym_COMMA, - STATE(2920), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6734), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_declaration_list, STATE(3163), 2, sym_line_comment, sym_block_comment, - [91881] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92073] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4871), 1, - anon_sym_GT, - ACTIONS(6742), 1, + ACTIONS(6736), 1, + anon_sym_RBRACE, + ACTIONS(6738), 1, anon_sym_COMMA, - STATE(3021), 1, - aux_sym_type_parameters_repeat1, + STATE(3154), 1, + aux_sym_enum_variant_list_repeat2, STATE(3164), 2, sym_line_comment, sym_block_comment, - [91901] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92093] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - ACTIONS(6748), 1, + ACTIONS(6740), 1, anon_sym_SEMI, - STATE(1154), 1, + STATE(727), 1, sym_declaration_list, STATE(3165), 2, sym_line_comment, sym_block_comment, - [91921] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92113] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, - anon_sym_RPAREN, - ACTIONS(6752), 1, - anon_sym_COMMA, - STATE(3135), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6742), 1, + anon_sym_SEMI, + STATE(565), 1, + sym_declaration_list, STATE(3166), 2, sym_line_comment, sym_block_comment, - [91941] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92133] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6754), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6744), 1, + anon_sym_SEMI, + ACTIONS(6746), 1, + anon_sym_EQ, STATE(3167), 2, sym_line_comment, sym_block_comment, - [91961] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92153] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_SEMI, - STATE(668), 1, - sym_declaration_list, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6748), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3168), 2, sym_line_comment, sym_block_comment, - [91981] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92171] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6758), 1, - anon_sym_SEMI, - STATE(756), 1, - sym_declaration_list, + ACTIONS(6750), 1, + sym_identifier, + ACTIONS(6752), 1, + anon_sym_ref, + ACTIONS(6754), 1, + sym_mutable_specifier, STATE(3169), 2, sym_line_comment, sym_block_comment, - [92001] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92191] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5959), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4904), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_BANG, + ACTIONS(6756), 1, + sym_identifier, STATE(3170), 2, sym_line_comment, sym_block_comment, - [92019] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92211] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6760), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6758), 1, + anon_sym_SEMI, + STATE(708), 1, + sym_declaration_list, STATE(3171), 2, sym_line_comment, sym_block_comment, - [92037] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92231] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_COMMA, + ACTIONS(6760), 1, + anon_sym_GT, ACTIONS(6762), 1, - anon_sym_PIPE, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, - STATE(3172), 2, + anon_sym_COMMA, + STATE(3172), 3, sym_line_comment, sym_block_comment, - [92057] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_type_parameters_repeat1, + [92249] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(4892), 1, + anon_sym_GT, + ACTIONS(6765), 1, + anon_sym_COMMA, + STATE(3172), 1, + aux_sym_type_parameters_repeat1, STATE(3173), 2, sym_line_comment, sym_block_comment, - [92077] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92269] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(3174), 2, + ACTIONS(6767), 1, + anon_sym_RBRACE, + ACTIONS(6769), 1, + anon_sym_COMMA, + STATE(3174), 3, sym_line_comment, sym_block_comment, - ACTIONS(6764), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [92093] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + aux_sym_enum_variant_list_repeat2, + [92287] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON, - ACTIONS(6766), 2, - anon_sym_RBRACE, + ACTIONS(908), 1, + anon_sym_RBRACK, + ACTIONS(4334), 1, anon_sym_COMMA, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(3175), 2, sym_line_comment, sym_block_comment, - [92111] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92307] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6772), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_declaration_list, STATE(3176), 2, sym_line_comment, sym_block_comment, - ACTIONS(6770), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [92127] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92327] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1662), 1, - anon_sym_GT, - ACTIONS(6772), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4833), 1, + anon_sym_COLON, + ACTIONS(5164), 1, + anon_sym_COLON_COLON, + STATE(2611), 1, + sym_trait_bounds, STATE(3177), 2, sym_line_comment, sym_block_comment, - [92147] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92347] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, + ACTIONS(3188), 1, + anon_sym_PLUS, ACTIONS(6774), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + anon_sym_SEMI, + ACTIONS(6776), 1, + anon_sym_EQ, STATE(3178), 2, sym_line_comment, sym_block_comment, - [92167] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92367] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5669), 1, + anon_sym_COMMA, + ACTIONS(6778), 1, + anon_sym_PIPE, + STATE(3096), 1, + aux_sym_closure_parameters_repeat1, STATE(3179), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [92183] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92387] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6776), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6782), 1, + anon_sym_EQ, + ACTIONS(6780), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3180), 2, sym_line_comment, sym_block_comment, - [92203] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92405] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, + ACTIONS(5193), 1, + anon_sym_RBRACE, + ACTIONS(6784), 1, + anon_sym_COMMA, + STATE(3174), 1, + aux_sym_enum_variant_list_repeat2, STATE(3181), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [92219] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92425] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5137), 1, anon_sym_where, - ACTIONS(6778), 1, - anon_sym_EQ, - STATE(3769), 1, + ACTIONS(6786), 1, + anon_sym_SEMI, + STATE(3734), 1, sym_where_clause, STATE(3182), 2, sym_line_comment, sym_block_comment, - [92239] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92445] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(928), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(5181), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3183), 2, sym_line_comment, sym_block_comment, - [92259] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92465] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1662), 1, - anon_sym_GT, - ACTIONS(6772), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6788), 1, + anon_sym_SEMI, + STATE(633), 1, + sym_declaration_list, STATE(3184), 2, sym_line_comment, sym_block_comment, - [92279] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92485] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6780), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, STATE(3185), 2, sym_line_comment, sym_block_comment, - [92299] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6790), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [92501] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(1839), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, + ACTIONS(920), 1, + anon_sym_RBRACK, + ACTIONS(4378), 1, anon_sym_COMMA, - STATE(3159), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2849), 1, + aux_sym_arguments_repeat1, STATE(3186), 2, sym_line_comment, sym_block_comment, - [92319] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92521] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_identifier, - ACTIONS(6786), 1, - anon_sym_ref, - ACTIONS(6788), 1, - sym_mutable_specifier, STATE(3187), 2, sym_line_comment, sym_block_comment, - [92339] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(6790), 1, + ACTIONS(5066), 3, anon_sym_EQ_GT, - ACTIONS(6792), 1, anon_sym_PIPE, - ACTIONS(6794), 1, anon_sym_if, + [92537] = 6, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6792), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3188), 2, sym_line_comment, sym_block_comment, - [92359] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92557] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - anon_sym_RBRACE, - ACTIONS(6798), 1, + ACTIONS(2592), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, anon_sym_COMMA, - STATE(2966), 1, - aux_sym_field_initializer_list_repeat1, + STATE(3087), 1, + aux_sym_tuple_pattern_repeat1, STATE(3189), 2, sym_line_comment, sym_block_comment, - [92379] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92577] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3127), 1, - anon_sym_RBRACK, - ACTIONS(6800), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, - STATE(3190), 2, - sym_line_comment, - sym_block_comment, - [92399] = 6, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4706), 1, anon_sym_LT2, - ACTIONS(5151), 1, + ACTIONS(6796), 1, anon_sym_for, - STATE(2026), 1, + STATE(2034), 1, sym_type_arguments, - STATE(3191), 2, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [92419] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92597] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, + ACTIONS(4380), 1, anon_sym_RBRACE, - ACTIONS(6802), 1, + ACTIONS(6798), 1, anon_sym_COMMA, - STATE(2934), 1, + STATE(3026), 1, aux_sym_use_list_repeat1, - STATE(3192), 2, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [92439] = 6, - ACTIONS(105), 1, + [92617] = 6, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5137), 1, + anon_sym_where, + ACTIONS(6800), 1, + anon_sym_EQ, + STATE(3775), 1, + sym_where_clause, + STATE(3192), 2, + sym_line_comment, + sym_block_comment, + [92637] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3149), 1, - anon_sym_RPAREN, - ACTIONS(6804), 1, + ACTIONS(3170), 1, + anon_sym_RBRACK, + ACTIONS(6802), 1, anon_sym_COMMA, - STATE(2767), 1, + STATE(2788), 1, aux_sym_slice_pattern_repeat1, STATE(3193), 2, sym_line_comment, sym_block_comment, - [92459] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92657] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(6806), 1, - anon_sym_GT, - ACTIONS(6808), 1, - anon_sym_as, + ACTIONS(4706), 1, + anon_sym_LT2, + ACTIONS(6804), 1, + anon_sym_for, + STATE(2034), 1, + sym_type_arguments, STATE(3194), 2, sym_line_comment, sym_block_comment, - [92479] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92677] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, STATE(3195), 2, sym_line_comment, sym_block_comment, - [92496] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(6806), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [92693] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6808), 1, + anon_sym_SEMI, + ACTIONS(6810), 1, + anon_sym_EQ, STATE(3196), 2, sym_line_comment, sym_block_comment, - [92513] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92713] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2432), 1, - sym_parameters, + ACTIONS(6812), 1, + sym_identifier, + ACTIONS(6814), 1, + anon_sym_ref, + ACTIONS(6816), 1, + sym_mutable_specifier, STATE(3197), 2, sym_line_comment, sym_block_comment, - [92530] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92733] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(713), 1, - sym_field_declaration_list, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6818), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3198), 2, sym_line_comment, sym_block_comment, - [92547] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92751] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1508), 1, - sym_type_arguments, STATE(3199), 2, sym_line_comment, sym_block_comment, - [92564] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + ACTIONS(4992), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92767] = 6, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, + ACTIONS(5127), 1, + anon_sym_LBRACE, + ACTIONS(6820), 1, + anon_sym_SEMI, + STATE(749), 1, + sym_declaration_list, STATE(3200), 2, sym_line_comment, sym_block_comment, - [92581] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92787] = 6, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5831), 2, - sym_identifier, - sym_super, - STATE(3201), 2, - sym_line_comment, - sym_block_comment, - [92596] = 5, - ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - sym_identifier, - ACTIONS(6812), 1, - sym_super, - STATE(3202), 2, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6822), 1, + anon_sym_SEMI, + ACTIONS(6824), 1, + anon_sym_RBRACK, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [92613] = 4, - ACTIONS(105), 1, + [92807] = 5, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(6826), 1, + anon_sym_GT, + ACTIONS(6828), 1, + anon_sym_COMMA, + STATE(3202), 3, + sym_line_comment, + sym_block_comment, + aux_sym_for_lifetimes_repeat1, + [92825] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + STATE(214), 1, + sym_closure_parameters, STATE(3203), 2, sym_line_comment, sym_block_comment, - [92628] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92842] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_identifier, - ACTIONS(6818), 1, - sym_super, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(696), 1, + sym_declaration_list, STATE(3204), 2, sym_line_comment, sym_block_comment, - [92645] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92859] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1225), 1, + sym_field_declaration_list, STATE(3205), 2, sym_line_comment, sym_block_comment, - [92662] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92876] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(6831), 2, + sym_float_literal, + sym_integer_literal, STATE(3206), 2, sym_line_comment, sym_block_comment, - [92679] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92891] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_field_declaration_list, + STATE(202), 1, + sym_closure_parameters, STATE(3207), 2, sym_line_comment, sym_block_comment, - [92696] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92908] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6833), 1, + sym_identifier, + ACTIONS(6835), 1, + sym_super, STATE(3208), 2, sym_line_comment, sym_block_comment, - [92711] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92925] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6740), 1, - sym_mutable_specifier, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(6839), 1, + anon_sym_COLON_COLON, STATE(3209), 2, sym_line_comment, sym_block_comment, - [92728] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92942] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(948), 1, - sym_type_parameters, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(697), 1, + sym_declaration_list, STATE(3210), 2, sym_line_comment, sym_block_comment, - [92745] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92959] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_declaration_list, + ACTIONS(6841), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3211), 2, sym_line_comment, sym_block_comment, - [92762] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92974] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + ACTIONS(5992), 1, + sym_identifier, + ACTIONS(5994), 1, + sym_super, STATE(3212), 2, sym_line_comment, sym_block_comment, - [92779] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [92991] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1232), 1, - sym_declaration_list, + ACTIONS(5852), 2, + sym_identifier, + sym_super, STATE(3213), 2, sym_line_comment, sym_block_comment, - [92796] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93006] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(213), 1, - sym_closure_parameters, + ACTIONS(6843), 1, + sym_identifier, + ACTIONS(6845), 1, + sym_super, STATE(3214), 2, sym_line_comment, sym_block_comment, - [92813] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93023] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5677), 1, + sym_super, + ACTIONS(6847), 1, + sym_identifier, STATE(3215), 2, sym_line_comment, sym_block_comment, - [92828] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93040] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(6849), 1, + sym_identifier, + ACTIONS(6851), 1, + sym_super, STATE(3216), 2, sym_line_comment, sym_block_comment, - [92845] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93057] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 2, - sym_identifier, + ACTIONS(5355), 1, sym_super, + ACTIONS(5970), 1, + sym_identifier, STATE(3217), 2, sym_line_comment, sym_block_comment, - [92860] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93074] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - STATE(3078), 1, - sym_lifetime, + ACTIONS(6853), 1, + sym_identifier, + ACTIONS(6855), 1, + sym_super, STATE(3218), 2, sym_line_comment, sym_block_comment, - [92877] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93091] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_SEMI, - ACTIONS(6834), 1, - anon_sym_EQ, + ACTIONS(6857), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3219), 2, sym_line_comment, sym_block_comment, - [92894] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93106] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1252), 1, + sym_declaration_list, STATE(3220), 2, sym_line_comment, sym_block_comment, - [92911] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93123] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(1040), 1, - sym_type_parameters, + ACTIONS(3452), 1, + anon_sym_LPAREN, + STATE(1426), 1, + sym_parameters, STATE(3221), 2, sym_line_comment, sym_block_comment, - [92928] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93140] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_SEMI, - ACTIONS(6840), 1, - anon_sym_as, + ACTIONS(6004), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3222), 2, sym_line_comment, sym_block_comment, - [92945] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93155] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(906), 1, + sym_type_parameters, STATE(3223), 2, sym_line_comment, sym_block_comment, - [92962] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93172] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1712), 1, - sym_parameters, + ACTIONS(6861), 1, + anon_sym_SEMI, + ACTIONS(6863), 1, + anon_sym_as, STATE(3224), 2, sym_line_comment, sym_block_comment, - [92979] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93189] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(4192), 1, + anon_sym_LPAREN, + STATE(1684), 1, + sym_parameters, STATE(3225), 2, sym_line_comment, sym_block_comment, - [92996] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93206] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym_declaration_list, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6865), 1, + anon_sym_in, STATE(3226), 2, sym_line_comment, sym_block_comment, - [93013] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93223] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(6867), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3227), 2, sym_line_comment, sym_block_comment, - [93028] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93238] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_declaration_list, + STATE(203), 1, + sym_closure_parameters, STATE(3228), 2, sym_line_comment, sym_block_comment, - [93045] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93255] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 1, - anon_sym_SEMI, - ACTIONS(6844), 1, - anon_sym_as, + ACTIONS(6869), 2, + sym_identifier, + sym_super, STATE(3229), 2, sym_line_comment, sym_block_comment, - [93062] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93270] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_EQ, + ACTIONS(6835), 1, + sym_super, + ACTIONS(6871), 1, + sym_identifier, STATE(3230), 2, sym_line_comment, sym_block_comment, - [93079] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93287] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5356), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6356), 1, + sym_identifier, + ACTIONS(6360), 1, + sym_mutable_specifier, STATE(3231), 2, sym_line_comment, sym_block_comment, - [93096] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93304] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, + ACTIONS(5355), 2, sym_identifier, - ACTIONS(6852), 1, - sym_mutable_specifier, + sym_super, STATE(3232), 2, sym_line_comment, sym_block_comment, - [93113] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93319] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1248), 1, - sym_enum_variant_list, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(5111), 1, + anon_sym_for, STATE(3233), 2, sym_line_comment, sym_block_comment, - [93130] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93336] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1259), 1, + sym_declaration_list, STATE(3234), 2, sym_line_comment, sym_block_comment, - [93145] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93353] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1251), 1, - sym_field_declaration_list, + ACTIONS(6855), 1, + sym_super, + ACTIONS(6873), 1, + sym_identifier, STATE(3235), 2, sym_line_comment, sym_block_comment, - [93162] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93370] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5358), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1260), 1, + sym_declaration_list, STATE(3236), 2, sym_line_comment, sym_block_comment, - [93179] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93387] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1253), 1, - sym_field_declaration_list, + ACTIONS(4192), 1, + anon_sym_LPAREN, + STATE(1690), 1, + sym_parameters, STATE(3237), 2, sym_line_comment, sym_block_comment, - [93196] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93404] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6856), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_field_declaration_list, STATE(3238), 2, sym_line_comment, sym_block_comment, - [93211] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93421] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_declaration_list, + ACTIONS(3416), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3239), 2, sym_line_comment, sym_block_comment, - [93228] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93436] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4458), 1, + anon_sym_EQ_GT, + ACTIONS(6875), 1, + anon_sym_AMP_AMP, STATE(3240), 2, sym_line_comment, sym_block_comment, - [93243] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93453] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5358), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6674), 1, + anon_sym_EQ_GT, + ACTIONS(6875), 1, + anon_sym_AMP_AMP, STATE(3241), 2, sym_line_comment, sym_block_comment, - [93260] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93470] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, + STATE(180), 1, + sym_closure_parameters, STATE(3242), 2, sym_line_comment, sym_block_comment, - [93277] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93487] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1268), 1, + sym_enum_variant_list, STATE(3243), 2, sym_line_comment, sym_block_comment, - [93294] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93504] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(781), 1, + sym_field_declaration_list, STATE(3244), 2, sym_line_comment, sym_block_comment, - [93311] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93521] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6862), 1, - sym_identifier, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1271), 1, + sym_field_declaration_list, STATE(3245), 2, sym_line_comment, sym_block_comment, - [93328] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93538] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(628), 1, + STATE(1273), 1, sym_field_declaration_list, STATE(3246), 2, sym_line_comment, sym_block_comment, - [93345] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93555] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5158), 1, anon_sym_LBRACE, - STATE(685), 1, - sym_field_declaration_list, + STATE(1274), 1, + sym_declaration_list, STATE(3247), 2, sym_line_comment, sym_block_comment, - [93362] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93572] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(211), 1, - sym_closure_parameters, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6879), 1, + anon_sym_RPAREN, STATE(3248), 2, sym_line_comment, sym_block_comment, - [93379] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93589] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - STATE(3298), 1, - sym_lifetime, + ACTIONS(5512), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3249), 2, sym_line_comment, sym_block_comment, - [93396] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93604] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(5355), 1, sym_super, - ACTIONS(6864), 1, + ACTIONS(5850), 1, sym_identifier, STATE(3250), 2, sym_line_comment, sym_block_comment, - [93413] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93621] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_STAR_SLASH, - ACTIONS(6868), 1, - sym__block_comment_content, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6881), 1, + sym_identifier, STATE(3251), 2, sym_line_comment, sym_block_comment, - [93430] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93638] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6870), 1, - anon_sym_in, + STATE(189), 1, + sym_closure_parameters, STATE(3252), 2, sym_line_comment, sym_block_comment, - [93447] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93655] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4221), 1, - anon_sym_LBRACE, - STATE(1922), 1, - sym_field_initializer_list, + ACTIONS(6883), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3253), 2, sym_line_comment, sym_block_comment, - [93464] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93670] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(253), 1, - sym_closure_parameters, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6879), 1, + anon_sym_RBRACK, STATE(3254), 2, sym_line_comment, sym_block_comment, - [93481] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93687] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(3961), 1, - anon_sym_COLON, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6885), 1, + anon_sym_RBRACE, STATE(3255), 2, sym_line_comment, sym_block_comment, - [93498] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93704] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(3979), 1, - anon_sym_COLON, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6887), 1, + sym_identifier, STATE(3256), 2, sym_line_comment, sym_block_comment, - [93515] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93721] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 2, - sym_identifier, - sym_super, + ACTIONS(6578), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3257), 2, sym_line_comment, sym_block_comment, - [93530] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93736] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6508), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5393), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3258), 2, sym_line_comment, sym_block_comment, - [93545] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93753] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6872), 1, - sym_identifier, + STATE(207), 1, + sym_closure_parameters, STATE(3259), 2, sym_line_comment, sym_block_comment, - [93562] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93770] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, - sym_identifier, + ACTIONS(6826), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3260), 2, sym_line_comment, sym_block_comment, - [93579] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93785] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6874), 1, + ACTIONS(6889), 1, sym_identifier, + ACTIONS(6891), 1, + sym_mutable_specifier, STATE(3261), 2, sym_line_comment, sym_block_comment, - [93596] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93802] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(612), 1, + sym_field_declaration_list, STATE(3262), 2, sym_line_comment, sym_block_comment, - [93613] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93819] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(3849), 1, - anon_sym_COLON, + ACTIONS(5677), 1, + sym_super, + ACTIONS(6871), 1, + sym_identifier, STATE(3263), 2, sym_line_comment, sym_block_comment, - [93630] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93836] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(761), 1, + sym_declaration_list, STATE(3264), 2, sym_line_comment, sym_block_comment, - [93647] = 5, + [93853] = 5, ACTIONS(27), 1, anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(251), 1, + STATE(210), 1, sym_closure_parameters, STATE(3265), 2, sym_line_comment, sym_block_comment, - [93664] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93870] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(766), 1, - sym_enum_variant_list, + ACTIONS(5393), 1, + anon_sym_RBRACK, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3266), 2, sym_line_comment, sym_block_comment, - [93681] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93887] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6880), 1, + ACTIONS(5994), 2, sym_identifier, + sym_super, STATE(3267), 2, sym_line_comment, sym_block_comment, - [93698] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93902] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, + ACTIONS(6851), 1, sym_super, - ACTIONS(6882), 1, + ACTIONS(6893), 1, sym_identifier, STATE(3268), 2, sym_line_comment, sym_block_comment, - [93715] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93919] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(5355), 1, sym_super, - ACTIONS(6884), 1, + ACTIONS(5886), 1, sym_identifier, STATE(3269), 2, sym_line_comment, sym_block_comment, - [93732] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93936] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6855), 1, + sym_super, + ACTIONS(6895), 1, + sym_identifier, STATE(3270), 2, sym_line_comment, sym_block_comment, - [93747] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93953] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_RPAREN, - ACTIONS(6890), 1, - anon_sym_COLON_COLON, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6103), 1, + sym_identifier, STATE(3271), 2, sym_line_comment, sym_block_comment, - [93764] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93970] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, + ACTIONS(5888), 2, sym_identifier, - ACTIONS(6894), 1, sym_super, STATE(3272), 2, sym_line_comment, sym_block_comment, - [93781] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [93985] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_field_declaration_list, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6897), 1, + anon_sym_RPAREN, STATE(3273), 2, sym_line_comment, sym_block_comment, - [93798] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94002] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(1041), 1, - sym_type_parameters, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6897), 1, + anon_sym_RBRACK, STATE(3274), 2, sym_line_comment, sym_block_comment, - [93815] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94019] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_RBRACE, STATE(3275), 2, sym_line_comment, sym_block_comment, - [93830] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94036] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5733), 1, - anon_sym_COLON, + STATE(212), 1, + sym_closure_parameters, STATE(3276), 2, sym_line_comment, sym_block_comment, - [93847] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94053] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(6855), 1, + sym_super, + ACTIONS(6901), 1, + sym_identifier, STATE(3277), 2, sym_line_comment, sym_block_comment, - [93864] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94070] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(6903), 1, + anon_sym_RBRACE, STATE(3278), 2, sym_line_comment, sym_block_comment, - [93881] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94087] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_field_declaration_list, STATE(3279), 2, sym_line_comment, sym_block_comment, - [93896] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94104] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, + ACTIONS(6877), 1, anon_sym_SEMI, - ACTIONS(6898), 1, + ACTIONS(6905), 1, anon_sym_RBRACE, STATE(3280), 2, sym_line_comment, sym_block_comment, - [93913] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94121] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - sym_super, - ACTIONS(6900), 1, - sym_identifier, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(5787), 1, + anon_sym_COLON, STATE(3281), 2, sym_line_comment, sym_block_comment, - [93930] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94138] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1415), 1, - sym_parameters, + ACTIONS(3692), 1, + anon_sym_LBRACE, + STATE(1541), 1, + sym_field_initializer_list, STATE(3282), 2, sym_line_comment, sym_block_comment, - [93947] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94155] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(4196), 1, + anon_sym_LT2, + STATE(1754), 1, + sym_type_arguments, STATE(3283), 2, sym_line_comment, sym_block_comment, - [93964] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94172] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6537), 1, - anon_sym_for, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + STATE(217), 1, + sym_closure_parameters, STATE(3284), 2, sym_line_comment, sym_block_comment, - [93981] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94189] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(4097), 1, - anon_sym_COLON, + ACTIONS(6907), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3285), 2, sym_line_comment, sym_block_comment, - [93998] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94204] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - sym_identifier, - ACTIONS(6904), 1, + ACTIONS(6835), 1, sym_super, + ACTIONS(6909), 1, + sym_identifier, STATE(3286), 2, sym_line_comment, sym_block_comment, - [94015] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94221] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, + ACTIONS(5677), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3287), 2, sym_line_comment, sym_block_comment, - [94030] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94236] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, + STATE(215), 1, + sym_closure_parameters, STATE(3288), 2, sym_line_comment, sym_block_comment, - [94047] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94253] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_super, + ACTIONS(6911), 1, + anon_sym_SEMI, + ACTIONS(6913), 1, + anon_sym_EQ, STATE(3289), 2, sym_line_comment, sym_block_comment, - [94064] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94270] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6912), 1, - anon_sym_RBRACE, + ACTIONS(6915), 1, + sym_identifier, + ACTIONS(6917), 1, + sym_super, STATE(3290), 2, sym_line_comment, sym_block_comment, - [94081] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94287] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6275), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6042), 1, + sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [94096] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94304] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2312), 1, - sym_parameters, + ACTIONS(6919), 1, + sym_identifier, + ACTIONS(6921), 1, + sym_super, STATE(3292), 2, sym_line_comment, sym_block_comment, - [94113] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94321] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(6568), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3293), 2, sym_line_comment, sym_block_comment, - [94130] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94336] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_RPAREN, - ACTIONS(6914), 1, - anon_sym_COLON_COLON, + STATE(216), 1, + sym_closure_parameters, STATE(3294), 2, sym_line_comment, sym_block_comment, - [94147] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94353] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2308), 1, + sym_parameters, STATE(3295), 2, sym_line_comment, sym_block_comment, - [94162] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94370] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, - anon_sym_RPAREN, + ACTIONS(6573), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3296), 2, sym_line_comment, sym_block_comment, - [94177] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94385] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_RPAREN, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, + ACTIONS(6855), 2, + sym_identifier, + sym_super, STATE(3297), 2, sym_line_comment, sym_block_comment, - [94194] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94400] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_RBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3298), 2, sym_line_comment, sym_block_comment, - [94209] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94417] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_field_declaration_list, + ACTIONS(6851), 1, + sym_super, + ACTIONS(6881), 1, + sym_identifier, STATE(3299), 2, sym_line_comment, sym_block_comment, - [94226] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94434] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(6835), 1, sym_super, - ACTIONS(6920), 1, + ACTIONS(6923), 1, sym_identifier, STATE(3300), 2, sym_line_comment, sym_block_comment, - [94243] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94451] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_EQ_GT, - ACTIONS(6922), 1, - anon_sym_AMP_AMP, + ACTIONS(6925), 1, + anon_sym_RPAREN, + ACTIONS(6927), 1, + anon_sym_COLON_COLON, STATE(3301), 2, sym_line_comment, sym_block_comment, - [94260] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94468] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, - anon_sym_EQ_GT, - ACTIONS(6922), 1, - anon_sym_AMP_AMP, + ACTIONS(6929), 2, + sym_identifier, + sym_super, STATE(3302), 2, sym_line_comment, sym_block_comment, - [94277] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94483] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(6851), 1, sym_super, - ACTIONS(6924), 1, + ACTIONS(6931), 1, sym_identifier, STATE(3303), 2, sym_line_comment, sym_block_comment, - [94294] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94500] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(6104), 1, + ACTIONS(6122), 1, sym_identifier, STATE(3304), 2, sym_line_comment, sym_block_comment, - [94311] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94517] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6921), 1, sym_super, - ACTIONS(6926), 1, + ACTIONS(6933), 1, sym_identifier, STATE(3305), 2, sym_line_comment, sym_block_comment, - [94328] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94534] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6928), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6935), 1, + anon_sym_RPAREN, + ACTIONS(6937), 1, + anon_sym_COLON_COLON, STATE(3306), 2, sym_line_comment, sym_block_comment, - [94343] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94551] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_declaration_list, STATE(3307), 2, sym_line_comment, sym_block_comment, - [94358] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94568] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 1, + ACTIONS(6939), 2, sym_identifier, - ACTIONS(6894), 1, - sym_super, + sym_metavariable, STATE(3308), 2, sym_line_comment, sym_block_comment, - [94375] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94583] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 1, - sym_identifier, - ACTIONS(6932), 1, - sym_super, + ACTIONS(6935), 1, + anon_sym_RPAREN, + ACTIONS(6941), 1, + anon_sym_COLON_COLON, STATE(3309), 2, sym_line_comment, sym_block_comment, - [94392] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94600] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6934), 1, - sym_identifier, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2415), 1, + sym_parameters, STATE(3310), 2, sym_line_comment, sym_block_comment, - [94409] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94617] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, + ACTIONS(6943), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3311), 2, sym_line_comment, sym_block_comment, - [94426] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94632] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, - sym_super, - ACTIONS(6936), 1, - sym_identifier, + ACTIONS(6945), 1, + anon_sym_SEMI, + ACTIONS(6947), 1, + anon_sym_as, STATE(3312), 2, sym_line_comment, sym_block_comment, - [94443] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94649] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(214), 1, - sym_closure_parameters, + ACTIONS(5888), 1, + sym_super, + ACTIONS(5970), 1, + sym_identifier, STATE(3313), 2, sym_line_comment, sym_block_comment, - [94460] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94666] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 2, + ACTIONS(6949), 2, sym_identifier, - sym_super, + sym_metavariable, STATE(3314), 2, sym_line_comment, sym_block_comment, - [94475] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94681] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6938), 1, - anon_sym_GT, + ACTIONS(6929), 1, + sym_super, + ACTIONS(6951), 1, + sym_identifier, STATE(3315), 2, sym_line_comment, sym_block_comment, - [94492] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94698] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6588), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6935), 1, + anon_sym_RPAREN, + ACTIONS(6953), 1, + anon_sym_COLON_COLON, STATE(3316), 2, sym_line_comment, sym_block_comment, - [94507] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94715] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - sym_identifier, - ACTIONS(6910), 1, + ACTIONS(6851), 1, sym_super, + ACTIONS(6955), 1, + sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [94524] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94732] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(5852), 1, sym_super, - ACTIONS(6900), 1, + ACTIONS(5996), 1, sym_identifier, STATE(3318), 2, sym_line_comment, sym_block_comment, - [94541] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94749] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(6869), 1, sym_super, - ACTIONS(6860), 1, + ACTIONS(6957), 1, sym_identifier, STATE(3319), 2, sym_line_comment, sym_block_comment, - [94558] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94766] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5945), 1, + ACTIONS(6853), 1, sym_identifier, + ACTIONS(6921), 1, + sym_super, STATE(3320), 2, sym_line_comment, sym_block_comment, - [94575] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94783] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6908), 1, - sym_identifier, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(6959), 1, + anon_sym_GT, STATE(3321), 2, sym_line_comment, sym_block_comment, - [94592] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94800] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - sym_super, - ACTIONS(6940), 1, - sym_identifier, + STATE(225), 1, + sym_closure_parameters, STATE(3322), 2, sym_line_comment, sym_block_comment, - [94609] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94817] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5943), 1, - sym_identifier, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2432), 1, + sym_parameters, STATE(3323), 2, sym_line_comment, sym_block_comment, - [94626] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94834] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(5677), 1, sym_super, - ACTIONS(6942), 1, + ACTIONS(6909), 1, sym_identifier, STATE(3324), 2, sym_line_comment, sym_block_comment, - [94643] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94851] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(6851), 1, sym_super, - ACTIONS(6944), 1, + ACTIONS(6887), 1, sym_identifier, STATE(3325), 2, sym_line_comment, sym_block_comment, - [94660] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94868] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5355), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(6042), 1, sym_identifier, STATE(3326), 2, sym_line_comment, sym_block_comment, - [94677] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94885] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6855), 1, sym_super, - ACTIONS(6946), 1, + ACTIONS(6919), 1, sym_identifier, STATE(3327), 2, sym_line_comment, sym_block_comment, - [94694] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94902] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(6835), 1, sym_super, - ACTIONS(6948), 1, + ACTIONS(6961), 1, sym_identifier, STATE(3328), 2, sym_line_comment, sym_block_comment, - [94711] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94919] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(6004), 1, + ACTIONS(6040), 1, sym_identifier, STATE(3329), 2, sym_line_comment, sym_block_comment, - [94728] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94936] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6921), 1, sym_super, - ACTIONS(6950), 1, + ACTIONS(6963), 1, sym_identifier, STATE(3330), 2, sym_line_comment, sym_block_comment, - [94745] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94953] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(6835), 1, sym_super, - ACTIONS(6948), 1, + ACTIONS(6965), 1, sym_identifier, STATE(3331), 2, sym_line_comment, sym_block_comment, - [94762] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94970] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5888), 1, sym_super, - ACTIONS(6004), 1, + ACTIONS(6068), 1, sym_identifier, STATE(3332), 2, sym_line_comment, sym_block_comment, - [94779] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [94987] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6921), 1, sym_super, - ACTIONS(6950), 1, + ACTIONS(6967), 1, sym_identifier, STATE(3333), 2, sym_line_comment, sym_block_comment, - [94796] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95004] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2458), 1, - sym_parameters, + ACTIONS(6835), 1, + sym_super, + ACTIONS(6969), 1, + sym_identifier, STATE(3334), 2, sym_line_comment, sym_block_comment, - [94813] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95021] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6952), 1, - anon_sym_COLON_COLON, + ACTIONS(5888), 1, + sym_super, + ACTIONS(6081), 1, + sym_identifier, STATE(3335), 2, sym_line_comment, sym_block_comment, - [94830] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95038] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_RPAREN, + ACTIONS(6921), 1, + sym_super, + ACTIONS(6971), 1, + sym_identifier, STATE(3336), 2, sym_line_comment, sym_block_comment, - [94847] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95055] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2451), 1, - sym_parameters, + ACTIONS(5677), 1, + sym_super, + ACTIONS(6969), 1, + sym_identifier, STATE(3337), 2, sym_line_comment, sym_block_comment, - [94864] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95072] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(619), 1, - sym_field_declaration_list, + ACTIONS(5355), 1, + sym_super, + ACTIONS(6081), 1, + sym_identifier, STATE(3338), 2, sym_line_comment, sym_block_comment, - [94881] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95089] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6855), 1, + sym_super, + ACTIONS(6971), 1, + sym_identifier, STATE(3339), 2, sym_line_comment, sym_block_comment, - [94896] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95106] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(4049), 1, - anon_sym_COLON, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym_declaration_list, STATE(3340), 2, sym_line_comment, sym_block_comment, - [94913] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95123] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, - anon_sym_COLON_COLON, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6973), 1, + anon_sym_EQ, STATE(3341), 2, sym_line_comment, sym_block_comment, - [94930] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95140] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1295), 1, - sym_declaration_list, + ACTIONS(6432), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3342), 2, sym_line_comment, sym_block_comment, - [94947] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95155] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5375), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3343), 2, sym_line_comment, sym_block_comment, - [94962] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95172] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, + ACTIONS(5886), 1, + sym_identifier, + ACTIONS(5888), 1, + sym_super, STATE(3344), 2, sym_line_comment, sym_block_comment, - [94979] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95189] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(3775), 1, - anon_sym_COLON_COLON, + ACTIONS(6403), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3345), 2, sym_line_comment, sym_block_comment, - [94996] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95204] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_BANG, - ACTIONS(6966), 1, - anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(704), 1, + sym_field_declaration_list, STATE(3346), 2, sym_line_comment, sym_block_comment, - [95013] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95221] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6070), 1, - sym_identifier, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(6975), 1, + anon_sym_COLON_COLON, STATE(3347), 2, sym_line_comment, sym_block_comment, - [95030] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95238] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_in, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + STATE(3077), 1, + sym_lifetime, STATE(3348), 2, sym_line_comment, sym_block_comment, - [95047] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95255] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 2, - sym_identifier, - sym_super, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1315), 1, + sym_declaration_list, STATE(3349), 2, sym_line_comment, sym_block_comment, - [95062] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95272] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6977), 1, + anon_sym_in, STATE(3350), 2, sym_line_comment, sym_block_comment, - [95077] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95289] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6972), 1, - sym_identifier, + ACTIONS(6979), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3351), 2, sym_line_comment, sym_block_comment, - [95094] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95304] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3764), 1, + anon_sym_COLON_COLON, STATE(3352), 2, sym_line_comment, sym_block_comment, - [95111] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95321] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym_field_declaration_list, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(3766), 1, + anon_sym_COLON_COLON, STATE(3353), 2, sym_line_comment, sym_block_comment, - [95128] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95338] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_RBRACK, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(6639), 1, + anon_sym_for, STATE(3354), 2, sym_line_comment, sym_block_comment, - [95145] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95355] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1873), 1, - sym_type_arguments, + ACTIONS(6981), 1, + anon_sym_BANG, + ACTIONS(6983), 1, + anon_sym_COLON_COLON, STATE(3355), 2, sym_line_comment, sym_block_comment, - [95162] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95372] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6974), 1, - anon_sym_RBRACE, + ACTIONS(6985), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3356), 2, sym_line_comment, sym_block_comment, - [95179] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95387] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6976), 1, - sym_identifier, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(6649), 1, + anon_sym_for, STATE(3357), 2, sym_line_comment, sym_block_comment, - [95196] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95404] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_declaration_list, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(926), 1, + sym_type_parameters, STATE(3358), 2, sym_line_comment, sym_block_comment, - [95213] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95421] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - sym_identifier, - ACTIONS(6980), 1, - sym_mutable_specifier, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1324), 1, + sym_declaration_list, STATE(3359), 2, sym_line_comment, sym_block_comment, - [95230] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95438] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(968), 1, - sym_type_parameters, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1325), 1, + sym_declaration_list, STATE(3360), 2, sym_line_comment, sym_block_comment, - [95247] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95455] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, - anon_sym_LBRACK, - ACTIONS(6984), 1, - anon_sym_BANG, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6987), 1, + sym_identifier, STATE(3361), 2, sym_line_comment, sym_block_comment, - [95264] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95472] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6989), 1, + sym_identifier, STATE(3362), 2, sym_line_comment, sym_block_comment, - [95281] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95489] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(686), 1, - sym_declaration_list, + ACTIONS(5793), 2, + sym_identifier, + sym_super, STATE(3363), 2, sym_line_comment, sym_block_comment, - [95298] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95504] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, + ACTIONS(3452), 1, anon_sym_LPAREN, - STATE(2309), 1, + STATE(1402), 1, sym_parameters, STATE(3364), 2, sym_line_comment, sym_block_comment, - [95315] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95521] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_field_declaration_list, STATE(3365), 2, sym_line_comment, sym_block_comment, - [95330] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95538] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(687), 1, - sym_declaration_list, + ACTIONS(5677), 1, + sym_super, + ACTIONS(6991), 1, + sym_identifier, STATE(3366), 2, sym_line_comment, sym_block_comment, - [95347] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95555] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_declaration_list, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(4044), 1, + anon_sym_COLON, STATE(3367), 2, sym_line_comment, sym_block_comment, - [95364] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95572] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1181), 1, - sym_declaration_list, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(1054), 1, + sym_type_parameters, STATE(3368), 2, sym_line_comment, sym_block_comment, - [95381] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95589] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2338), 1, + sym_parameters, STATE(3369), 2, sym_line_comment, sym_block_comment, - [95398] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95606] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(771), 1, - sym_field_declaration_list, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(3982), 1, + anon_sym_COLON, STATE(3370), 2, sym_line_comment, sym_block_comment, - [95415] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95623] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2309), 1, + sym_parameters, STATE(3371), 2, sym_line_comment, sym_block_comment, - [95430] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95640] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6988), 1, - anon_sym_RPAREN, + ACTIONS(6851), 2, + sym_identifier, + sym_super, STATE(3372), 2, sym_line_comment, sym_block_comment, - [95447] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95655] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6988), 1, - anon_sym_RBRACK, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_field_declaration_list, STATE(3373), 2, sym_line_comment, sym_block_comment, - [95464] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95672] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(1003), 1, + sym_type_parameters, STATE(3374), 2, sym_line_comment, sym_block_comment, - [95481] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95689] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(6993), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3375), 2, sym_line_comment, sym_block_comment, - [95498] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95704] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(768), 1, + sym_declaration_list, STATE(3376), 2, sym_line_comment, sym_block_comment, - [95515] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95721] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 2, - sym_identifier, - sym_super, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1146), 1, + sym_enum_variant_list, STATE(3377), 2, sym_line_comment, sym_block_comment, - [95530] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95738] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, + ACTIONS(5375), 1, + anon_sym_RBRACK, + ACTIONS(6877), 1, anon_sym_SEMI, STATE(3378), 2, sym_line_comment, sym_block_comment, - [95547] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95755] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_declaration_list, + ACTIONS(5351), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3379), 2, sym_line_comment, sym_block_comment, - [95564] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95772] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(6995), 1, + anon_sym_EQ, STATE(3380), 2, sym_line_comment, sym_block_comment, - [95581] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95789] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, + ACTIONS(5351), 1, + anon_sym_RBRACK, + ACTIONS(6877), 1, anon_sym_SEMI, - ACTIONS(6992), 1, - anon_sym_RBRACE, STATE(3381), 2, sym_line_comment, sym_block_comment, - [95598] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95806] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, + ACTIONS(5353), 1, + anon_sym_RPAREN, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3382), 2, sym_line_comment, sym_block_comment, - [95615] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95823] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_super, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_enum_variant_list, STATE(3383), 2, sym_line_comment, sym_block_comment, - [95632] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95840] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6994), 1, - sym_identifier, + ACTIONS(5353), 1, + anon_sym_RBRACK, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3384), 2, sym_line_comment, sym_block_comment, - [95649] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95857] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_declaration_list, + STATE(1201), 1, + sym_field_declaration_list, STATE(3385), 2, sym_line_comment, sym_block_comment, - [95666] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95874] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1164), 1, - sym_enum_variant_list, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(975), 1, + sym_type_parameters, STATE(3386), 2, sym_line_comment, sym_block_comment, - [95683] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95891] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2313), 1, - sym_parameters, + ACTIONS(5345), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3387), 2, sym_line_comment, sym_block_comment, - [95700] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95906] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 2, - anon_sym_RBRACE, + ACTIONS(6997), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(3388), 2, sym_line_comment, sym_block_comment, - [95715] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95921] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(769), 1, + sym_declaration_list, STATE(3389), 2, sym_line_comment, sym_block_comment, - [95732] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95938] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6998), 1, - anon_sym_RPAREN, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1202), 1, + sym_declaration_list, STATE(3390), 2, sym_line_comment, sym_block_comment, - [95749] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95955] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6998), 1, - anon_sym_RBRACK, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1203), 1, + sym_declaration_list, STATE(3391), 2, sym_line_comment, sym_block_comment, - [95766] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95972] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(7000), 1, - anon_sym_RPAREN, + STATE(193), 1, + sym_closure_parameters, STATE(3392), 2, sym_line_comment, sym_block_comment, - [95783] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [95989] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(7000), 1, - anon_sym_RBRACK, + ACTIONS(6999), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3393), 2, sym_line_comment, sym_block_comment, - [95800] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96004] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(887), 1, - sym_type_parameters, + ACTIONS(7001), 2, + sym_float_literal, + sym_integer_literal, STATE(3394), 2, sym_line_comment, sym_block_comment, - [95817] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96019] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 2, - anon_sym_RBRACE, + ACTIONS(6437), 2, + anon_sym_PIPE, anon_sym_COMMA, STATE(3395), 2, sym_line_comment, sym_block_comment, - [95832] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96034] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1395), 1, - sym_parameters, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1184), 1, + sym_enum_variant_list, STATE(3396), 2, sym_line_comment, sym_block_comment, - [95849] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96051] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, - anon_sym_SEMI, - ACTIONS(7004), 1, - anon_sym_EQ, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_field_declaration_list, STATE(3397), 2, sym_line_comment, sym_block_comment, - [95866] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96068] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - sym_identifier, - sym_super, + STATE(188), 1, + sym_closure_parameters, STATE(3398), 2, sym_line_comment, sym_block_comment, - [95881] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96085] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2332), 1, + sym_parameters, STATE(3399), 2, sym_line_comment, sym_block_comment, - [95896] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96102] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(7003), 1, + anon_sym_SEMI, + ACTIONS(7005), 1, + anon_sym_EQ, STATE(3400), 2, sym_line_comment, sym_block_comment, - [95913] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96119] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2339), 1, - sym_parameters, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1159), 1, + sym_declaration_list, STATE(3401), 2, sym_line_comment, sym_block_comment, - [95930] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96136] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_parameters, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(7007), 1, + anon_sym_RPAREN, STATE(3402), 2, sym_line_comment, sym_block_comment, - [95947] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96153] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(222), 1, - sym_closure_parameters, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(7007), 1, + anon_sym_RBRACK, STATE(3403), 2, sym_line_comment, sym_block_comment, - [95964] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96170] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_enum_variant_list, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(7009), 1, + anon_sym_RPAREN, STATE(3404), 2, sym_line_comment, sym_block_comment, - [95981] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96187] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_enum_variant_list, + ACTIONS(6877), 1, + anon_sym_SEMI, + ACTIONS(7009), 1, + anon_sym_RBRACK, STATE(3405), 2, sym_line_comment, sym_block_comment, - [95998] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96204] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - anon_sym_SEMI, - ACTIONS(7008), 1, - anon_sym_as, + ACTIONS(3460), 1, + anon_sym_LT2, + STATE(1451), 1, + sym_type_arguments, STATE(3406), 2, sym_line_comment, sym_block_comment, - [96015] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96221] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7010), 1, + ACTIONS(7011), 1, + anon_sym_SEMI, + ACTIONS(7013), 1, anon_sym_EQ, STATE(3407), 2, sym_line_comment, sym_block_comment, - [96032] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96238] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, + ACTIONS(6953), 1, + anon_sym_COLON_COLON, + ACTIONS(7015), 1, + anon_sym_RPAREN, STATE(3408), 2, sym_line_comment, sym_block_comment, - [96049] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96255] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(699), 1, - sym_declaration_list, + STATE(1165), 1, + sym_field_declaration_list, STATE(3409), 2, sym_line_comment, sym_block_comment, - [96066] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96272] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6711), 1, - anon_sym_for, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1209), 1, + sym_field_declaration_list, STATE(3410), 2, sym_line_comment, sym_block_comment, - [96083] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96289] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1365), 1, + sym_declaration_list, STATE(3411), 2, sym_line_comment, sym_block_comment, - [96100] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96306] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - STATE(1136), 1, - sym_field_declaration_list, + STATE(533), 1, + sym_declaration_list, STATE(3412), 2, sym_line_comment, sym_block_comment, - [96117] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96323] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1188), 1, - sym_field_declaration_list, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2342), 1, + sym_parameters, STATE(3413), 2, sym_line_comment, sym_block_comment, - [96134] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96340] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(6895), 1, + sym_identifier, + ACTIONS(6921), 1, + sym_super, STATE(3414), 2, sym_line_comment, sym_block_comment, - [96151] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96357] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5158), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_declaration_list, STATE(3415), 2, sym_line_comment, sym_block_comment, - [96166] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96374] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6921), 2, + sym_identifier, + sym_super, STATE(3416), 2, sym_line_comment, sym_block_comment, - [96181] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96389] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4915), 1, - anon_sym_COLON_COLON, + ACTIONS(7017), 1, + anon_sym_SEMI, + ACTIONS(7019), 1, + anon_sym_as, STATE(3417), 2, sym_line_comment, sym_block_comment, - [96198] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96406] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, - anon_sym_SEMI, - ACTIONS(7014), 1, - anon_sym_EQ, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(7021), 1, + anon_sym_COLON_COLON, STATE(3418), 2, sym_line_comment, sym_block_comment, - [96215] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96423] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, - anon_sym_LPAREN, - ACTIONS(7018), 1, - anon_sym_COLON_COLON, + ACTIONS(4236), 1, + anon_sym_LBRACE, + STATE(1944), 1, + sym_field_initializer_list, STATE(3419), 2, sym_line_comment, sym_block_comment, - [96232] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96440] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(710), 1, - sym_field_declaration_list, + ACTIONS(6456), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3420), 2, sym_line_comment, sym_block_comment, - [96249] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96455] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5959), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(3890), 1, + anon_sym_COLON, STATE(3421), 2, sym_line_comment, sym_block_comment, - [96264] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96472] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, + ACTIONS(3196), 1, anon_sym_PLUS, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, + ACTIONS(3902), 1, + anon_sym_COLON, STATE(3422), 2, sym_line_comment, sym_block_comment, - [96281] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96489] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4367), 1, - anon_sym_COLON_COLON, + ACTIONS(5133), 1, + anon_sym_LBRACE, + STATE(638), 1, + sym_field_declaration_list, STATE(3423), 2, sym_line_comment, sym_block_comment, - [96298] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96506] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_declaration_list, + ACTIONS(6767), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3424), 2, sym_line_comment, sym_block_comment, - [96315] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96521] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6966), 1, - anon_sym_COLON_COLON, + ACTIONS(5793), 1, + sym_super, + ACTIONS(6849), 1, + sym_identifier, STATE(3425), 2, sym_line_comment, sym_block_comment, - [96332] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96538] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_field_declaration_list, + ACTIONS(7023), 1, + anon_sym_LPAREN, + ACTIONS(7025), 1, + anon_sym_COLON_COLON, STATE(3426), 2, sym_line_comment, sym_block_comment, - [96349] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96555] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(922), 1, - sym_type_parameters, + ACTIONS(7027), 1, + anon_sym_SEMI, + ACTIONS(7029), 1, + anon_sym_as, STATE(3427), 2, sym_line_comment, sym_block_comment, - [96366] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96572] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6816), 1, - sym_identifier, + ACTIONS(5381), 1, + anon_sym_RBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3428), 2, sym_line_comment, sym_block_comment, - [96383] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96589] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_declaration_list, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4374), 1, + anon_sym_COLON_COLON, STATE(3429), 2, sym_line_comment, sym_block_comment, - [96400] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96606] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 2, - sym_identifier, - sym_super, + ACTIONS(3594), 1, + anon_sym_PLUS, + ACTIONS(4344), 1, + anon_sym_COLON_COLON, STATE(3430), 2, sym_line_comment, sym_block_comment, - [96415] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96623] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_SEMI, - ACTIONS(7022), 1, - anon_sym_as, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(6983), 1, + anon_sym_COLON_COLON, STATE(3431), 2, sym_line_comment, sym_block_comment, - [96432] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96640] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6927), 1, + anon_sym_COLON_COLON, + ACTIONS(7031), 1, + anon_sym_RPAREN, STATE(3432), 2, sym_line_comment, sym_block_comment, - [96447] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96657] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(931), 1, + sym_type_parameters, STATE(3433), 2, sym_line_comment, sym_block_comment, - [96462] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96674] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(7028), 1, - anon_sym_COLON_COLON, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_declaration_list, STATE(3434), 2, sym_line_comment, sym_block_comment, - [96479] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96691] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - sym_identifier, - ACTIONS(7032), 1, - sym_super, + ACTIONS(7033), 1, + anon_sym_STAR_SLASH, + ACTIONS(7035), 1, + sym__block_comment_content, STATE(3435), 2, sym_line_comment, sym_block_comment, - [96496] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96708] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_BANG, - ACTIONS(7036), 1, - anon_sym_COLON_COLON, + ACTIONS(7037), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3436), 2, sym_line_comment, sym_block_comment, - [96513] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96723] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6430), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4904), 1, + anon_sym_COLON_COLON, + ACTIONS(5000), 1, + anon_sym_BANG, STATE(3437), 2, sym_line_comment, sym_block_comment, - [96528] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96740] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6754), 1, - anon_sym_for, + ACTIONS(7039), 1, + sym_identifier, + ACTIONS(7041), 1, + sym_super, STATE(3438), 2, sym_line_comment, sym_block_comment, - [96545] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96757] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1193), 1, - sym_declaration_list, + ACTIONS(6760), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3439), 2, sym_line_comment, sym_block_comment, - [96562] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96772] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6851), 1, + sym_super, + ACTIONS(6987), 1, + sym_identifier, STATE(3440), 2, sym_line_comment, sym_block_comment, - [96577] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96789] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, + ACTIONS(5127), 1, anon_sym_LBRACE, - STATE(605), 1, - sym_enum_variant_list, + STATE(661), 1, + sym_declaration_list, STATE(3441), 2, sym_line_comment, sym_block_comment, - [96594] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96806] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(7040), 1, - anon_sym_COLON_COLON, + ACTIONS(7043), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3442), 2, sym_line_comment, sym_block_comment, - [96611] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96821] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(7036), 1, - anon_sym_COLON_COLON, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(599), 1, + sym_enum_variant_list, STATE(3443), 2, sym_line_comment, sym_block_comment, - [96628] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96838] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_BANG, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(7045), 1, + anon_sym_COLON_COLON, STATE(3444), 2, sym_line_comment, sym_block_comment, - [96645] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96855] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 2, - sym_identifier, - sym_metavariable, + STATE(199), 1, + sym_closure_parameters, STATE(3445), 2, sym_line_comment, sym_block_comment, - [96660] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96872] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(7047), 1, + anon_sym_BANG, + ACTIONS(7049), 1, + anon_sym_COLON_COLON, STATE(3446), 2, sym_line_comment, sym_block_comment, - [96677] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96889] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 2, - sym_identifier, - sym_super, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(709), 1, + sym_declaration_list, STATE(3447), 2, sym_line_comment, sym_block_comment, - [96692] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96906] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5341), 1, + anon_sym_RBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3448), 2, sym_line_comment, sym_block_comment, - [96707] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96923] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2335), 1, - sym_parameters, + ACTIONS(6937), 1, + anon_sym_COLON_COLON, + ACTIONS(7015), 1, + anon_sym_RPAREN, STATE(3449), 2, sym_line_comment, sym_block_comment, - [96724] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96940] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7050), 1, - anon_sym_in, + ACTIONS(6837), 1, + anon_sym_LPAREN, + ACTIONS(7051), 1, + anon_sym_COLON_COLON, STATE(3450), 2, sym_line_comment, sym_block_comment, - [96741] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96957] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4696), 1, + anon_sym_BANG, + ACTIONS(7049), 1, + anon_sym_COLON_COLON, STATE(3451), 2, sym_line_comment, sym_block_comment, - [96756] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96974] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_declaration_list, + ACTIONS(5135), 1, + anon_sym_LT, + STATE(1057), 1, + sym_type_parameters, STATE(3452), 2, sym_line_comment, sym_block_comment, - [96773] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [96991] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(988), 1, - sym_type_parameters, + ACTIONS(5343), 1, + anon_sym_RBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3453), 2, sym_line_comment, sym_block_comment, - [96790] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97008] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(989), 1, - sym_type_parameters, + ACTIONS(7053), 1, + anon_sym_LBRACK, + ACTIONS(7055), 1, + anon_sym_BANG, STATE(3454), 2, sym_line_comment, sym_block_comment, - [96807] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97025] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_declaration_list, + ACTIONS(7057), 2, + sym_identifier, + sym_metavariable, STATE(3455), 2, sym_line_comment, sym_block_comment, - [96824] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97040] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(1219), 1, + sym_enum_variant_list, STATE(3456), 2, sym_line_comment, sym_block_comment, - [96841] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97057] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(4856), 1, + anon_sym_BANG, + ACTIONS(4910), 1, + anon_sym_COLON_COLON, STATE(3457), 2, sym_line_comment, sym_block_comment, - [96858] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97074] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(7059), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3458), 2, sym_line_comment, sym_block_comment, - [96875] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97089] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 2, - sym_identifier, - sym_super, + ACTIONS(3196), 1, + anon_sym_PLUS, + ACTIONS(3898), 1, + anon_sym_COLON, STATE(3459), 2, sym_line_comment, sym_block_comment, - [96890] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97106] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5947), 1, - sym_identifier, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7061), 1, + anon_sym_in, STATE(3460), 2, sym_line_comment, sym_block_comment, - [96907] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97123] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 2, - sym_identifier, - sym_metavariable, + ACTIONS(7063), 1, + anon_sym_LBRACK, + ACTIONS(7065), 1, + anon_sym_BANG, STATE(3461), 2, sym_line_comment, sym_block_comment, - [96922] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97140] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(7067), 2, + sym_identifier, + sym_metavariable, STATE(3462), 2, sym_line_comment, sym_block_comment, - [96939] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97155] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4856), 1, + anon_sym_BANG, + ACTIONS(4942), 1, + anon_sym_COLON_COLON, STATE(3463), 2, sym_line_comment, sym_block_comment, - [96954] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97172] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(992), 1, + sym_type_parameters, STATE(3464), 2, sym_line_comment, sym_block_comment, - [96971] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97189] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(757), 1, - sym_declaration_list, + ACTIONS(6859), 1, + anon_sym_LT, + STATE(993), 1, + sym_type_parameters, STATE(3465), 2, sym_line_comment, sym_block_comment, - [96988] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97206] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1408), 1, - sym_parameters, + ACTIONS(5974), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3466), 2, sym_line_comment, sym_block_comment, - [97005] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97221] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4786), 1, anon_sym_COLON_COLON, - ACTIONS(6774), 1, + ACTIONS(5181), 1, anon_sym_for, STATE(3467), 2, sym_line_comment, sym_block_comment, - [97022] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97238] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym_identifier, - ACTIONS(7060), 1, - sym_super, + ACTIONS(3452), 1, + anon_sym_LPAREN, + STATE(1415), 1, + sym_parameters, STATE(3468), 2, sym_line_comment, sym_block_comment, - [97039] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97255] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4786), 1, anon_sym_COLON_COLON, - ACTIONS(6776), 1, + ACTIONS(6201), 1, anon_sym_for, STATE(3469), 2, sym_line_comment, sym_block_comment, - [97056] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97272] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6892), 1, - sym_identifier, + ACTIONS(5127), 1, + anon_sym_LBRACE, + STATE(575), 1, + sym_declaration_list, STATE(3470), 2, sym_line_comment, sym_block_comment, - [97073] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97289] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7062), 1, - anon_sym_EQ, + ACTIONS(7069), 1, + sym_identifier, + ACTIONS(7071), 1, + sym_super, STATE(3471), 2, sym_line_comment, sym_block_comment, - [97090] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97306] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6880), 1, - sym_identifier, + ACTIONS(5211), 1, + anon_sym_COLON, + STATE(2611), 1, + sym_trait_bounds, STATE(3472), 2, sym_line_comment, sym_block_comment, - [97107] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97323] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 2, - anon_sym_const, + ACTIONS(7073), 1, + sym_identifier, + ACTIONS(7075), 1, sym_mutable_specifier, STATE(3473), 2, sym_line_comment, sym_block_comment, - [97122] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97340] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7066), 1, - anon_sym_in, + ACTIONS(7077), 2, + sym_identifier, + sym_metavariable, STATE(3474), 2, sym_line_comment, sym_block_comment, - [97139] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97355] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6780), 1, - anon_sym_for, + ACTIONS(5677), 1, + sym_super, + ACTIONS(6833), 1, + sym_identifier, STATE(3475), 2, sym_line_comment, sym_block_comment, - [97156] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97372] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_BANG, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(6792), 1, + anon_sym_for, STATE(3476), 2, sym_line_comment, sym_block_comment, - [97173] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97389] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7072), 1, - anon_sym_in, + ACTIONS(7079), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3477), 2, sym_line_comment, sym_block_comment, - [97190] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97404] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_in, + ACTIONS(7081), 1, + anon_sym_SEMI, + ACTIONS(7083), 1, + anon_sym_EQ, STATE(3478), 2, sym_line_comment, sym_block_comment, - [97207] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97421] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7076), 1, - anon_sym_in, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, + ACTIONS(6796), 1, + anon_sym_for, STATE(3479), 2, sym_line_comment, sym_block_comment, - [97224] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97438] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7078), 1, - anon_sym_in, + ACTIONS(7085), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3480), 2, sym_line_comment, sym_block_comment, - [97241] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97453] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(778), 1, + sym_enum_variant_list, STATE(3481), 2, sym_line_comment, sym_block_comment, - [97258] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97470] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, + ACTIONS(4192), 1, anon_sym_LPAREN, - STATE(2098), 1, + STATE(1673), 1, sym_parameters, STATE(3482), 2, sym_line_comment, sym_block_comment, - [97275] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97487] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_identifier, - ACTIONS(6788), 1, - sym_mutable_specifier, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7087), 1, + anon_sym_in, STATE(3483), 2, sym_line_comment, sym_block_comment, - [97292] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97504] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, + ACTIONS(5471), 1, + anon_sym_LBRACE, + STATE(666), 1, + sym_enum_variant_list, STATE(3484), 2, sym_line_comment, sym_block_comment, - [97309] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97521] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3411), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5793), 1, + sym_super, + ACTIONS(7089), 1, + sym_identifier, STATE(3485), 2, sym_line_comment, sym_block_comment, - [97324] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97538] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4786), 1, anon_sym_COLON_COLON, - ACTIONS(5151), 1, + ACTIONS(6804), 1, anon_sym_for, STATE(3486), 2, sym_line_comment, sym_block_comment, - [97341] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97555] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(7082), 1, - anon_sym_RPAREN, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1222), 1, + sym_field_declaration_list, STATE(3487), 2, sym_line_comment, sym_block_comment, - [97358] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97572] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2101), 1, - sym_parameters, + ACTIONS(7091), 1, + anon_sym_LBRACK, + ACTIONS(7093), 1, + anon_sym_BANG, STATE(3488), 2, sym_line_comment, sym_block_comment, - [97375] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97589] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 2, - sym_identifier, - sym_super, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7095), 1, + anon_sym_in, STATE(3489), 2, sym_line_comment, sym_block_comment, - [97390] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97606] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7097), 1, + anon_sym_in, STATE(3490), 2, sym_line_comment, sym_block_comment, - [97407] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97623] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7099), 1, + anon_sym_in, STATE(3491), 2, sym_line_comment, sym_block_comment, - [97424] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97640] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - sym_identifier, - ACTIONS(7088), 1, - sym_mutable_specifier, + ACTIONS(5624), 1, + anon_sym_PIPE, + ACTIONS(7101), 1, + anon_sym_in, STATE(3492), 2, sym_line_comment, sym_block_comment, - [97441] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97657] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2108), 1, + sym_parameters, STATE(3493), 2, sym_line_comment, sym_block_comment, - [97458] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97674] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2105), 1, - sym_parameters, + ACTIONS(6917), 2, + sym_identifier, + sym_super, STATE(3494), 2, sym_line_comment, sym_block_comment, - [97475] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97689] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 2, + ACTIONS(7103), 2, sym_identifier, - sym_super, + sym_metavariable, STATE(3495), 2, sym_line_comment, sym_block_comment, - [97490] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97704] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6812), 1, + sym_identifier, + ACTIONS(6816), 1, + sym_mutable_specifier, STATE(3496), 2, sym_line_comment, sym_block_comment, - [97505] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97721] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2418), 1, + sym_parameters, STATE(3497), 2, sym_line_comment, sym_block_comment, - [97522] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97738] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1305), 1, - sym_declaration_list, + ACTIONS(6835), 2, + sym_identifier, + sym_super, STATE(3498), 2, sym_line_comment, sym_block_comment, - [97539] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97753] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - sym_identifier, + ACTIONS(3106), 1, + anon_sym_SQUOTE, + STATE(3260), 1, + sym_lifetime, STATE(3499), 2, sym_line_comment, sym_block_comment, - [97553] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97770] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_fn, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2298), 1, + sym_parameters, STATE(3500), 2, sym_line_comment, sym_block_comment, - [97567] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97787] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - anon_sym_RBRACE, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2111), 1, + sym_parameters, STATE(3501), 2, sym_line_comment, sym_block_comment, - [97581] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97804] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, + ACTIONS(6941), 1, anon_sym_COLON_COLON, + ACTIONS(7015), 1, + anon_sym_RPAREN, STATE(3502), 2, sym_line_comment, sym_block_comment, - [97595] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97821] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(972), 1, - anon_sym_EQ_GT, + ACTIONS(7105), 1, + sym_identifier, + ACTIONS(7107), 1, + sym_mutable_specifier, STATE(3503), 2, sym_line_comment, sym_block_comment, - [97609] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97838] = 5, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - sym__raw_string_literal_end, + ACTIONS(4708), 1, + anon_sym_LPAREN, + STATE(2114), 1, + sym_parameters, STATE(3504), 2, sym_line_comment, sym_block_comment, - [97623] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97855] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, + ACTIONS(7109), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3505), 2, sym_line_comment, sym_block_comment, - [97637] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97870] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_fn, + ACTIONS(7111), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3506), 2, sym_line_comment, sym_block_comment, - [97651] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97885] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - sym__line_doc_content, + ACTIONS(7113), 1, + anon_sym_RBRACK, STATE(3507), 2, sym_line_comment, sym_block_comment, - [97665] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97899] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, + ACTIONS(7115), 1, + anon_sym_LPAREN, STATE(3508), 2, sym_line_comment, sym_block_comment, - [97679] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97913] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, + ACTIONS(7117), 1, + anon_sym_SEMI, STATE(3509), 2, sym_line_comment, sym_block_comment, - [97693] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97927] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_LPAREN, + ACTIONS(7119), 1, + anon_sym_COLON, STATE(3510), 2, sym_line_comment, sym_block_comment, - [97707] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97941] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, + ACTIONS(7121), 1, + anon_sym_COLON, STATE(3511), 2, sym_line_comment, sym_block_comment, - [97721] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97955] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_EQ_GT, + ACTIONS(7123), 1, + sym__raw_string_literal_end, STATE(3512), 2, sym_line_comment, sym_block_comment, - [97735] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97969] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, + ACTIONS(7125), 1, + sym_identifier, STATE(3513), 2, sym_line_comment, sym_block_comment, - [97749] = 4, - ACTIONS(105), 1, + [97983] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_COLON_COLON, + ACTIONS(7127), 1, + aux_sym_line_comment_token2, STATE(3514), 2, sym_line_comment, sym_block_comment, - [97763] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [97997] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_fn, + ACTIONS(7129), 1, + anon_sym_SEMI, STATE(3515), 2, sym_line_comment, sym_block_comment, - [97777] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98011] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_identifier, + ACTIONS(7131), 1, + anon_sym_SEMI, STATE(3516), 2, sym_line_comment, sym_block_comment, - [97791] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98025] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - anon_sym_RPAREN, + ACTIONS(6223), 1, + anon_sym_GT, STATE(3517), 2, sym_line_comment, sym_block_comment, - [97805] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98039] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, + ACTIONS(7133), 1, + anon_sym_SEMI, STATE(3518), 2, sym_line_comment, sym_block_comment, - [97819] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98053] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, + ACTIONS(7135), 1, + sym_identifier, STATE(3519), 2, sym_line_comment, sym_block_comment, - [97833] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98067] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_RPAREN, + ACTIONS(5187), 1, + anon_sym_COLON_COLON, STATE(3520), 2, sym_line_comment, sym_block_comment, - [97847] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98081] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 1, - anon_sym_SEMI, + ACTIONS(7137), 1, + anon_sym_COLON_COLON, STATE(3521), 2, sym_line_comment, sym_block_comment, - [97861] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98095] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - anon_sym_RBRACE, + ACTIONS(7139), 1, + anon_sym_fn, STATE(3522), 2, sym_line_comment, sym_block_comment, - [97875] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98109] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_EQ, + ACTIONS(7141), 1, + anon_sym_SEMI, STATE(3523), 2, sym_line_comment, sym_block_comment, - [97889] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98123] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym_identifier, + ACTIONS(7143), 1, + anon_sym_SEMI, STATE(3524), 2, sym_line_comment, sym_block_comment, - [97903] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98137] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, - anon_sym_SEMI, + ACTIONS(6095), 1, + anon_sym_LBRACE, STATE(3525), 2, sym_line_comment, sym_block_comment, - [97917] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98151] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, + ACTIONS(7145), 1, + sym__line_doc_content, STATE(3526), 2, sym_line_comment, sym_block_comment, - [97931] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98165] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_SEMI, + ACTIONS(7147), 1, + anon_sym_RBRACE, STATE(3527), 2, sym_line_comment, sym_block_comment, - [97945] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98179] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, + ACTIONS(7149), 1, anon_sym_SEMI, STATE(3528), 2, sym_line_comment, sym_block_comment, - [97959] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98193] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, + ACTIONS(7151), 1, + anon_sym_COLON, STATE(3529), 2, sym_line_comment, sym_block_comment, - [97973] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98207] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_RPAREN, + ACTIONS(7153), 1, + anon_sym_SEMI, STATE(3530), 2, sym_line_comment, sym_block_comment, - [97987] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98221] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, + ACTIONS(7155), 1, anon_sym_RBRACK, STATE(3531), 2, sym_line_comment, sym_block_comment, - [98001] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98235] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_STAR_SLASH, + ACTIONS(7157), 1, + sym_identifier, STATE(3532), 2, sym_line_comment, sym_block_comment, - [98015] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98249] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_RBRACK, + ACTIONS(4736), 1, + anon_sym_fn, STATE(3533), 2, sym_line_comment, sym_block_comment, - [98029] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98263] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, + ACTIONS(7159), 1, sym_identifier, STATE(3534), 2, sym_line_comment, sym_block_comment, - [98043] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98277] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, + ACTIONS(7161), 1, sym_identifier, STATE(3535), 2, sym_line_comment, sym_block_comment, - [98057] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98291] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - anon_sym_RBRACK, + ACTIONS(7163), 1, + anon_sym_LPAREN, STATE(3536), 2, sym_line_comment, sym_block_comment, - [98071] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98305] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3229), 1, - anon_sym_PLUS, + ACTIONS(7165), 1, + anon_sym_SEMI, STATE(3537), 2, sym_line_comment, sym_block_comment, - [98085] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98319] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, + ACTIONS(7167), 1, sym_identifier, STATE(3538), 2, sym_line_comment, sym_block_comment, - [98099] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98333] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, + ACTIONS(7169), 1, + anon_sym_fn, STATE(3539), 2, sym_line_comment, sym_block_comment, - [98113] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98347] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_RBRACK, + ACTIONS(7171), 1, + sym_identifier, STATE(3540), 2, sym_line_comment, sym_block_comment, - [98127] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98361] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, + ACTIONS(7173), 1, sym_identifier, STATE(3541), 2, sym_line_comment, sym_block_comment, - [98141] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98375] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_COLON, + ACTIONS(7175), 1, + sym__line_doc_content, STATE(3542), 2, sym_line_comment, sym_block_comment, - [98155] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98389] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_SEMI, + ACTIONS(7177), 1, + sym_identifier, STATE(3543), 2, sym_line_comment, sym_block_comment, - [98169] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98403] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, + ACTIONS(932), 1, + anon_sym_RBRACK, STATE(3544), 2, sym_line_comment, sym_block_comment, - [98183] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98417] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_EQ_GT, + ACTIONS(7179), 1, + anon_sym_RPAREN, STATE(3545), 2, sym_line_comment, sym_block_comment, - [98197] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98431] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - sym_identifier, + ACTIONS(7181), 1, + anon_sym_SEMI, STATE(3546), 2, sym_line_comment, sym_block_comment, - [98211] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98445] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_RPAREN, + ACTIONS(6941), 1, + anon_sym_COLON_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, - [98225] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98459] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - sym_identifier, + ACTIONS(7183), 1, + anon_sym_LBRACK, STATE(3548), 2, sym_line_comment, sym_block_comment, - [98239] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98473] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_SEMI, + ACTIONS(6508), 1, + anon_sym_GT, STATE(3549), 2, sym_line_comment, sym_block_comment, - [98253] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98487] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, + ACTIONS(6114), 1, + anon_sym_RPAREN, STATE(3550), 2, sym_line_comment, sym_block_comment, - [98267] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98501] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_SEMI, + ACTIONS(6235), 1, + anon_sym_RBRACE, STATE(3551), 2, sym_line_comment, sym_block_comment, - [98281] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98515] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_SEMI, + ACTIONS(7185), 1, + anon_sym_RBRACK, STATE(3552), 2, sym_line_comment, sym_block_comment, - [98295] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98529] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_SEMI, + ACTIONS(6197), 1, + anon_sym_RBRACE, STATE(3553), 2, sym_line_comment, sym_block_comment, - [98309] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98543] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_SEMI, + ACTIONS(7187), 1, + sym_self, STATE(3554), 2, sym_line_comment, sym_block_comment, - [98323] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98557] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, - anon_sym_RBRACE, + ACTIONS(7189), 1, + sym_identifier, STATE(3555), 2, sym_line_comment, sym_block_comment, - [98337] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98571] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, + ACTIONS(7191), 1, + anon_sym_EQ, STATE(3556), 2, sym_line_comment, sym_block_comment, - [98351] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98585] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_EQ_GT, + ACTIONS(7193), 1, + anon_sym_SEMI, STATE(3557), 2, sym_line_comment, sym_block_comment, - [98365] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98599] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym__line_doc_content, + ACTIONS(7195), 1, + anon_sym_RBRACE, STATE(3558), 2, sym_line_comment, sym_block_comment, - [98379] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98613] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4137), 1, - sym_identifier, + ACTIONS(7197), 1, + anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, - [98393] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98627] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_EQ_GT, + ACTIONS(7199), 1, + sym_identifier, STATE(3560), 2, sym_line_comment, sym_block_comment, - [98407] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98641] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5731), 1, - anon_sym_RPAREN, + ACTIONS(7201), 1, + sym_identifier, STATE(3561), 2, sym_line_comment, sym_block_comment, - [98421] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98655] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - sym_identifier, + ACTIONS(7203), 1, + anon_sym_SEMI, STATE(3562), 2, sym_line_comment, sym_block_comment, - [98435] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98669] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - sym_identifier, + ACTIONS(5779), 1, + anon_sym_RPAREN, STATE(3563), 2, sym_line_comment, sym_block_comment, - [98449] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98683] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - sym__raw_string_literal_end, + ACTIONS(7205), 1, + anon_sym_EQ_GT, STATE(3564), 2, sym_line_comment, sym_block_comment, - [98463] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98697] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_SEMI, + ACTIONS(7207), 1, + anon_sym_LT, STATE(3565), 2, sym_line_comment, sym_block_comment, - [98477] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98711] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, + ACTIONS(7209), 1, anon_sym_RPAREN, STATE(3566), 2, sym_line_comment, sym_block_comment, - [98491] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98725] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, + ACTIONS(6702), 1, + anon_sym_RBRACE, STATE(3567), 2, sym_line_comment, sym_block_comment, - [98505] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98739] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - anon_sym_SEMI, + ACTIONS(7211), 1, + anon_sym_RPAREN, STATE(3568), 2, sym_line_comment, sym_block_comment, - [98519] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98753] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - sym_identifier, + ACTIONS(7213), 1, + anon_sym_RBRACE, STATE(3569), 2, sym_line_comment, sym_block_comment, - [98533] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98767] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - sym_identifier, + ACTIONS(5862), 1, + anon_sym_RPAREN, STATE(3570), 2, sym_line_comment, sym_block_comment, - [98547] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98781] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, + ACTIONS(7215), 1, + anon_sym_fn, STATE(3571), 2, sym_line_comment, sym_block_comment, - [98561] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98795] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - sym_identifier, + ACTIONS(7217), 1, + anon_sym_EQ_GT, STATE(3572), 2, sym_line_comment, sym_block_comment, - [98575] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98809] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_fn, + ACTIONS(6008), 1, + anon_sym_RPAREN, STATE(3573), 2, sym_line_comment, sym_block_comment, - [98589] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98823] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - sym_identifier, + ACTIONS(6118), 1, + anon_sym_RBRACK, STATE(3574), 2, sym_line_comment, sym_block_comment, - [98603] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98837] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, + ACTIONS(7219), 1, + sym_identifier, STATE(3575), 2, sym_line_comment, sym_block_comment, - [98617] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98851] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym__raw_string_literal_end, + ACTIONS(7221), 1, + anon_sym_COLON, STATE(3576), 2, sym_line_comment, sym_block_comment, - [98631] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98865] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym__raw_string_literal_end, + ACTIONS(7223), 1, + anon_sym_SEMI, STATE(3577), 2, sym_line_comment, sym_block_comment, - [98645] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98879] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, - anon_sym_GT, + ACTIONS(7225), 1, + anon_sym_SEMI, STATE(3578), 2, sym_line_comment, sym_block_comment, - [98659] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98893] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_SEMI, + ACTIONS(7227), 1, + sym_identifier, STATE(3579), 2, sym_line_comment, sym_block_comment, - [98673] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98907] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, + ACTIONS(7229), 1, + sym__raw_string_literal_end, STATE(3580), 2, sym_line_comment, sym_block_comment, - [98687] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98921] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - sym_identifier, + ACTIONS(6130), 1, + anon_sym_LBRACE, STATE(3581), 2, sym_line_comment, sym_block_comment, - [98701] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98935] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, + ACTIONS(7231), 1, anon_sym_SEMI, STATE(3582), 2, sym_line_comment, sym_block_comment, - [98715] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98949] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_SEMI, + ACTIONS(6491), 1, + anon_sym_GT, STATE(3583), 2, sym_line_comment, sym_block_comment, - [98729] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98963] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, + ACTIONS(7233), 1, + sym_identifier, STATE(3584), 2, sym_line_comment, sym_block_comment, - [98743] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98977] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5897), 1, - anon_sym_RPAREN, + ACTIONS(4140), 1, + anon_sym_COLON_COLON, STATE(3585), 2, sym_line_comment, sym_block_comment, - [98757] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [98991] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - sym_identifier, + ACTIONS(6375), 1, + anon_sym_RBRACE, STATE(3586), 2, sym_line_comment, sym_block_comment, - [98771] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99005] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_SEMI, + ACTIONS(6589), 1, + anon_sym_GT, STATE(3587), 2, sym_line_comment, sym_block_comment, - [98785] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99019] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_identifier, + ACTIONS(7235), 1, + anon_sym_RBRACE, STATE(3588), 2, sym_line_comment, sym_block_comment, - [98799] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99033] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - sym_identifier, + ACTIONS(7237), 1, + anon_sym_EQ_GT, STATE(3589), 2, sym_line_comment, sym_block_comment, - [98813] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99047] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - sym_self, + ACTIONS(6692), 1, + anon_sym_RBRACE, STATE(3590), 2, sym_line_comment, sym_block_comment, - [98827] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99061] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - anon_sym_RPAREN, + ACTIONS(7239), 1, + sym_raw_string_literal_content, STATE(3591), 2, sym_line_comment, sym_block_comment, - [98841] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99075] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - anon_sym_RBRACK, + ACTIONS(7241), 1, + anon_sym_EQ_GT, STATE(3592), 2, sym_line_comment, sym_block_comment, - [98855] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99089] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - anon_sym_RBRACK, + ACTIONS(7243), 1, + sym__raw_string_literal_end, STATE(3593), 2, sym_line_comment, sym_block_comment, - [98869] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99103] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, - anon_sym_RBRACE, + ACTIONS(7245), 1, + anon_sym_SEMI, STATE(3594), 2, sym_line_comment, sym_block_comment, - [98883] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99117] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - anon_sym_LBRACK, + ACTIONS(7247), 1, + sym__line_doc_content, STATE(3595), 2, sym_line_comment, sym_block_comment, - [98897] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99131] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, + ACTIONS(7249), 1, + anon_sym_SEMI, STATE(3596), 2, sym_line_comment, sym_block_comment, - [98911] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99145] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_RBRACE, + ACTIONS(7251), 1, + sym_identifier, STATE(3597), 2, sym_line_comment, sym_block_comment, - [98925] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99159] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, - anon_sym_SEMI, + ACTIONS(3242), 1, + anon_sym_PLUS, STATE(3598), 2, sym_line_comment, sym_block_comment, - [98939] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99173] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6200), 1, - anon_sym_GT, + ACTIONS(7253), 1, + anon_sym_SEMI, STATE(3599), 2, sym_line_comment, sym_block_comment, - [98953] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99187] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7238), 1, - anon_sym_SEMI, + ACTIONS(7255), 1, + anon_sym_RBRACK, STATE(3600), 2, sym_line_comment, sym_block_comment, - [98967] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99201] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7240), 1, - anon_sym_SEMI, + ACTIONS(7257), 1, + anon_sym_STAR_SLASH, STATE(3601), 2, sym_line_comment, sym_block_comment, - [98981] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99215] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7242), 1, - sym_identifier, + ACTIONS(7259), 1, + anon_sym_SEMI, STATE(3602), 2, sym_line_comment, sym_block_comment, - [98995] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99229] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7244), 1, - anon_sym_RBRACK, + ACTIONS(7261), 1, + anon_sym_SEMI, STATE(3603), 2, sym_line_comment, sym_block_comment, - [99009] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99243] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7246), 1, - anon_sym_RBRACE, + ACTIONS(7263), 1, + anon_sym_COLON_COLON, STATE(3604), 2, sym_line_comment, sym_block_comment, - [99023] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99257] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7248), 1, + ACTIONS(7265), 1, anon_sym_SEMI, STATE(3605), 2, sym_line_comment, sym_block_comment, - [99037] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99271] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7250), 1, - anon_sym_COLON_COLON, + ACTIONS(7267), 1, + sym_identifier, STATE(3606), 2, sym_line_comment, sym_block_comment, - [99051] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99285] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7252), 1, + ACTIONS(7269), 1, anon_sym_COLON, STATE(3607), 2, sym_line_comment, sym_block_comment, - [99065] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99299] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, + ACTIONS(7271), 1, + anon_sym_RBRACK, STATE(3608), 2, sym_line_comment, sym_block_comment, - [99079] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99313] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - sym_identifier, + ACTIONS(7273), 1, + anon_sym_LBRACK, STATE(3609), 2, sym_line_comment, sym_block_comment, - [99093] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99327] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_COLON, + ACTIONS(7275), 1, + anon_sym_COLON_COLON, STATE(3610), 2, sym_line_comment, sym_block_comment, - [99107] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99341] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, + ACTIONS(7277), 1, + sym_identifier, STATE(3611), 2, sym_line_comment, sym_block_comment, - [99121] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99355] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_LBRACK, + ACTIONS(6899), 1, + anon_sym_SEMI, STATE(3612), 2, sym_line_comment, sym_block_comment, - [99135] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99369] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7279), 1, anon_sym_SEMI, STATE(3613), 2, sym_line_comment, sym_block_comment, - [99149] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99383] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_SEMI, + ACTIONS(6722), 1, + anon_sym_RBRACE, STATE(3614), 2, sym_line_comment, sym_block_comment, - [99163] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99397] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7266), 1, - sym__line_doc_content, + ACTIONS(7281), 1, + anon_sym_SEMI, STATE(3615), 2, sym_line_comment, sym_block_comment, - [99177] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99411] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6576), 1, - anon_sym_GT, + ACTIONS(7283), 1, + sym_identifier, STATE(3616), 2, sym_line_comment, sym_block_comment, - [99191] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99425] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, - anon_sym_SEMI, + ACTIONS(7285), 1, + anon_sym_RPAREN, STATE(3617), 2, sym_line_comment, sym_block_comment, - [99205] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99439] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_RPAREN, + ACTIONS(7287), 1, + anon_sym_SEMI, STATE(3618), 2, sym_line_comment, sym_block_comment, - [99219] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99453] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_SEMI, + ACTIONS(7289), 1, + anon_sym_fn, STATE(3619), 2, sym_line_comment, sym_block_comment, - [99233] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99467] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, - anon_sym_LBRACE, + ACTIONS(7291), 1, + sym_identifier, STATE(3620), 2, sym_line_comment, sym_block_comment, - [99247] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99481] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_COLON, + ACTIONS(6736), 1, + anon_sym_RBRACE, STATE(3621), 2, sym_line_comment, sym_block_comment, - [99261] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99495] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - anon_sym_SEMI, + ACTIONS(7293), 1, + sym__raw_string_literal_end, STATE(3622), 2, sym_line_comment, sym_block_comment, - [99275] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99509] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, + ACTIONS(7295), 1, + anon_sym_SEMI, STATE(3623), 2, sym_line_comment, sym_block_comment, - [99289] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99523] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, + ACTIONS(3196), 1, + anon_sym_PLUS, STATE(3624), 2, sym_line_comment, sym_block_comment, - [99303] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99537] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_raw_string_literal_content, + ACTIONS(7297), 1, + anon_sym_SEMI, STATE(3625), 2, sym_line_comment, sym_block_comment, - [99317] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99551] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, - anon_sym_COLON_COLON, + ACTIONS(4144), 1, + sym_identifier, STATE(3626), 2, sym_line_comment, sym_block_comment, - [99331] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99565] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - sym_raw_string_literal_content, + ACTIONS(7299), 1, + sym_identifier, STATE(3627), 2, sym_line_comment, sym_block_comment, - [99345] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99579] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - anon_sym_SEMI, + ACTIONS(4338), 1, + anon_sym_RPAREN, STATE(3628), 2, sym_line_comment, sym_block_comment, - [99359] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99593] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - anon_sym_SEMI, + ACTIONS(7301), 1, + sym_identifier, STATE(3629), 2, sym_line_comment, sym_block_comment, - [99373] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99607] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RBRACE, + ACTIONS(7303), 1, + sym_identifier, STATE(3630), 2, sym_line_comment, sym_block_comment, - [99387] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99621] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, + ACTIONS(7305), 1, + sym_raw_string_literal_content, STATE(3631), 2, sym_line_comment, sym_block_comment, - [99401] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99635] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(7307), 1, + sym__line_doc_content, STATE(3632), 2, sym_line_comment, sym_block_comment, - [99415] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99649] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, + ACTIONS(3986), 1, anon_sym_COLON_COLON, STATE(3633), 2, sym_line_comment, sym_block_comment, - [99429] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99663] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - anon_sym_SEMI, + ACTIONS(7309), 1, + sym_identifier, STATE(3634), 2, sym_line_comment, sym_block_comment, - [99443] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99677] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5356), 1, + ACTIONS(7311), 1, anon_sym_SEMI, STATE(3635), 2, sym_line_comment, sym_block_comment, - [99457] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99691] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, + ACTIONS(4352), 1, anon_sym_COLON_COLON, STATE(3636), 2, sym_line_comment, sym_block_comment, - [99471] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99705] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym__raw_string_literal_end, + ACTIONS(5936), 1, + anon_sym_COLON_COLON, STATE(3637), 2, sym_line_comment, sym_block_comment, - [99485] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99719] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_SEMI, + ACTIONS(4904), 1, + anon_sym_COLON_COLON, STATE(3638), 2, sym_line_comment, sym_block_comment, - [99499] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99733] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - anon_sym_STAR_SLASH, + ACTIONS(7313), 1, + anon_sym_SEMI, STATE(3639), 2, sym_line_comment, sym_block_comment, - [99513] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99747] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - sym_identifier, + ACTIONS(7315), 1, + anon_sym_RBRACK, STATE(3640), 2, sym_line_comment, sym_block_comment, - [99527] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99761] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, - anon_sym_COLON, + ACTIONS(7317), 1, + anon_sym_COLON_COLON, STATE(3641), 2, sym_line_comment, sym_block_comment, - [99541] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99775] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - anon_sym_LT2, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3642), 2, sym_line_comment, sym_block_comment, - [99555] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99789] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_RBRACE, + ACTIONS(7319), 1, + sym_identifier, STATE(3643), 2, sym_line_comment, sym_block_comment, - [99569] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99803] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7310), 1, - anon_sym_fn, + ACTIONS(7321), 1, + sym_identifier, STATE(3644), 2, sym_line_comment, sym_block_comment, - [99583] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99817] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7312), 1, - anon_sym_RBRACK, + ACTIONS(7323), 1, + sym_identifier, STATE(3645), 2, sym_line_comment, sym_block_comment, - [99597] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99831] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_COLON_COLON, + ACTIONS(7325), 1, + anon_sym_SEMI, STATE(3646), 2, sym_line_comment, sym_block_comment, - [99611] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99845] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_SEMI, + ACTIONS(7327), 1, + anon_sym_LT2, STATE(3647), 2, sym_line_comment, sym_block_comment, - [99625] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99859] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, - anon_sym_SEMI, + ACTIONS(7329), 1, + sym_identifier, STATE(3648), 2, sym_line_comment, sym_block_comment, - [99639] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99873] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON_COLON, + ACTIONS(7331), 1, + anon_sym_fn, STATE(3649), 2, sym_line_comment, sym_block_comment, - [99653] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99887] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - anon_sym_SEMI, + ACTIONS(886), 1, + anon_sym_RBRACK, STATE(3650), 2, sym_line_comment, sym_block_comment, - [99667] = 4, - ACTIONS(3), 1, + [99901] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, - aux_sym_line_comment_token2, + ACTIONS(7333), 1, + anon_sym_COLON_COLON, STATE(3651), 2, sym_line_comment, sym_block_comment, - [99681] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99915] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - sym_identifier, + ACTIONS(7335), 1, + anon_sym_SEMI, STATE(3652), 2, sym_line_comment, sym_block_comment, - [99695] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99929] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, + ACTIONS(7337), 1, + anon_sym_EQ_GT, STATE(3653), 2, sym_line_comment, sym_block_comment, - [99709] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99943] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, + ACTIONS(7339), 1, anon_sym_COLON_COLON, STATE(3654), 2, sym_line_comment, sym_block_comment, - [99723] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99957] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_fn, + ACTIONS(5739), 1, + anon_sym_RPAREN, STATE(3655), 2, sym_line_comment, sym_block_comment, - [99737] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99971] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, - ts_builtin_sym_end, + ACTIONS(7341), 1, + sym__line_doc_content, STATE(3656), 2, sym_line_comment, sym_block_comment, - [99751] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99985] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_LBRACE, + ACTIONS(5164), 1, + anon_sym_COLON_COLON, STATE(3657), 2, sym_line_comment, sym_block_comment, - [99765] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [99999] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, - anon_sym_COLON, + ACTIONS(5177), 1, + anon_sym_COLON_COLON, STATE(3658), 2, sym_line_comment, sym_block_comment, - [99779] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100013] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(880), 1, - anon_sym_RBRACK, + ACTIONS(7343), 1, + anon_sym_COLON_COLON, STATE(3659), 2, sym_line_comment, sym_block_comment, - [99793] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100027] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(7345), 1, + anon_sym_fn, STATE(3660), 2, sym_line_comment, sym_block_comment, - [99807] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100041] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_fn, + ACTIONS(7347), 1, + sym_identifier, STATE(3661), 2, sym_line_comment, sym_block_comment, - [99821] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100055] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - anon_sym_SEMI, + ACTIONS(7349), 1, + anon_sym_LBRACE, STATE(3662), 2, sym_line_comment, sym_block_comment, - [99835] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100069] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, + ACTIONS(7351), 1, anon_sym_SEMI, STATE(3663), 2, sym_line_comment, sym_block_comment, - [99849] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100083] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - anon_sym_SEMI, + ACTIONS(7353), 1, + anon_sym_RBRACE, STATE(3664), 2, sym_line_comment, sym_block_comment, - [99863] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100097] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - sym_raw_string_literal_content, + ACTIONS(7355), 1, + sym_identifier, STATE(3665), 2, sym_line_comment, sym_block_comment, - [99877] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100111] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_COLON, + ACTIONS(5431), 1, + anon_sym_SEMI, STATE(3666), 2, sym_line_comment, sym_block_comment, - [99891] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100125] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, - anon_sym_RBRACE, + ACTIONS(7357), 1, + anon_sym_SEMI, STATE(3667), 2, sym_line_comment, sym_block_comment, - [99905] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100139] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, - anon_sym_RBRACK, + ACTIONS(6287), 1, + anon_sym_RBRACE, STATE(3668), 2, sym_line_comment, sym_block_comment, - [99919] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100153] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_COLON_COLON, + ACTIONS(7359), 1, + sym_identifier, STATE(3669), 2, sym_line_comment, sym_block_comment, - [99933] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100167] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - anon_sym_RBRACK, + ACTIONS(7361), 1, + anon_sym_SEMI, STATE(3670), 2, sym_line_comment, sym_block_comment, - [99947] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100181] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, + ACTIONS(7363), 1, + sym_raw_string_literal_content, STATE(3671), 2, sym_line_comment, sym_block_comment, - [99961] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100195] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_COLON_COLON, + ACTIONS(7365), 1, + anon_sym_COLON, STATE(3672), 2, sym_line_comment, sym_block_comment, - [99975] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100209] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - sym_identifier, + ACTIONS(7367), 1, + anon_sym_SEMI, STATE(3673), 2, sym_line_comment, sym_block_comment, - [99989] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100223] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - anon_sym_COLON, + ACTIONS(7369), 1, + anon_sym_SEMI, STATE(3674), 2, sym_line_comment, sym_block_comment, - [100003] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100237] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - anon_sym_EQ, + ACTIONS(7371), 1, + anon_sym_COLON_COLON, STATE(3675), 2, sym_line_comment, sym_block_comment, - [100017] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100251] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_GT, + ACTIONS(5341), 1, + anon_sym_SEMI, STATE(3676), 2, sym_line_comment, sym_block_comment, - [100031] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100265] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - sym_identifier, + ACTIONS(7373), 1, + anon_sym_COLON_COLON, STATE(3677), 2, sym_line_comment, sym_block_comment, - [100045] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100279] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - sym_identifier, + ACTIONS(7375), 1, + anon_sym_COLON_COLON, STATE(3678), 2, sym_line_comment, sym_block_comment, - [100059] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100293] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, - anon_sym_COLON_COLON, + ACTIONS(7377), 1, + anon_sym_COLON, STATE(3679), 2, sym_line_comment, sym_block_comment, - [100073] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100307] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, - anon_sym_COLON_COLON, + ACTIONS(5785), 1, + anon_sym_RPAREN, STATE(3680), 2, sym_line_comment, sym_block_comment, - [100087] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100321] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_LBRACE, + ACTIONS(7379), 1, + anon_sym_COLON, STATE(3681), 2, sym_line_comment, sym_block_comment, - [100101] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100335] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - sym_identifier, + ACTIONS(1022), 1, + anon_sym_EQ_GT, STATE(3682), 2, sym_line_comment, sym_block_comment, - [100115] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100349] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_fn, + ACTIONS(7381), 1, + anon_sym_RPAREN, STATE(3683), 2, sym_line_comment, sym_block_comment, - [100129] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100363] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, + ACTIONS(7383), 1, + anon_sym_SEMI, STATE(3684), 2, sym_line_comment, sym_block_comment, - [100143] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100377] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_COLON_COLON, STATE(3685), 2, sym_line_comment, sym_block_comment, - [100157] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100391] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_raw_string_literal_content, + ACTIONS(7385), 1, + anon_sym_COLON_COLON, STATE(3686), 2, sym_line_comment, sym_block_comment, - [100171] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100405] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 1, - anon_sym_COLON_COLON, + ACTIONS(7387), 1, + anon_sym_LBRACE, STATE(3687), 2, sym_line_comment, sym_block_comment, - [100185] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100419] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - anon_sym_SEMI, + ACTIONS(764), 1, + anon_sym_RBRACK, STATE(3688), 2, sym_line_comment, sym_block_comment, - [100199] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100433] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, - anon_sym_COLON_COLON, + ACTIONS(908), 1, + anon_sym_RBRACK, STATE(3689), 2, sym_line_comment, sym_block_comment, - [100213] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100447] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym_raw_string_literal_content, + ACTIONS(6903), 1, + anon_sym_SEMI, STATE(3690), 2, sym_line_comment, sym_block_comment, - [100227] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100461] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_SEMI, + ACTIONS(7389), 1, + sym__raw_string_literal_end, STATE(3691), 2, sym_line_comment, sym_block_comment, - [100241] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100475] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - anon_sym_LBRACE, + ACTIONS(7391), 1, + sym_raw_string_literal_content, STATE(3692), 2, sym_line_comment, sym_block_comment, - [100255] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100489] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - sym_raw_string_literal_content, + ACTIONS(3766), 1, + anon_sym_COLON_COLON, STATE(3693), 2, sym_line_comment, sym_block_comment, - [100269] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100503] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, + ACTIONS(6885), 1, + anon_sym_SEMI, STATE(3694), 2, sym_line_comment, sym_block_comment, - [100283] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100517] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, + ACTIONS(7393), 1, anon_sym_COLON_COLON, STATE(3695), 2, sym_line_comment, sym_block_comment, - [100297] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100531] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, - anon_sym_SEMI, + ACTIONS(6534), 1, + anon_sym_RBRACE, STATE(3696), 2, sym_line_comment, sym_block_comment, - [100311] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100545] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6120), 1, - anon_sym_LBRACE, + ACTIONS(7395), 1, + sym_raw_string_literal_content, STATE(3697), 2, sym_line_comment, sym_block_comment, - [100325] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100559] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, - anon_sym_COLON_COLON, + ACTIONS(7397), 1, + anon_sym_LBRACE, STATE(3698), 2, sym_line_comment, sym_block_comment, - [100339] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100573] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_COLON_COLON, + ACTIONS(7399), 1, + sym_raw_string_literal_content, STATE(3699), 2, sym_line_comment, sym_block_comment, - [100353] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100587] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - anon_sym_LBRACE, + ACTIONS(5329), 1, + anon_sym_COLON_COLON, STATE(3700), 2, sym_line_comment, sym_block_comment, - [100367] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100601] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, + ACTIONS(7401), 1, anon_sym_COLON_COLON, STATE(3701), 2, sym_line_comment, sym_block_comment, - [100381] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100615] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, + ACTIONS(5343), 1, + anon_sym_SEMI, STATE(3702), 2, sym_line_comment, sym_block_comment, - [100395] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100629] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_COLON_COLON, + ACTIONS(6149), 1, + anon_sym_LBRACE, STATE(3703), 2, sym_line_comment, sym_block_comment, - [100409] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100643] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, + ACTIONS(5956), 1, anon_sym_COLON_COLON, STATE(3704), 2, sym_line_comment, sym_block_comment, - [100423] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100657] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, + ACTIONS(7403), 1, anon_sym_COLON_COLON, STATE(3705), 2, sym_line_comment, sym_block_comment, - [100437] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100671] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4331), 1, - anon_sym_RPAREN, + ACTIONS(6157), 1, + anon_sym_LBRACE, STATE(3706), 2, sym_line_comment, sym_block_comment, - [100451] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100685] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7398), 1, - anon_sym_SEMI, + ACTIONS(7405), 1, + anon_sym_COLON_COLON, STATE(3707), 2, sym_line_comment, sym_block_comment, - [100465] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100699] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7400), 1, - sym_identifier, + ACTIONS(5363), 1, + anon_sym_COLON_COLON, STATE(3708), 2, sym_line_comment, sym_block_comment, - [100479] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100713] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7402), 1, - anon_sym_SEMI, + ACTIONS(5433), 1, + anon_sym_COLON_COLON, STATE(3709), 2, sym_line_comment, sym_block_comment, - [100493] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100727] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7404), 1, - anon_sym_SEMI, + ACTIONS(4344), 1, + anon_sym_COLON_COLON, STATE(3710), 2, sym_line_comment, sym_block_comment, - [100507] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100741] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7406), 1, - anon_sym_COLON, + ACTIONS(7407), 1, + anon_sym_COLON_COLON, STATE(3711), 2, sym_line_comment, sym_block_comment, - [100521] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100755] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7408), 1, - anon_sym_LBRACK, + ACTIONS(7409), 1, + anon_sym_COLON, STATE(3712), 2, sym_line_comment, sym_block_comment, - [100535] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100769] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7410), 1, - anon_sym_SEMI, + ACTIONS(7411), 1, + sym_identifier, STATE(3713), 2, sym_line_comment, sym_block_comment, - [100549] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100783] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7412), 1, - anon_sym_SEMI, + ACTIONS(7413), 1, + sym_identifier, STATE(3714), 2, sym_line_comment, sym_block_comment, - [100563] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100797] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7414), 1, - sym__line_doc_content, + ACTIONS(6253), 1, + anon_sym_RBRACE, STATE(3715), 2, sym_line_comment, sym_block_comment, - [100577] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100811] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7416), 1, - sym__line_doc_content, + ACTIONS(3856), 1, + anon_sym_COLON_COLON, STATE(3716), 2, sym_line_comment, sym_block_comment, - [100591] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100825] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7418), 1, - sym_identifier, + ACTIONS(7415), 1, + anon_sym_COLON, STATE(3717), 2, sym_line_comment, sym_block_comment, - [100605] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100839] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7420), 1, + ACTIONS(7417), 1, anon_sym_LBRACK, STATE(3718), 2, sym_line_comment, sym_block_comment, - [100619] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100853] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7422), 1, - anon_sym_COLON, + ACTIONS(7419), 1, + anon_sym_STAR_SLASH, STATE(3719), 2, sym_line_comment, sym_block_comment, - [100633] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100867] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7424), 1, - anon_sym_COLON, + ACTIONS(7421), 1, + anon_sym_SEMI, STATE(3720), 2, sym_line_comment, sym_block_comment, - [100647] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100881] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, + ACTIONS(7423), 1, sym_identifier, STATE(3721), 2, sym_line_comment, sym_block_comment, - [100661] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100895] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_RBRACE, + ACTIONS(7425), 1, + anon_sym_COLON_COLON, STATE(3722), 2, sym_line_comment, sym_block_comment, - [100675] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100909] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - anon_sym_RBRACE, + ACTIONS(7427), 1, + anon_sym_LBRACK, STATE(3723), 2, sym_line_comment, sym_block_comment, - [100689] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100923] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - sym__raw_string_literal_end, + ACTIONS(7429), 1, + anon_sym_COLON, STATE(3724), 2, sym_line_comment, sym_block_comment, - [100703] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100937] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, + ACTIONS(7431), 1, anon_sym_COLON, STATE(3725), 2, sym_line_comment, sym_block_comment, - [100717] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100951] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, + ACTIONS(7433), 1, sym_identifier, STATE(3726), 2, sym_line_comment, sym_block_comment, - [100731] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100965] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_SEMI, + ACTIONS(1026), 1, + anon_sym_EQ_GT, STATE(3727), 2, sym_line_comment, sym_block_comment, - [100745] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100979] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, + ACTIONS(7435), 1, sym_identifier, STATE(3728), 2, sym_line_comment, sym_block_comment, - [100759] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [100993] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - sym_identifier, + ACTIONS(7437), 1, + anon_sym_SEMI, STATE(3729), 2, sym_line_comment, sym_block_comment, - [100773] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101007] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - sym_identifier, + ACTIONS(7439), 1, + anon_sym_COLON, STATE(3730), 2, sym_line_comment, sym_block_comment, - [100787] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101021] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_SEMI, + ACTIONS(7441), 1, + sym_identifier, STATE(3731), 2, sym_line_comment, sym_block_comment, - [100801] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101035] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - sym_identifier, + ACTIONS(5381), 1, + anon_sym_SEMI, STATE(3732), 2, sym_line_comment, sym_block_comment, - [100815] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101049] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, - anon_sym_COLON, + ACTIONS(7443), 1, + anon_sym_SEMI, STATE(3733), 2, sym_line_comment, sym_block_comment, - [100829] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101063] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, - sym_identifier, + ACTIONS(7445), 1, + anon_sym_SEMI, STATE(3734), 2, sym_line_comment, sym_block_comment, - [100843] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101077] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, + ACTIONS(7447), 1, + anon_sym_SEMI, STATE(3735), 2, sym_line_comment, sym_block_comment, - [100857] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101091] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_SEMI, + ACTIONS(7449), 1, + anon_sym_RBRACK, STATE(3736), 2, sym_line_comment, sym_block_comment, - [100871] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101105] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - sym_identifier, + ACTIONS(7451), 1, + anon_sym_LT2, STATE(3737), 2, sym_line_comment, sym_block_comment, - [100885] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101119] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 1, - anon_sym_COLON_COLON, + ACTIONS(7453), 1, + anon_sym_COLON, STATE(3738), 2, sym_line_comment, sym_block_comment, - [100899] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101133] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_COLON, + ACTIONS(7455), 1, + anon_sym_SEMI, STATE(3739), 2, sym_line_comment, sym_block_comment, - [100913] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101147] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, + ACTIONS(7457), 1, + anon_sym_RBRACK, STATE(3740), 2, sym_line_comment, sym_block_comment, - [100927] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101161] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_SEMI, + ACTIONS(4336), 1, + anon_sym_COLON_COLON, STATE(3741), 2, sym_line_comment, sym_block_comment, - [100941] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101175] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7454), 1, - anon_sym_SEMI, + ACTIONS(4813), 1, + anon_sym_COLON_COLON, STATE(3742), 2, sym_line_comment, sym_block_comment, - [100955] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101189] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7456), 1, - anon_sym_COLON, + ACTIONS(5637), 1, + anon_sym_RPAREN, STATE(3743), 2, sym_line_comment, sym_block_comment, - [100969] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101203] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7458), 1, - anon_sym_COLON, + ACTIONS(6905), 1, + anon_sym_SEMI, STATE(3744), 2, sym_line_comment, sym_block_comment, - [100983] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101217] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7460), 1, + ACTIONS(7459), 1, anon_sym_COLON, STATE(3745), 2, sym_line_comment, sym_block_comment, - [100997] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101231] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7462), 1, - anon_sym_RBRACE, + ACTIONS(7461), 1, + anon_sym_SEMI, STATE(3746), 2, sym_line_comment, sym_block_comment, - [101011] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101245] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5853), 1, - anon_sym_RPAREN, + ACTIONS(7463), 1, + anon_sym_COLON, STATE(3747), 2, sym_line_comment, sym_block_comment, - [101025] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101259] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - anon_sym_SEMI, + ACTIONS(5349), 1, + anon_sym_COLON_COLON, STATE(3748), 2, sym_line_comment, sym_block_comment, - [101039] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101273] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_SEMI, + ACTIONS(7465), 1, + anon_sym_COLON, STATE(3749), 2, sym_line_comment, sym_block_comment, - [101053] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101287] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, + ACTIONS(7467), 1, + anon_sym_RBRACK, STATE(3750), 2, sym_line_comment, sym_block_comment, - [101067] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101301] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_RBRACE, + ACTIONS(7469), 1, + anon_sym_RBRACK, STATE(3751), 2, sym_line_comment, sym_block_comment, - [101081] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101315] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - anon_sym_COLON, + ACTIONS(7471), 1, + anon_sym_SEMI, STATE(3752), 2, sym_line_comment, sym_block_comment, - [101095] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101329] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - anon_sym_RBRACK, + ACTIONS(7473), 1, + anon_sym_SEMI, STATE(3753), 2, sym_line_comment, sym_block_comment, - [101109] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101343] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, - sym_identifier, + ACTIONS(7475), 1, + anon_sym_SEMI, STATE(3754), 2, sym_line_comment, sym_block_comment, - [101123] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101357] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - anon_sym_SEMI, + ACTIONS(7477), 1, + anon_sym_EQ_GT, STATE(3755), 2, sym_line_comment, sym_block_comment, - [101137] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101371] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_RBRACK, + ACTIONS(4797), 1, + anon_sym_COLON_COLON, STATE(3756), 2, sym_line_comment, sym_block_comment, - [101151] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101385] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, + ACTIONS(7479), 1, sym_identifier, STATE(3757), 2, sym_line_comment, sym_block_comment, - [101165] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101399] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_SEMI, + ACTIONS(7481), 1, + anon_sym_COLON, STATE(3758), 2, sym_line_comment, sym_block_comment, - [101179] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101413] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, - anon_sym_EQ, + ACTIONS(7483), 1, + anon_sym_RBRACE, STATE(3759), 2, sym_line_comment, sym_block_comment, - [101193] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101427] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, - anon_sym_LT2, + ACTIONS(7485), 1, + sym_identifier, STATE(3760), 2, sym_line_comment, sym_block_comment, - [101207] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101441] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, - anon_sym_COLON, + ACTIONS(7487), 1, + sym_identifier, STATE(3761), 2, sym_line_comment, sym_block_comment, - [101221] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101455] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, + ACTIONS(6203), 1, + anon_sym_RBRACE, STATE(3762), 2, sym_line_comment, sym_block_comment, - [101235] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101469] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(980), 1, - anon_sym_EQ_GT, + ACTIONS(5944), 1, + anon_sym_RBRACK, STATE(3763), 2, sym_line_comment, sym_block_comment, - [101249] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101483] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, + ACTIONS(7489), 1, + anon_sym_COLON, STATE(3764), 2, sym_line_comment, sym_block_comment, - [101263] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101497] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - sym_identifier, + ACTIONS(7491), 1, + anon_sym_EQ, STATE(3765), 2, sym_line_comment, sym_block_comment, - [101277] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101511] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, - anon_sym_LT2, + ACTIONS(7493), 1, + sym_identifier, STATE(3766), 2, sym_line_comment, sym_block_comment, - [101291] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101525] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - anon_sym_RPAREN, + ACTIONS(7495), 1, + anon_sym_SEMI, STATE(3767), 2, sym_line_comment, sym_block_comment, - [101305] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101539] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, - anon_sym_COLON, + ACTIONS(7497), 1, + sym_identifier, STATE(3768), 2, sym_line_comment, sym_block_comment, - [101319] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101553] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - anon_sym_EQ, + ACTIONS(7499), 1, + sym__raw_string_literal_end, STATE(3769), 2, sym_line_comment, sym_block_comment, - [101333] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101567] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6898), 1, - anon_sym_SEMI, + ACTIONS(7501), 1, + anon_sym_LT2, STATE(3770), 2, sym_line_comment, sym_block_comment, - [101347] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101581] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, - anon_sym_COLON, + ACTIONS(7503), 1, + sym_identifier, STATE(3771), 2, sym_line_comment, sym_block_comment, - [101361] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101595] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - anon_sym_LBRACK, + ACTIONS(7505), 1, + anon_sym_fn, STATE(3772), 2, sym_line_comment, sym_block_comment, - [101375] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101609] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, - anon_sym_LBRACK, + ACTIONS(3188), 1, + anon_sym_PLUS, STATE(3773), 2, sym_line_comment, sym_block_comment, - [101389] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101623] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, + ACTIONS(7507), 1, anon_sym_COLON, STATE(3774), 2, sym_line_comment, sym_block_comment, - [101403] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101637] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, - anon_sym_fn, + ACTIONS(7509), 1, + anon_sym_EQ, STATE(3775), 2, sym_line_comment, sym_block_comment, - [101417] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101651] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, + ACTIONS(7511), 1, + anon_sym_EQ, STATE(3776), 2, sym_line_comment, sym_block_comment, - [101431] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101665] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, + ACTIONS(7513), 1, anon_sym_COLON, STATE(3777), 2, sym_line_comment, sym_block_comment, - [101445] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101679] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, - anon_sym_COLON, + ACTIONS(7515), 1, + anon_sym_LBRACK, STATE(3778), 2, sym_line_comment, sym_block_comment, - [101459] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101693] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, - anon_sym_RBRACK, + ACTIONS(7517), 1, + anon_sym_LBRACK, STATE(3779), 2, sym_line_comment, sym_block_comment, - [101473] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101707] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_COLON_COLON, + ACTIONS(7519), 1, + anon_sym_COLON, STATE(3780), 2, sym_line_comment, sym_block_comment, - [101487] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101721] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, - anon_sym_COLON, + ACTIONS(7521), 1, + anon_sym_COLON_COLON, STATE(3781), 2, sym_line_comment, sym_block_comment, - [101501] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101735] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, - anon_sym_COLON, + ACTIONS(7523), 1, + anon_sym_RBRACE, STATE(3782), 2, sym_line_comment, sym_block_comment, - [101515] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101749] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7520), 1, + ACTIONS(7525), 1, anon_sym_COLON, STATE(3783), 2, sym_line_comment, sym_block_comment, - [101529] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101763] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7522), 1, - anon_sym_RBRACE, + ACTIONS(7527), 1, + anon_sym_COLON, STATE(3784), 2, sym_line_comment, sym_block_comment, - [101543] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101777] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4739), 1, - anon_sym_fn, + ACTIONS(7529), 1, + ts_builtin_sym_end, STATE(3785), 2, sym_line_comment, sym_block_comment, - [101557] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101791] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7524), 1, - sym_identifier, + ACTIONS(7531), 1, + anon_sym_COLON, STATE(3786), 2, sym_line_comment, sym_block_comment, - [101571] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101805] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7526), 1, - anon_sym_RBRACE, + ACTIONS(7533), 1, + anon_sym_COLON, STATE(3787), 2, sym_line_comment, sym_block_comment, - [101585] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101819] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7528), 1, - sym_identifier, + ACTIONS(7535), 1, + anon_sym_COLON, STATE(3788), 2, sym_line_comment, sym_block_comment, - [101599] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101833] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7530), 1, - anon_sym_LPAREN, + ACTIONS(7537), 1, + anon_sym_COLON, STATE(3789), 2, sym_line_comment, sym_block_comment, - [101613] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101847] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7532), 1, - anon_sym_EQ_GT, + ACTIONS(7539), 1, + anon_sym_SEMI, STATE(3790), 2, sym_line_comment, sym_block_comment, - [101627] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101861] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7534), 1, - anon_sym_RBRACE, + ACTIONS(4760), 1, + anon_sym_fn, STATE(3791), 2, sym_line_comment, sym_block_comment, - [101641] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101875] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7536), 1, - sym_identifier, + ACTIONS(7541), 1, + anon_sym_SEMI, STATE(3792), 2, sym_line_comment, sym_block_comment, - [101655] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101889] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7538), 1, - anon_sym_COLON_COLON, + ACTIONS(7543), 1, + sym_identifier, STATE(3793), 2, sym_line_comment, sym_block_comment, - [101669] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101903] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, - anon_sym_RBRACE, + ACTIONS(7545), 1, + sym_identifier, STATE(3794), 2, sym_line_comment, sym_block_comment, - [101683] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101917] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7540), 1, - sym_identifier, + ACTIONS(6647), 1, + anon_sym_COLON_COLON, STATE(3795), 2, sym_line_comment, sym_block_comment, - [101697] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101931] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7542), 1, - anon_sym_fn, + ACTIONS(7547), 1, + anon_sym_SEMI, STATE(3796), 2, sym_line_comment, sym_block_comment, - [101711] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101945] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(6441), 1, - anon_sym_RBRACE, + ACTIONS(7549), 1, + anon_sym_RPAREN, STATE(3797), 2, sym_line_comment, sym_block_comment, - [101725] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101959] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, - anon_sym_RBRACK, + ACTIONS(7551), 1, + sym_identifier, STATE(3798), 2, sym_line_comment, sym_block_comment, - [101739] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101973] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7546), 1, - anon_sym_SEMI, + ACTIONS(3206), 1, + anon_sym_PLUS, STATE(3799), 2, sym_line_comment, sym_block_comment, - [101753] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [101987] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7548), 1, + ACTIONS(7553), 1, anon_sym_SEMI, STATE(3800), 2, sym_line_comment, sym_block_comment, - [101767] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102001] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_RPAREN, + ACTIONS(7555), 1, + sym_identifier, STATE(3801), 2, sym_line_comment, sym_block_comment, - [101781] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102015] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(3183), 1, - anon_sym_PLUS, + ACTIONS(7557), 1, + anon_sym_fn, STATE(3802), 2, sym_line_comment, sym_block_comment, - [101795] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102029] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7550), 1, - sym_identifier, + ACTIONS(7559), 1, + anon_sym_SEMI, STATE(3803), 2, sym_line_comment, sym_block_comment, - [101809] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102043] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7552), 1, - anon_sym_COLON_COLON, + ACTIONS(7561), 1, + sym_identifier, STATE(3804), 2, sym_line_comment, sym_block_comment, - [101823] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102057] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(5887), 1, - anon_sym_RPAREN, + ACTIONS(7563), 1, + anon_sym_COLON_COLON, STATE(3805), 2, sym_line_comment, sym_block_comment, - [101837] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102071] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7554), 1, + ACTIONS(7565), 1, sym_identifier, STATE(3806), 2, sym_line_comment, sym_block_comment, - [101851] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102085] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7556), 1, + ACTIONS(7567), 1, sym_identifier, STATE(3807), 2, sym_line_comment, sym_block_comment, - [101865] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102099] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7558), 1, - sym_identifier, + ACTIONS(7569), 1, + anon_sym_SEMI, STATE(3808), 2, sym_line_comment, sym_block_comment, - [101879] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102113] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7560), 1, + ACTIONS(7571), 1, sym_identifier, STATE(3809), 2, sym_line_comment, sym_block_comment, - [101893] = 4, - ACTIONS(105), 1, + [102127] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(7573), 1, + anon_sym_RBRACK, + STATE(3810), 2, + sym_line_comment, + sym_block_comment, + [102141] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7562), 1, + ACTIONS(7575), 1, sym_identifier, - STATE(3810), 2, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [101907] = 4, - ACTIONS(105), 1, + [102155] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5858), 1, + anon_sym_RPAREN, + STATE(3812), 2, + sym_line_comment, + sym_block_comment, + [102169] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7564), 1, + ACTIONS(7577), 1, sym_identifier, - STATE(3811), 2, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [101921] = 4, - ACTIONS(105), 1, + [102183] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(5986), 1, + anon_sym_RPAREN, + STATE(3814), 2, + sym_line_comment, + sym_block_comment, + [102197] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7566), 1, - anon_sym_SEMI, - STATE(3812), 2, + ACTIONS(7579), 1, + sym_identifier, + STATE(3815), 2, + sym_line_comment, + sym_block_comment, + [102211] = 4, + ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(7581), 1, + anon_sym_RBRACE, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [101935] = 4, - ACTIONS(105), 1, + [102225] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(7583), 1, + sym_identifier, + STATE(3817), 2, + sym_line_comment, + sym_block_comment, + [102239] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7568), 1, + ACTIONS(7585), 1, anon_sym_SEMI, - STATE(3813), 2, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [101949] = 4, - ACTIONS(105), 1, + [102253] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(4388), 1, + anon_sym_RPAREN, + STATE(3819), 2, + sym_line_comment, + sym_block_comment, + [102267] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7570), 1, - anon_sym_COLON, - STATE(3814), 2, + ACTIONS(7587), 1, + anon_sym_SEMI, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [101963] = 4, - ACTIONS(105), 1, + [102281] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(7589), 1, + sym_identifier, + STATE(3821), 2, + sym_line_comment, + sym_block_comment, + [102295] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7572), 1, + ACTIONS(7591), 1, anon_sym_fn, - STATE(3815), 2, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [101977] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, + [102309] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7574), 1, - anon_sym_LT, - STATE(3816), 2, + ACTIONS(7593), 1, + sym_identifier, + STATE(3823), 2, sym_line_comment, sym_block_comment, - [101991] = 4, - ACTIONS(105), 1, + [102323] = 4, + ACTIONS(107), 1, anon_sym_SLASH_SLASH, + ACTIONS(109), 1, + anon_sym_SLASH_STAR, + ACTIONS(7595), 1, + anon_sym_fn, + STATE(3824), 2, + sym_line_comment, + sym_block_comment, + [102337] = 4, ACTIONS(107), 1, + anon_sym_SLASH_SLASH, + ACTIONS(109), 1, anon_sym_SLASH_STAR, - ACTIONS(7576), 1, + ACTIONS(7597), 1, anon_sym_COLON_COLON, - STATE(3817), 2, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [102005] = 1, - ACTIONS(7578), 1, + [102351] = 1, + ACTIONS(7599), 1, ts_builtin_sym_end, - [102009] = 1, - ACTIONS(7580), 1, + [102355] = 1, + ACTIONS(7601), 1, ts_builtin_sym_end, - [102013] = 1, - ACTIONS(7582), 1, + [102359] = 1, + ACTIONS(7603), 1, ts_builtin_sym_end, - [102017] = 1, - ACTIONS(7584), 1, + [102363] = 1, + ACTIONS(7605), 1, ts_builtin_sym_end, - [102021] = 1, - ACTIONS(7586), 1, + [102367] = 1, + ACTIONS(7607), 1, ts_builtin_sym_end, - [102025] = 1, - ACTIONS(7588), 1, + [102371] = 1, + ACTIONS(7609), 1, ts_builtin_sym_end, - [102029] = 1, - ACTIONS(7590), 1, + [102375] = 1, + ACTIONS(7611), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1064)] = 0, - [SMALL_STATE(1065)] = 74, - [SMALL_STATE(1066)] = 146, - [SMALL_STATE(1067)] = 247, - [SMALL_STATE(1068)] = 348, - [SMALL_STATE(1069)] = 449, - [SMALL_STATE(1070)] = 514, - [SMALL_STATE(1071)] = 591, - [SMALL_STATE(1072)] = 668, - [SMALL_STATE(1073)] = 747, - [SMALL_STATE(1074)] = 812, - [SMALL_STATE(1075)] = 877, - [SMALL_STATE(1076)] = 942, - [SMALL_STATE(1077)] = 1007, - [SMALL_STATE(1078)] = 1076, - [SMALL_STATE(1079)] = 1141, - [SMALL_STATE(1080)] = 1206, - [SMALL_STATE(1081)] = 1283, - [SMALL_STATE(1082)] = 1348, - [SMALL_STATE(1083)] = 1413, - [SMALL_STATE(1084)] = 1515, - [SMALL_STATE(1085)] = 1579, - [SMALL_STATE(1086)] = 1681, - [SMALL_STATE(1087)] = 1749, - [SMALL_STATE(1088)] = 1813, - [SMALL_STATE(1089)] = 1887, - [SMALL_STATE(1090)] = 1989, - [SMALL_STATE(1091)] = 2053, - [SMALL_STATE(1092)] = 2117, - [SMALL_STATE(1093)] = 2181, - [SMALL_STATE(1094)] = 2252, - [SMALL_STATE(1095)] = 2323, - [SMALL_STATE(1096)] = 2388, - [SMALL_STATE(1097)] = 2459, - [SMALL_STATE(1098)] = 2522, - [SMALL_STATE(1099)] = 2593, - [SMALL_STATE(1100)] = 2656, - [SMALL_STATE(1101)] = 2719, - [SMALL_STATE(1102)] = 2786, - [SMALL_STATE(1103)] = 2853, - [SMALL_STATE(1104)] = 2916, - [SMALL_STATE(1105)] = 2983, - [SMALL_STATE(1106)] = 3048, - [SMALL_STATE(1107)] = 3115, - [SMALL_STATE(1108)] = 3177, - [SMALL_STATE(1109)] = 3281, - [SMALL_STATE(1110)] = 3343, - [SMALL_STATE(1111)] = 3405, - [SMALL_STATE(1112)] = 3467, - [SMALL_STATE(1113)] = 3529, - [SMALL_STATE(1114)] = 3591, - [SMALL_STATE(1115)] = 3653, - [SMALL_STATE(1116)] = 3715, - [SMALL_STATE(1117)] = 3777, - [SMALL_STATE(1118)] = 3839, - [SMALL_STATE(1119)] = 3901, - [SMALL_STATE(1120)] = 3963, - [SMALL_STATE(1121)] = 4025, - [SMALL_STATE(1122)] = 4087, - [SMALL_STATE(1123)] = 4149, - [SMALL_STATE(1124)] = 4211, - [SMALL_STATE(1125)] = 4273, - [SMALL_STATE(1126)] = 4335, - [SMALL_STATE(1127)] = 4397, - [SMALL_STATE(1128)] = 4459, - [SMALL_STATE(1129)] = 4521, - [SMALL_STATE(1130)] = 4583, - [SMALL_STATE(1131)] = 4645, - [SMALL_STATE(1132)] = 4707, - [SMALL_STATE(1133)] = 4769, - [SMALL_STATE(1134)] = 4831, - [SMALL_STATE(1135)] = 4893, - [SMALL_STATE(1136)] = 4955, - [SMALL_STATE(1137)] = 5017, - [SMALL_STATE(1138)] = 5079, - [SMALL_STATE(1139)] = 5141, - [SMALL_STATE(1140)] = 5203, - [SMALL_STATE(1141)] = 5265, - [SMALL_STATE(1142)] = 5327, - [SMALL_STATE(1143)] = 5389, - [SMALL_STATE(1144)] = 5451, - [SMALL_STATE(1145)] = 5513, - [SMALL_STATE(1146)] = 5575, - [SMALL_STATE(1147)] = 5637, - [SMALL_STATE(1148)] = 5699, - [SMALL_STATE(1149)] = 5761, - [SMALL_STATE(1150)] = 5823, - [SMALL_STATE(1151)] = 5885, - [SMALL_STATE(1152)] = 5947, - [SMALL_STATE(1153)] = 6009, - [SMALL_STATE(1154)] = 6071, - [SMALL_STATE(1155)] = 6133, - [SMALL_STATE(1156)] = 6195, - [SMALL_STATE(1157)] = 6257, - [SMALL_STATE(1158)] = 6319, - [SMALL_STATE(1159)] = 6381, - [SMALL_STATE(1160)] = 6443, - [SMALL_STATE(1161)] = 6505, - [SMALL_STATE(1162)] = 6567, - [SMALL_STATE(1163)] = 6629, - [SMALL_STATE(1164)] = 6691, - [SMALL_STATE(1165)] = 6753, - [SMALL_STATE(1166)] = 6815, - [SMALL_STATE(1167)] = 6877, - [SMALL_STATE(1168)] = 6939, - [SMALL_STATE(1169)] = 7001, - [SMALL_STATE(1170)] = 7063, - [SMALL_STATE(1171)] = 7125, - [SMALL_STATE(1172)] = 7187, - [SMALL_STATE(1173)] = 7249, - [SMALL_STATE(1174)] = 7311, - [SMALL_STATE(1175)] = 7373, - [SMALL_STATE(1176)] = 7435, - [SMALL_STATE(1177)] = 7497, - [SMALL_STATE(1178)] = 7559, - [SMALL_STATE(1179)] = 7621, - [SMALL_STATE(1180)] = 7683, - [SMALL_STATE(1181)] = 7745, - [SMALL_STATE(1182)] = 7807, - [SMALL_STATE(1183)] = 7869, - [SMALL_STATE(1184)] = 7931, - [SMALL_STATE(1185)] = 7993, - [SMALL_STATE(1186)] = 8055, - [SMALL_STATE(1187)] = 8117, - [SMALL_STATE(1188)] = 8179, - [SMALL_STATE(1189)] = 8241, - [SMALL_STATE(1190)] = 8303, - [SMALL_STATE(1191)] = 8365, - [SMALL_STATE(1192)] = 8427, - [SMALL_STATE(1193)] = 8489, - [SMALL_STATE(1194)] = 8551, - [SMALL_STATE(1195)] = 8613, - [SMALL_STATE(1196)] = 8675, - [SMALL_STATE(1197)] = 8737, - [SMALL_STATE(1198)] = 8799, - [SMALL_STATE(1199)] = 8861, - [SMALL_STATE(1200)] = 8923, - [SMALL_STATE(1201)] = 8985, - [SMALL_STATE(1202)] = 9047, - [SMALL_STATE(1203)] = 9109, - [SMALL_STATE(1204)] = 9171, - [SMALL_STATE(1205)] = 9233, - [SMALL_STATE(1206)] = 9295, - [SMALL_STATE(1207)] = 9357, - [SMALL_STATE(1208)] = 9419, - [SMALL_STATE(1209)] = 9481, - [SMALL_STATE(1210)] = 9543, - [SMALL_STATE(1211)] = 9605, - [SMALL_STATE(1212)] = 9667, - [SMALL_STATE(1213)] = 9729, - [SMALL_STATE(1214)] = 9791, - [SMALL_STATE(1215)] = 9853, - [SMALL_STATE(1216)] = 9915, - [SMALL_STATE(1217)] = 9977, - [SMALL_STATE(1218)] = 10039, - [SMALL_STATE(1219)] = 10101, - [SMALL_STATE(1220)] = 10163, - [SMALL_STATE(1221)] = 10225, - [SMALL_STATE(1222)] = 10287, - [SMALL_STATE(1223)] = 10349, - [SMALL_STATE(1224)] = 10411, - [SMALL_STATE(1225)] = 10473, - [SMALL_STATE(1226)] = 10535, - [SMALL_STATE(1227)] = 10597, - [SMALL_STATE(1228)] = 10659, - [SMALL_STATE(1229)] = 10721, - [SMALL_STATE(1230)] = 10783, - [SMALL_STATE(1231)] = 10845, - [SMALL_STATE(1232)] = 10907, - [SMALL_STATE(1233)] = 10969, - [SMALL_STATE(1234)] = 11031, - [SMALL_STATE(1235)] = 11093, - [SMALL_STATE(1236)] = 11155, - [SMALL_STATE(1237)] = 11217, - [SMALL_STATE(1238)] = 11279, - [SMALL_STATE(1239)] = 11341, - [SMALL_STATE(1240)] = 11403, - [SMALL_STATE(1241)] = 11465, - [SMALL_STATE(1242)] = 11527, - [SMALL_STATE(1243)] = 11589, - [SMALL_STATE(1244)] = 11651, - [SMALL_STATE(1245)] = 11713, - [SMALL_STATE(1246)] = 11775, - [SMALL_STATE(1247)] = 11837, - [SMALL_STATE(1248)] = 11899, - [SMALL_STATE(1249)] = 11961, - [SMALL_STATE(1250)] = 12023, - [SMALL_STATE(1251)] = 12085, - [SMALL_STATE(1252)] = 12147, - [SMALL_STATE(1253)] = 12209, - [SMALL_STATE(1254)] = 12271, - [SMALL_STATE(1255)] = 12333, - [SMALL_STATE(1256)] = 12395, - [SMALL_STATE(1257)] = 12457, - [SMALL_STATE(1258)] = 12519, - [SMALL_STATE(1259)] = 12581, - [SMALL_STATE(1260)] = 12643, - [SMALL_STATE(1261)] = 12705, - [SMALL_STATE(1262)] = 12767, - [SMALL_STATE(1263)] = 12829, - [SMALL_STATE(1264)] = 12891, - [SMALL_STATE(1265)] = 12953, - [SMALL_STATE(1266)] = 13015, - [SMALL_STATE(1267)] = 13077, - [SMALL_STATE(1268)] = 13139, - [SMALL_STATE(1269)] = 13201, - [SMALL_STATE(1270)] = 13263, - [SMALL_STATE(1271)] = 13325, - [SMALL_STATE(1272)] = 13387, - [SMALL_STATE(1273)] = 13449, - [SMALL_STATE(1274)] = 13511, - [SMALL_STATE(1275)] = 13573, - [SMALL_STATE(1276)] = 13635, - [SMALL_STATE(1277)] = 13697, - [SMALL_STATE(1278)] = 13759, - [SMALL_STATE(1279)] = 13821, - [SMALL_STATE(1280)] = 13883, - [SMALL_STATE(1281)] = 13945, - [SMALL_STATE(1282)] = 14007, - [SMALL_STATE(1283)] = 14069, - [SMALL_STATE(1284)] = 14131, - [SMALL_STATE(1285)] = 14193, - [SMALL_STATE(1286)] = 14255, - [SMALL_STATE(1287)] = 14317, - [SMALL_STATE(1288)] = 14379, - [SMALL_STATE(1289)] = 14441, - [SMALL_STATE(1290)] = 14503, - [SMALL_STATE(1291)] = 14565, - [SMALL_STATE(1292)] = 14627, - [SMALL_STATE(1293)] = 14689, - [SMALL_STATE(1294)] = 14751, - [SMALL_STATE(1295)] = 14813, - [SMALL_STATE(1296)] = 14875, - [SMALL_STATE(1297)] = 14937, - [SMALL_STATE(1298)] = 14999, - [SMALL_STATE(1299)] = 15061, - [SMALL_STATE(1300)] = 15123, - [SMALL_STATE(1301)] = 15185, - [SMALL_STATE(1302)] = 15247, - [SMALL_STATE(1303)] = 15309, - [SMALL_STATE(1304)] = 15371, - [SMALL_STATE(1305)] = 15433, - [SMALL_STATE(1306)] = 15495, - [SMALL_STATE(1307)] = 15557, - [SMALL_STATE(1308)] = 15619, - [SMALL_STATE(1309)] = 15681, - [SMALL_STATE(1310)] = 15743, - [SMALL_STATE(1311)] = 15805, - [SMALL_STATE(1312)] = 15867, - [SMALL_STATE(1313)] = 15929, - [SMALL_STATE(1314)] = 15991, - [SMALL_STATE(1315)] = 16053, - [SMALL_STATE(1316)] = 16115, - [SMALL_STATE(1317)] = 16177, - [SMALL_STATE(1318)] = 16239, - [SMALL_STATE(1319)] = 16301, - [SMALL_STATE(1320)] = 16363, - [SMALL_STATE(1321)] = 16425, - [SMALL_STATE(1322)] = 16487, - [SMALL_STATE(1323)] = 16549, - [SMALL_STATE(1324)] = 16611, - [SMALL_STATE(1325)] = 16673, - [SMALL_STATE(1326)] = 16735, - [SMALL_STATE(1327)] = 16797, - [SMALL_STATE(1328)] = 16859, - [SMALL_STATE(1329)] = 16921, - [SMALL_STATE(1330)] = 16983, - [SMALL_STATE(1331)] = 17045, - [SMALL_STATE(1332)] = 17107, - [SMALL_STATE(1333)] = 17169, - [SMALL_STATE(1334)] = 17231, - [SMALL_STATE(1335)] = 17293, - [SMALL_STATE(1336)] = 17355, - [SMALL_STATE(1337)] = 17417, - [SMALL_STATE(1338)] = 17479, - [SMALL_STATE(1339)] = 17541, - [SMALL_STATE(1340)] = 17603, - [SMALL_STATE(1341)] = 17665, - [SMALL_STATE(1342)] = 17727, - [SMALL_STATE(1343)] = 17789, - [SMALL_STATE(1344)] = 17851, - [SMALL_STATE(1345)] = 17913, - [SMALL_STATE(1346)] = 17975, - [SMALL_STATE(1347)] = 18037, - [SMALL_STATE(1348)] = 18099, - [SMALL_STATE(1349)] = 18161, - [SMALL_STATE(1350)] = 18223, - [SMALL_STATE(1351)] = 18285, - [SMALL_STATE(1352)] = 18347, - [SMALL_STATE(1353)] = 18409, - [SMALL_STATE(1354)] = 18471, - [SMALL_STATE(1355)] = 18533, - [SMALL_STATE(1356)] = 18595, - [SMALL_STATE(1357)] = 18657, - [SMALL_STATE(1358)] = 18719, - [SMALL_STATE(1359)] = 18781, - [SMALL_STATE(1360)] = 18843, - [SMALL_STATE(1361)] = 18905, - [SMALL_STATE(1362)] = 18967, - [SMALL_STATE(1363)] = 19029, - [SMALL_STATE(1364)] = 19091, - [SMALL_STATE(1365)] = 19153, - [SMALL_STATE(1366)] = 19215, - [SMALL_STATE(1367)] = 19277, - [SMALL_STATE(1368)] = 19339, - [SMALL_STATE(1369)] = 19401, - [SMALL_STATE(1370)] = 19463, - [SMALL_STATE(1371)] = 19525, - [SMALL_STATE(1372)] = 19587, - [SMALL_STATE(1373)] = 19649, - [SMALL_STATE(1374)] = 19711, - [SMALL_STATE(1375)] = 19779, - [SMALL_STATE(1376)] = 19883, - [SMALL_STATE(1377)] = 19951, - [SMALL_STATE(1378)] = 20013, - [SMALL_STATE(1379)] = 20075, - [SMALL_STATE(1380)] = 20137, - [SMALL_STATE(1381)] = 20241, - [SMALL_STATE(1382)] = 20303, - [SMALL_STATE(1383)] = 20365, - [SMALL_STATE(1384)] = 20469, - [SMALL_STATE(1385)] = 20531, - [SMALL_STATE(1386)] = 20601, - [SMALL_STATE(1387)] = 20663, - [SMALL_STATE(1388)] = 20757, - [SMALL_STATE(1389)] = 20819, - [SMALL_STATE(1390)] = 20881, - [SMALL_STATE(1391)] = 20943, - [SMALL_STATE(1392)] = 21037, - [SMALL_STATE(1393)] = 21131, - [SMALL_STATE(1394)] = 21193, - [SMALL_STATE(1395)] = 21256, - [SMALL_STATE(1396)] = 21319, - [SMALL_STATE(1397)] = 21382, - [SMALL_STATE(1398)] = 21479, - [SMALL_STATE(1399)] = 21542, - [SMALL_STATE(1400)] = 21603, - [SMALL_STATE(1401)] = 21668, - [SMALL_STATE(1402)] = 21729, - [SMALL_STATE(1403)] = 21792, - [SMALL_STATE(1404)] = 21853, - [SMALL_STATE(1405)] = 21914, - [SMALL_STATE(1406)] = 21977, - [SMALL_STATE(1407)] = 22040, - [SMALL_STATE(1408)] = 22115, - [SMALL_STATE(1409)] = 22178, - [SMALL_STATE(1410)] = 22239, - [SMALL_STATE(1411)] = 22300, - [SMALL_STATE(1412)] = 22363, - [SMALL_STATE(1413)] = 22428, - [SMALL_STATE(1414)] = 22491, - [SMALL_STATE(1415)] = 22566, - [SMALL_STATE(1416)] = 22629, - [SMALL_STATE(1417)] = 22690, - [SMALL_STATE(1418)] = 22751, - [SMALL_STATE(1419)] = 22814, - [SMALL_STATE(1420)] = 22875, - [SMALL_STATE(1421)] = 22938, - [SMALL_STATE(1422)] = 23001, - [SMALL_STATE(1423)] = 23064, - [SMALL_STATE(1424)] = 23125, - [SMALL_STATE(1425)] = 23188, - [SMALL_STATE(1426)] = 23251, - [SMALL_STATE(1427)] = 23312, - [SMALL_STATE(1428)] = 23377, - [SMALL_STATE(1429)] = 23438, - [SMALL_STATE(1430)] = 23499, - [SMALL_STATE(1431)] = 23560, - [SMALL_STATE(1432)] = 23621, - [SMALL_STATE(1433)] = 23682, - [SMALL_STATE(1434)] = 23743, - [SMALL_STATE(1435)] = 23806, - [SMALL_STATE(1436)] = 23866, - [SMALL_STATE(1437)] = 23926, - [SMALL_STATE(1438)] = 23986, - [SMALL_STATE(1439)] = 24046, - [SMALL_STATE(1440)] = 24106, - [SMALL_STATE(1441)] = 24166, - [SMALL_STATE(1442)] = 24226, - [SMALL_STATE(1443)] = 24286, - [SMALL_STATE(1444)] = 24346, - [SMALL_STATE(1445)] = 24406, - [SMALL_STATE(1446)] = 24466, - [SMALL_STATE(1447)] = 24526, - [SMALL_STATE(1448)] = 24586, - [SMALL_STATE(1449)] = 24646, - [SMALL_STATE(1450)] = 24706, - [SMALL_STATE(1451)] = 24766, - [SMALL_STATE(1452)] = 24826, - [SMALL_STATE(1453)] = 24886, - [SMALL_STATE(1454)] = 24946, - [SMALL_STATE(1455)] = 25006, - [SMALL_STATE(1456)] = 25066, - [SMALL_STATE(1457)] = 25126, - [SMALL_STATE(1458)] = 25186, - [SMALL_STATE(1459)] = 25246, - [SMALL_STATE(1460)] = 25320, - [SMALL_STATE(1461)] = 25380, - [SMALL_STATE(1462)] = 25440, - [SMALL_STATE(1463)] = 25500, - [SMALL_STATE(1464)] = 25560, - [SMALL_STATE(1465)] = 25620, - [SMALL_STATE(1466)] = 25680, - [SMALL_STATE(1467)] = 25740, - [SMALL_STATE(1468)] = 25800, - [SMALL_STATE(1469)] = 25860, - [SMALL_STATE(1470)] = 25920, - [SMALL_STATE(1471)] = 25980, - [SMALL_STATE(1472)] = 26046, - [SMALL_STATE(1473)] = 26106, - [SMALL_STATE(1474)] = 26166, - [SMALL_STATE(1475)] = 26226, - [SMALL_STATE(1476)] = 26286, - [SMALL_STATE(1477)] = 26346, - [SMALL_STATE(1478)] = 26406, - [SMALL_STATE(1479)] = 26472, - [SMALL_STATE(1480)] = 26532, - [SMALL_STATE(1481)] = 26592, - [SMALL_STATE(1482)] = 26652, - [SMALL_STATE(1483)] = 26712, - [SMALL_STATE(1484)] = 26772, - [SMALL_STATE(1485)] = 26832, - [SMALL_STATE(1486)] = 26892, - [SMALL_STATE(1487)] = 26952, - [SMALL_STATE(1488)] = 27012, - [SMALL_STATE(1489)] = 27072, - [SMALL_STATE(1490)] = 27132, - [SMALL_STATE(1491)] = 27192, - [SMALL_STATE(1492)] = 27252, - [SMALL_STATE(1493)] = 27312, - [SMALL_STATE(1494)] = 27374, - [SMALL_STATE(1495)] = 27434, - [SMALL_STATE(1496)] = 27494, - [SMALL_STATE(1497)] = 27554, - [SMALL_STATE(1498)] = 27614, - [SMALL_STATE(1499)] = 27674, - [SMALL_STATE(1500)] = 27734, - [SMALL_STATE(1501)] = 27794, - [SMALL_STATE(1502)] = 27862, - [SMALL_STATE(1503)] = 27922, - [SMALL_STATE(1504)] = 27982, - [SMALL_STATE(1505)] = 28042, - [SMALL_STATE(1506)] = 28104, - [SMALL_STATE(1507)] = 28164, - [SMALL_STATE(1508)] = 28224, - [SMALL_STATE(1509)] = 28284, - [SMALL_STATE(1510)] = 28344, - [SMALL_STATE(1511)] = 28404, - [SMALL_STATE(1512)] = 28464, - [SMALL_STATE(1513)] = 28524, - [SMALL_STATE(1514)] = 28584, - [SMALL_STATE(1515)] = 28644, - [SMALL_STATE(1516)] = 28704, - [SMALL_STATE(1517)] = 28764, - [SMALL_STATE(1518)] = 28824, - [SMALL_STATE(1519)] = 28884, - [SMALL_STATE(1520)] = 28950, - [SMALL_STATE(1521)] = 29010, - [SMALL_STATE(1522)] = 29070, - [SMALL_STATE(1523)] = 29134, - [SMALL_STATE(1524)] = 29194, - [SMALL_STATE(1525)] = 29258, - [SMALL_STATE(1526)] = 29318, - [SMALL_STATE(1527)] = 29378, - [SMALL_STATE(1528)] = 29438, - [SMALL_STATE(1529)] = 29498, - [SMALL_STATE(1530)] = 29558, - [SMALL_STATE(1531)] = 29618, - [SMALL_STATE(1532)] = 29678, - [SMALL_STATE(1533)] = 29738, - [SMALL_STATE(1534)] = 29798, - [SMALL_STATE(1535)] = 29858, - [SMALL_STATE(1536)] = 29918, - [SMALL_STATE(1537)] = 29978, - [SMALL_STATE(1538)] = 30038, - [SMALL_STATE(1539)] = 30098, - [SMALL_STATE(1540)] = 30158, - [SMALL_STATE(1541)] = 30218, - [SMALL_STATE(1542)] = 30278, - [SMALL_STATE(1543)] = 30338, - [SMALL_STATE(1544)] = 30398, - [SMALL_STATE(1545)] = 30464, - [SMALL_STATE(1546)] = 30524, - [SMALL_STATE(1547)] = 30584, - [SMALL_STATE(1548)] = 30644, - [SMALL_STATE(1549)] = 30704, - [SMALL_STATE(1550)] = 30764, - [SMALL_STATE(1551)] = 30824, - [SMALL_STATE(1552)] = 30884, - [SMALL_STATE(1553)] = 30944, - [SMALL_STATE(1554)] = 31004, - [SMALL_STATE(1555)] = 31064, - [SMALL_STATE(1556)] = 31124, - [SMALL_STATE(1557)] = 31184, - [SMALL_STATE(1558)] = 31245, - [SMALL_STATE(1559)] = 31306, - [SMALL_STATE(1560)] = 31393, - [SMALL_STATE(1561)] = 31452, - [SMALL_STATE(1562)] = 31539, - [SMALL_STATE(1563)] = 31626, - [SMALL_STATE(1564)] = 31685, - [SMALL_STATE(1565)] = 31744, - [SMALL_STATE(1566)] = 31805, - [SMALL_STATE(1567)] = 31874, - [SMALL_STATE(1568)] = 31935, - [SMALL_STATE(1569)] = 32022, - [SMALL_STATE(1570)] = 32093, - [SMALL_STATE(1571)] = 32180, - [SMALL_STATE(1572)] = 32267, - [SMALL_STATE(1573)] = 32353, - [SMALL_STATE(1574)] = 32423, - [SMALL_STATE(1575)] = 32507, - [SMALL_STATE(1576)] = 32589, - [SMALL_STATE(1577)] = 32675, - [SMALL_STATE(1578)] = 32745, - [SMALL_STATE(1579)] = 32813, - [SMALL_STATE(1580)] = 32887, - [SMALL_STATE(1581)] = 32959, - [SMALL_STATE(1582)] = 33035, - [SMALL_STATE(1583)] = 33125, - [SMALL_STATE(1584)] = 33215, - [SMALL_STATE(1585)] = 33293, - [SMALL_STATE(1586)] = 33385, - [SMALL_STATE(1587)] = 33477, - [SMALL_STATE(1588)] = 33547, - [SMALL_STATE(1589)] = 33611, - [SMALL_STATE(1590)] = 33677, - [SMALL_STATE(1591)] = 33767, - [SMALL_STATE(1592)] = 33857, - [SMALL_STATE(1593)] = 33949, - [SMALL_STATE(1594)] = 34041, - [SMALL_STATE(1595)] = 34131, - [SMALL_STATE(1596)] = 34221, - [SMALL_STATE(1597)] = 34291, - [SMALL_STATE(1598)] = 34354, - [SMALL_STATE(1599)] = 34421, - [SMALL_STATE(1600)] = 34484, - [SMALL_STATE(1601)] = 34547, - [SMALL_STATE(1602)] = 34610, - [SMALL_STATE(1603)] = 34675, - [SMALL_STATE(1604)] = 34765, - [SMALL_STATE(1605)] = 34829, - [SMALL_STATE(1606)] = 34885, - [SMALL_STATE(1607)] = 34975, - [SMALL_STATE(1608)] = 35033, - [SMALL_STATE(1609)] = 35089, - [SMALL_STATE(1610)] = 35153, - [SMALL_STATE(1611)] = 35217, - [SMALL_STATE(1612)] = 35275, - [SMALL_STATE(1613)] = 35335, - [SMALL_STATE(1614)] = 35395, - [SMALL_STATE(1615)] = 35455, - [SMALL_STATE(1616)] = 35515, - [SMALL_STATE(1617)] = 35571, - [SMALL_STATE(1618)] = 35627, - [SMALL_STATE(1619)] = 35717, - [SMALL_STATE(1620)] = 35777, - [SMALL_STATE(1621)] = 35837, - [SMALL_STATE(1622)] = 35897, - [SMALL_STATE(1623)] = 35957, - [SMALL_STATE(1624)] = 36015, - [SMALL_STATE(1625)] = 36105, - [SMALL_STATE(1626)] = 36169, - [SMALL_STATE(1627)] = 36227, - [SMALL_STATE(1628)] = 36322, - [SMALL_STATE(1629)] = 36379, - [SMALL_STATE(1630)] = 36474, - [SMALL_STATE(1631)] = 36529, - [SMALL_STATE(1632)] = 36586, - [SMALL_STATE(1633)] = 36681, - [SMALL_STATE(1634)] = 36738, - [SMALL_STATE(1635)] = 36793, - [SMALL_STATE(1636)] = 36848, - [SMALL_STATE(1637)] = 36943, - [SMALL_STATE(1638)] = 37000, - [SMALL_STATE(1639)] = 37095, - [SMALL_STATE(1640)] = 37152, - [SMALL_STATE(1641)] = 37207, - [SMALL_STATE(1642)] = 37264, - [SMALL_STATE(1643)] = 37323, - [SMALL_STATE(1644)] = 37418, - [SMALL_STATE(1645)] = 37477, - [SMALL_STATE(1646)] = 37532, - [SMALL_STATE(1647)] = 37627, - [SMALL_STATE(1648)] = 37682, - [SMALL_STATE(1649)] = 37741, - [SMALL_STATE(1650)] = 37836, - [SMALL_STATE(1651)] = 37895, - [SMALL_STATE(1652)] = 37976, - [SMALL_STATE(1653)] = 38031, - [SMALL_STATE(1654)] = 38126, - [SMALL_STATE(1655)] = 38181, - [SMALL_STATE(1656)] = 38238, - [SMALL_STATE(1657)] = 38333, - [SMALL_STATE(1658)] = 38428, - [SMALL_STATE(1659)] = 38523, - [SMALL_STATE(1660)] = 38577, - [SMALL_STATE(1661)] = 38633, - [SMALL_STATE(1662)] = 38713, - [SMALL_STATE(1663)] = 38769, - [SMALL_STATE(1664)] = 38825, - [SMALL_STATE(1665)] = 38881, - [SMALL_STATE(1666)] = 38969, - [SMALL_STATE(1667)] = 39025, - [SMALL_STATE(1668)] = 39117, - [SMALL_STATE(1669)] = 39195, - [SMALL_STATE(1670)] = 39269, - [SMALL_STATE(1671)] = 39361, - [SMALL_STATE(1672)] = 39417, - [SMALL_STATE(1673)] = 39475, - [SMALL_STATE(1674)] = 39529, - [SMALL_STATE(1675)] = 39585, - [SMALL_STATE(1676)] = 39639, - [SMALL_STATE(1677)] = 39727, - [SMALL_STATE(1678)] = 39783, - [SMALL_STATE(1679)] = 39837, - [SMALL_STATE(1680)] = 39891, - [SMALL_STATE(1681)] = 39983, - [SMALL_STATE(1682)] = 40037, - [SMALL_STATE(1683)] = 40091, - [SMALL_STATE(1684)] = 40157, - [SMALL_STATE(1685)] = 40213, - [SMALL_STATE(1686)] = 40269, - [SMALL_STATE(1687)] = 40355, - [SMALL_STATE(1688)] = 40409, - [SMALL_STATE(1689)] = 40487, - [SMALL_STATE(1690)] = 40541, - [SMALL_STATE(1691)] = 40627, - [SMALL_STATE(1692)] = 40691, - [SMALL_STATE(1693)] = 40773, - [SMALL_STATE(1694)] = 40827, - [SMALL_STATE(1695)] = 40897, - [SMALL_STATE(1696)] = 40953, - [SMALL_STATE(1697)] = 41031, - [SMALL_STATE(1698)] = 41119, - [SMALL_STATE(1699)] = 41211, - [SMALL_STATE(1700)] = 41293, - [SMALL_STATE(1701)] = 41365, - [SMALL_STATE(1702)] = 41451, - [SMALL_STATE(1703)] = 41507, - [SMALL_STATE(1704)] = 41593, - [SMALL_STATE(1705)] = 41681, - [SMALL_STATE(1706)] = 41735, - [SMALL_STATE(1707)] = 41821, - [SMALL_STATE(1708)] = 41913, - [SMALL_STATE(1709)] = 41967, - [SMALL_STATE(1710)] = 42021, - [SMALL_STATE(1711)] = 42089, - [SMALL_STATE(1712)] = 42177, - [SMALL_STATE(1713)] = 42233, - [SMALL_STATE(1714)] = 42289, - [SMALL_STATE(1715)] = 42377, - [SMALL_STATE(1716)] = 42433, - [SMALL_STATE(1717)] = 42489, - [SMALL_STATE(1718)] = 42543, - [SMALL_STATE(1719)] = 42597, - [SMALL_STATE(1720)] = 42689, - [SMALL_STATE(1721)] = 42743, - [SMALL_STATE(1722)] = 42829, - [SMALL_STATE(1723)] = 42882, - [SMALL_STATE(1724)] = 42969, - [SMALL_STATE(1725)] = 43022, - [SMALL_STATE(1726)] = 43109, - [SMALL_STATE(1727)] = 43162, - [SMALL_STATE(1728)] = 43215, - [SMALL_STATE(1729)] = 43268, - [SMALL_STATE(1730)] = 43321, - [SMALL_STATE(1731)] = 43410, - [SMALL_STATE(1732)] = 43463, - [SMALL_STATE(1733)] = 43550, - [SMALL_STATE(1734)] = 43603, - [SMALL_STATE(1735)] = 43690, - [SMALL_STATE(1736)] = 43743, - [SMALL_STATE(1737)] = 43830, - [SMALL_STATE(1738)] = 43915, - [SMALL_STATE(1739)] = 43968, - [SMALL_STATE(1740)] = 44021, - [SMALL_STATE(1741)] = 44074, - [SMALL_STATE(1742)] = 44137, - [SMALL_STATE(1743)] = 44206, - [SMALL_STATE(1744)] = 44273, - [SMALL_STATE(1745)] = 44344, - [SMALL_STATE(1746)] = 44421, - [SMALL_STATE(1747)] = 44500, - [SMALL_STATE(1748)] = 44565, - [SMALL_STATE(1749)] = 44650, - [SMALL_STATE(1750)] = 44735, - [SMALL_STATE(1751)] = 44808, - [SMALL_STATE(1752)] = 44889, - [SMALL_STATE(1753)] = 44942, - [SMALL_STATE(1754)] = 44995, - [SMALL_STATE(1755)] = 45082, - [SMALL_STATE(1756)] = 45135, - [SMALL_STATE(1757)] = 45188, - [SMALL_STATE(1758)] = 45241, - [SMALL_STATE(1759)] = 45294, - [SMALL_STATE(1760)] = 45347, - [SMALL_STATE(1761)] = 45400, - [SMALL_STATE(1762)] = 45453, - [SMALL_STATE(1763)] = 45506, - [SMALL_STATE(1764)] = 45559, - [SMALL_STATE(1765)] = 45646, - [SMALL_STATE(1766)] = 45699, - [SMALL_STATE(1767)] = 45752, - [SMALL_STATE(1768)] = 45805, - [SMALL_STATE(1769)] = 45858, - [SMALL_STATE(1770)] = 45947, - [SMALL_STATE(1771)] = 46000, - [SMALL_STATE(1772)] = 46053, - [SMALL_STATE(1773)] = 46106, - [SMALL_STATE(1774)] = 46159, - [SMALL_STATE(1775)] = 46246, - [SMALL_STATE(1776)] = 46299, - [SMALL_STATE(1777)] = 46386, - [SMALL_STATE(1778)] = 46439, - [SMALL_STATE(1779)] = 46492, - [SMALL_STATE(1780)] = 46545, - [SMALL_STATE(1781)] = 46598, - [SMALL_STATE(1782)] = 46685, - [SMALL_STATE(1783)] = 46738, - [SMALL_STATE(1784)] = 46825, - [SMALL_STATE(1785)] = 46878, - [SMALL_STATE(1786)] = 46931, - [SMALL_STATE(1787)] = 47018, - [SMALL_STATE(1788)] = 47105, - [SMALL_STATE(1789)] = 47194, - [SMALL_STATE(1790)] = 47281, - [SMALL_STATE(1791)] = 47334, - [SMALL_STATE(1792)] = 47409, - [SMALL_STATE(1793)] = 47498, - [SMALL_STATE(1794)] = 47587, - [SMALL_STATE(1795)] = 47640, - [SMALL_STATE(1796)] = 47729, - [SMALL_STATE(1797)] = 47816, - [SMALL_STATE(1798)] = 47905, - [SMALL_STATE(1799)] = 47958, - [SMALL_STATE(1800)] = 48047, - [SMALL_STATE(1801)] = 48136, - [SMALL_STATE(1802)] = 48221, - [SMALL_STATE(1803)] = 48310, - [SMALL_STATE(1804)] = 48363, - [SMALL_STATE(1805)] = 48416, - [SMALL_STATE(1806)] = 48505, - [SMALL_STATE(1807)] = 48558, - [SMALL_STATE(1808)] = 48611, - [SMALL_STATE(1809)] = 48664, - [SMALL_STATE(1810)] = 48753, - [SMALL_STATE(1811)] = 48806, - [SMALL_STATE(1812)] = 48895, - [SMALL_STATE(1813)] = 48948, - [SMALL_STATE(1814)] = 49037, - [SMALL_STATE(1815)] = 49090, - [SMALL_STATE(1816)] = 49179, - [SMALL_STATE(1817)] = 49268, - [SMALL_STATE(1818)] = 49321, - [SMALL_STATE(1819)] = 49374, - [SMALL_STATE(1820)] = 49463, - [SMALL_STATE(1821)] = 49552, - [SMALL_STATE(1822)] = 49639, - [SMALL_STATE(1823)] = 49692, - [SMALL_STATE(1824)] = 49745, - [SMALL_STATE(1825)] = 49834, - [SMALL_STATE(1826)] = 49887, - [SMALL_STATE(1827)] = 49976, - [SMALL_STATE(1828)] = 50063, - [SMALL_STATE(1829)] = 50148, - [SMALL_STATE(1830)] = 50229, - [SMALL_STATE(1831)] = 50314, - [SMALL_STATE(1832)] = 50403, - [SMALL_STATE(1833)] = 50488, - [SMALL_STATE(1834)] = 50573, - [SMALL_STATE(1835)] = 50662, - [SMALL_STATE(1836)] = 50751, - [SMALL_STATE(1837)] = 50840, - [SMALL_STATE(1838)] = 50925, - [SMALL_STATE(1839)] = 50978, - [SMALL_STATE(1840)] = 51031, - [SMALL_STATE(1841)] = 51084, - [SMALL_STATE(1842)] = 51173, - [SMALL_STATE(1843)] = 51236, - [SMALL_STATE(1844)] = 51305, - [SMALL_STATE(1845)] = 51372, - [SMALL_STATE(1846)] = 51461, - [SMALL_STATE(1847)] = 51514, - [SMALL_STATE(1848)] = 51591, - [SMALL_STATE(1849)] = 51670, - [SMALL_STATE(1850)] = 51735, - [SMALL_STATE(1851)] = 51820, - [SMALL_STATE(1852)] = 51905, - [SMALL_STATE(1853)] = 51994, - [SMALL_STATE(1854)] = 52083, - [SMALL_STATE(1855)] = 52172, - [SMALL_STATE(1856)] = 52261, - [SMALL_STATE(1857)] = 52334, - [SMALL_STATE(1858)] = 52415, - [SMALL_STATE(1859)] = 52468, - [SMALL_STATE(1860)] = 52521, - [SMALL_STATE(1861)] = 52610, - [SMALL_STATE(1862)] = 52663, - [SMALL_STATE(1863)] = 52752, - [SMALL_STATE(1864)] = 52805, - [SMALL_STATE(1865)] = 52894, - [SMALL_STATE(1866)] = 52983, - [SMALL_STATE(1867)] = 53072, - [SMALL_STATE(1868)] = 53161, - [SMALL_STATE(1869)] = 53250, - [SMALL_STATE(1870)] = 53339, - [SMALL_STATE(1871)] = 53392, - [SMALL_STATE(1872)] = 53481, - [SMALL_STATE(1873)] = 53570, - [SMALL_STATE(1874)] = 53623, - [SMALL_STATE(1875)] = 53676, - [SMALL_STATE(1876)] = 53765, - [SMALL_STATE(1877)] = 53854, - [SMALL_STATE(1878)] = 53943, - [SMALL_STATE(1879)] = 54032, - [SMALL_STATE(1880)] = 54121, - [SMALL_STATE(1881)] = 54182, - [SMALL_STATE(1882)] = 54271, - [SMALL_STATE(1883)] = 54360, - [SMALL_STATE(1884)] = 54447, - [SMALL_STATE(1885)] = 54522, - [SMALL_STATE(1886)] = 54575, - [SMALL_STATE(1887)] = 54628, - [SMALL_STATE(1888)] = 54717, - [SMALL_STATE(1889)] = 54770, - [SMALL_STATE(1890)] = 54823, - [SMALL_STATE(1891)] = 54876, - [SMALL_STATE(1892)] = 54951, - [SMALL_STATE(1893)] = 55004, - [SMALL_STATE(1894)] = 55057, - [SMALL_STATE(1895)] = 55110, - [SMALL_STATE(1896)] = 55163, - [SMALL_STATE(1897)] = 55216, - [SMALL_STATE(1898)] = 55269, - [SMALL_STATE(1899)] = 55322, - [SMALL_STATE(1900)] = 55375, - [SMALL_STATE(1901)] = 55428, - [SMALL_STATE(1902)] = 55481, - [SMALL_STATE(1903)] = 55534, - [SMALL_STATE(1904)] = 55587, - [SMALL_STATE(1905)] = 55646, - [SMALL_STATE(1906)] = 55735, - [SMALL_STATE(1907)] = 55788, - [SMALL_STATE(1908)] = 55847, - [SMALL_STATE(1909)] = 55900, - [SMALL_STATE(1910)] = 55953, - [SMALL_STATE(1911)] = 56034, - [SMALL_STATE(1912)] = 56093, - [SMALL_STATE(1913)] = 56178, - [SMALL_STATE(1914)] = 56253, - [SMALL_STATE(1915)] = 56306, - [SMALL_STATE(1916)] = 56393, - [SMALL_STATE(1917)] = 56480, - [SMALL_STATE(1918)] = 56565, - [SMALL_STATE(1919)] = 56650, - [SMALL_STATE(1920)] = 56703, - [SMALL_STATE(1921)] = 56756, - [SMALL_STATE(1922)] = 56809, - [SMALL_STATE(1923)] = 56862, - [SMALL_STATE(1924)] = 56915, - [SMALL_STATE(1925)] = 57002, - [SMALL_STATE(1926)] = 57055, - [SMALL_STATE(1927)] = 57108, - [SMALL_STATE(1928)] = 57161, - [SMALL_STATE(1929)] = 57214, - [SMALL_STATE(1930)] = 57267, - [SMALL_STATE(1931)] = 57320, - [SMALL_STATE(1932)] = 57373, - [SMALL_STATE(1933)] = 57426, - [SMALL_STATE(1934)] = 57479, - [SMALL_STATE(1935)] = 57532, - [SMALL_STATE(1936)] = 57619, - [SMALL_STATE(1937)] = 57678, - [SMALL_STATE(1938)] = 57731, - [SMALL_STATE(1939)] = 57784, - [SMALL_STATE(1940)] = 57837, - [SMALL_STATE(1941)] = 57890, - [SMALL_STATE(1942)] = 57943, - [SMALL_STATE(1943)] = 57996, - [SMALL_STATE(1944)] = 58085, - [SMALL_STATE(1945)] = 58160, - [SMALL_STATE(1946)] = 58213, - [SMALL_STATE(1947)] = 58284, - [SMALL_STATE(1948)] = 58370, - [SMALL_STATE(1949)] = 58446, - [SMALL_STATE(1950)] = 58532, - [SMALL_STATE(1951)] = 58618, - [SMALL_STATE(1952)] = 58704, - [SMALL_STATE(1953)] = 58790, - [SMALL_STATE(1954)] = 58876, - [SMALL_STATE(1955)] = 58962, - [SMALL_STATE(1956)] = 59048, - [SMALL_STATE(1957)] = 59134, - [SMALL_STATE(1958)] = 59220, - [SMALL_STATE(1959)] = 59306, - [SMALL_STATE(1960)] = 59392, - [SMALL_STATE(1961)] = 59478, - [SMALL_STATE(1962)] = 59564, - [SMALL_STATE(1963)] = 59650, - [SMALL_STATE(1964)] = 59736, - [SMALL_STATE(1965)] = 59820, - [SMALL_STATE(1966)] = 59906, - [SMALL_STATE(1967)] = 59992, - [SMALL_STATE(1968)] = 60078, - [SMALL_STATE(1969)] = 60164, - [SMALL_STATE(1970)] = 60250, - [SMALL_STATE(1971)] = 60326, - [SMALL_STATE(1972)] = 60412, - [SMALL_STATE(1973)] = 60498, - [SMALL_STATE(1974)] = 60584, - [SMALL_STATE(1975)] = 60670, - [SMALL_STATE(1976)] = 60746, - [SMALL_STATE(1977)] = 60832, - [SMALL_STATE(1978)] = 60918, - [SMALL_STATE(1979)] = 60994, - [SMALL_STATE(1980)] = 61080, - [SMALL_STATE(1981)] = 61164, - [SMALL_STATE(1982)] = 61250, - [SMALL_STATE(1983)] = 61336, - [SMALL_STATE(1984)] = 61412, - [SMALL_STATE(1985)] = 61488, - [SMALL_STATE(1986)] = 61564, - [SMALL_STATE(1987)] = 61640, - [SMALL_STATE(1988)] = 61688, - [SMALL_STATE(1989)] = 61736, - [SMALL_STATE(1990)] = 61784, - [SMALL_STATE(1991)] = 61847, - [SMALL_STATE(1992)] = 61910, - [SMALL_STATE(1993)] = 61973, - [SMALL_STATE(1994)] = 62036, - [SMALL_STATE(1995)] = 62099, - [SMALL_STATE(1996)] = 62162, - [SMALL_STATE(1997)] = 62225, - [SMALL_STATE(1998)] = 62288, - [SMALL_STATE(1999)] = 62351, - [SMALL_STATE(2000)] = 62411, - [SMALL_STATE(2001)] = 62471, - [SMALL_STATE(2002)] = 62507, - [SMALL_STATE(2003)] = 62543, - [SMALL_STATE(2004)] = 62596, - [SMALL_STATE(2005)] = 62633, - [SMALL_STATE(2006)] = 62670, - [SMALL_STATE(2007)] = 62707, - [SMALL_STATE(2008)] = 62744, - [SMALL_STATE(2009)] = 62780, - [SMALL_STATE(2010)] = 62816, - [SMALL_STATE(2011)] = 62850, - [SMALL_STATE(2012)] = 62884, - [SMALL_STATE(2013)] = 62918, - [SMALL_STATE(2014)] = 62952, - [SMALL_STATE(2015)] = 62996, - [SMALL_STATE(2016)] = 63032, - [SMALL_STATE(2017)] = 63076, - [SMALL_STATE(2018)] = 63120, - [SMALL_STATE(2019)] = 63156, - [SMALL_STATE(2020)] = 63189, - [SMALL_STATE(2021)] = 63222, - [SMALL_STATE(2022)] = 63255, - [SMALL_STATE(2023)] = 63288, - [SMALL_STATE(2024)] = 63339, - [SMALL_STATE(2025)] = 63380, - [SMALL_STATE(2026)] = 63411, - [SMALL_STATE(2027)] = 63443, - [SMALL_STATE(2028)] = 63481, - [SMALL_STATE(2029)] = 63527, - [SMALL_STATE(2030)] = 63559, - [SMALL_STATE(2031)] = 63619, - [SMALL_STATE(2032)] = 63657, - [SMALL_STATE(2033)] = 63695, - [SMALL_STATE(2034)] = 63727, - [SMALL_STATE(2035)] = 63771, - [SMALL_STATE(2036)] = 63831, - [SMALL_STATE(2037)] = 63869, - [SMALL_STATE(2038)] = 63922, - [SMALL_STATE(2039)] = 63955, - [SMALL_STATE(2040)] = 63986, - [SMALL_STATE(2041)] = 64015, - [SMALL_STATE(2042)] = 64044, - [SMALL_STATE(2043)] = 64077, - [SMALL_STATE(2044)] = 64132, - [SMALL_STATE(2045)] = 64161, - [SMALL_STATE(2046)] = 64190, - [SMALL_STATE(2047)] = 64219, - [SMALL_STATE(2048)] = 64260, - [SMALL_STATE(2049)] = 64289, - [SMALL_STATE(2050)] = 64318, - [SMALL_STATE(2051)] = 64371, - [SMALL_STATE(2052)] = 64404, - [SMALL_STATE(2053)] = 64433, - [SMALL_STATE(2054)] = 64466, - [SMALL_STATE(2055)] = 64495, - [SMALL_STATE(2056)] = 64538, - [SMALL_STATE(2057)] = 64571, - [SMALL_STATE(2058)] = 64604, - [SMALL_STATE(2059)] = 64637, - [SMALL_STATE(2060)] = 64665, - [SMALL_STATE(2061)] = 64693, - [SMALL_STATE(2062)] = 64723, - [SMALL_STATE(2063)] = 64753, - [SMALL_STATE(2064)] = 64797, - [SMALL_STATE(2065)] = 64825, - [SMALL_STATE(2066)] = 64853, - [SMALL_STATE(2067)] = 64881, - [SMALL_STATE(2068)] = 64909, - [SMALL_STATE(2069)] = 64937, - [SMALL_STATE(2070)] = 64965, - [SMALL_STATE(2071)] = 64993, - [SMALL_STATE(2072)] = 65021, - [SMALL_STATE(2073)] = 65049, - [SMALL_STATE(2074)] = 65077, - [SMALL_STATE(2075)] = 65105, - [SMALL_STATE(2076)] = 65133, - [SMALL_STATE(2077)] = 65161, - [SMALL_STATE(2078)] = 65189, - [SMALL_STATE(2079)] = 65217, - [SMALL_STATE(2080)] = 65245, - [SMALL_STATE(2081)] = 65273, - [SMALL_STATE(2082)] = 65301, - [SMALL_STATE(2083)] = 65329, - [SMALL_STATE(2084)] = 65357, - [SMALL_STATE(2085)] = 65385, - [SMALL_STATE(2086)] = 65413, - [SMALL_STATE(2087)] = 65441, - [SMALL_STATE(2088)] = 65469, - [SMALL_STATE(2089)] = 65497, - [SMALL_STATE(2090)] = 65525, - [SMALL_STATE(2091)] = 65553, - [SMALL_STATE(2092)] = 65581, - [SMALL_STATE(2093)] = 65609, - [SMALL_STATE(2094)] = 65637, - [SMALL_STATE(2095)] = 65665, - [SMALL_STATE(2096)] = 65693, - [SMALL_STATE(2097)] = 65721, - [SMALL_STATE(2098)] = 65756, - [SMALL_STATE(2099)] = 65785, - [SMALL_STATE(2100)] = 65814, - [SMALL_STATE(2101)] = 65843, - [SMALL_STATE(2102)] = 65872, - [SMALL_STATE(2103)] = 65901, - [SMALL_STATE(2104)] = 65930, - [SMALL_STATE(2105)] = 65959, - [SMALL_STATE(2106)] = 65988, - [SMALL_STATE(2107)] = 66017, - [SMALL_STATE(2108)] = 66046, - [SMALL_STATE(2109)] = 66078, - [SMALL_STATE(2110)] = 66118, - [SMALL_STATE(2111)] = 66148, - [SMALL_STATE(2112)] = 66194, - [SMALL_STATE(2113)] = 66226, - [SMALL_STATE(2114)] = 66258, - [SMALL_STATE(2115)] = 66290, - [SMALL_STATE(2116)] = 66322, - [SMALL_STATE(2117)] = 66350, - [SMALL_STATE(2118)] = 66382, - [SMALL_STATE(2119)] = 66424, - [SMALL_STATE(2120)] = 66456, - [SMALL_STATE(2121)] = 66488, - [SMALL_STATE(2122)] = 66520, - [SMALL_STATE(2123)] = 66552, - [SMALL_STATE(2124)] = 66596, - [SMALL_STATE(2125)] = 66628, - [SMALL_STATE(2126)] = 66660, - [SMALL_STATE(2127)] = 66703, - [SMALL_STATE(2128)] = 66746, - [SMALL_STATE(2129)] = 66789, - [SMALL_STATE(2130)] = 66832, - [SMALL_STATE(2131)] = 66875, - [SMALL_STATE(2132)] = 66918, - [SMALL_STATE(2133)] = 66947, - [SMALL_STATE(2134)] = 66976, - [SMALL_STATE(2135)] = 67016, - [SMALL_STATE(2136)] = 67054, - [SMALL_STATE(2137)] = 67078, - [SMALL_STATE(2138)] = 67118, - [SMALL_STATE(2139)] = 67158, - [SMALL_STATE(2140)] = 67198, - [SMALL_STATE(2141)] = 67238, - [SMALL_STATE(2142)] = 67276, - [SMALL_STATE(2143)] = 67304, - [SMALL_STATE(2144)] = 67332, - [SMALL_STATE(2145)] = 67360, - [SMALL_STATE(2146)] = 67388, - [SMALL_STATE(2147)] = 67416, - [SMALL_STATE(2148)] = 67456, - [SMALL_STATE(2149)] = 67484, - [SMALL_STATE(2150)] = 67512, - [SMALL_STATE(2151)] = 67540, - [SMALL_STATE(2152)] = 67568, - [SMALL_STATE(2153)] = 67592, - [SMALL_STATE(2154)] = 67630, - [SMALL_STATE(2155)] = 67658, - [SMALL_STATE(2156)] = 67696, - [SMALL_STATE(2157)] = 67734, - [SMALL_STATE(2158)] = 67758, - [SMALL_STATE(2159)] = 67798, - [SMALL_STATE(2160)] = 67836, - [SMALL_STATE(2161)] = 67860, - [SMALL_STATE(2162)] = 67900, - [SMALL_STATE(2163)] = 67928, - [SMALL_STATE(2164)] = 67956, - [SMALL_STATE(2165)] = 67984, - [SMALL_STATE(2166)] = 68014, - [SMALL_STATE(2167)] = 68042, - [SMALL_STATE(2168)] = 68072, - [SMALL_STATE(2169)] = 68100, - [SMALL_STATE(2170)] = 68138, - [SMALL_STATE(2171)] = 68176, - [SMALL_STATE(2172)] = 68214, - [SMALL_STATE(2173)] = 68252, - [SMALL_STATE(2174)] = 68292, - [SMALL_STATE(2175)] = 68320, - [SMALL_STATE(2176)] = 68358, - [SMALL_STATE(2177)] = 68392, - [SMALL_STATE(2178)] = 68432, - [SMALL_STATE(2179)] = 68456, - [SMALL_STATE(2180)] = 68494, - [SMALL_STATE(2181)] = 68517, - [SMALL_STATE(2182)] = 68540, - [SMALL_STATE(2183)] = 68563, - [SMALL_STATE(2184)] = 68600, - [SMALL_STATE(2185)] = 68623, - [SMALL_STATE(2186)] = 68646, - [SMALL_STATE(2187)] = 68683, - [SMALL_STATE(2188)] = 68718, - [SMALL_STATE(2189)] = 68741, - [SMALL_STATE(2190)] = 68764, - [SMALL_STATE(2191)] = 68787, - [SMALL_STATE(2192)] = 68810, - [SMALL_STATE(2193)] = 68833, - [SMALL_STATE(2194)] = 68856, - [SMALL_STATE(2195)] = 68879, - [SMALL_STATE(2196)] = 68910, - [SMALL_STATE(2197)] = 68941, - [SMALL_STATE(2198)] = 68974, - [SMALL_STATE(2199)] = 68997, - [SMALL_STATE(2200)] = 69028, - [SMALL_STATE(2201)] = 69063, - [SMALL_STATE(2202)] = 69098, - [SMALL_STATE(2203)] = 69121, - [SMALL_STATE(2204)] = 69144, - [SMALL_STATE(2205)] = 69167, - [SMALL_STATE(2206)] = 69190, - [SMALL_STATE(2207)] = 69213, - [SMALL_STATE(2208)] = 69236, - [SMALL_STATE(2209)] = 69273, - [SMALL_STATE(2210)] = 69296, - [SMALL_STATE(2211)] = 69319, - [SMALL_STATE(2212)] = 69354, - [SMALL_STATE(2213)] = 69377, - [SMALL_STATE(2214)] = 69418, - [SMALL_STATE(2215)] = 69441, - [SMALL_STATE(2216)] = 69464, - [SMALL_STATE(2217)] = 69495, - [SMALL_STATE(2218)] = 69518, - [SMALL_STATE(2219)] = 69541, - [SMALL_STATE(2220)] = 69572, - [SMALL_STATE(2221)] = 69595, - [SMALL_STATE(2222)] = 69618, - [SMALL_STATE(2223)] = 69641, - [SMALL_STATE(2224)] = 69682, - [SMALL_STATE(2225)] = 69713, - [SMALL_STATE(2226)] = 69736, - [SMALL_STATE(2227)] = 69759, - [SMALL_STATE(2228)] = 69782, - [SMALL_STATE(2229)] = 69805, - [SMALL_STATE(2230)] = 69846, - [SMALL_STATE(2231)] = 69869, - [SMALL_STATE(2232)] = 69892, - [SMALL_STATE(2233)] = 69929, - [SMALL_STATE(2234)] = 69970, - [SMALL_STATE(2235)] = 69993, - [SMALL_STATE(2236)] = 70023, - [SMALL_STATE(2237)] = 70055, - [SMALL_STATE(2238)] = 70079, - [SMALL_STATE(2239)] = 70117, - [SMALL_STATE(2240)] = 70145, - [SMALL_STATE(2241)] = 70177, - [SMALL_STATE(2242)] = 70215, - [SMALL_STATE(2243)] = 70247, - [SMALL_STATE(2244)] = 70275, - [SMALL_STATE(2245)] = 70307, - [SMALL_STATE(2246)] = 70337, - [SMALL_STATE(2247)] = 70375, - [SMALL_STATE(2248)] = 70413, - [SMALL_STATE(2249)] = 70445, - [SMALL_STATE(2250)] = 70483, - [SMALL_STATE(2251)] = 70521, - [SMALL_STATE(2252)] = 70559, - [SMALL_STATE(2253)] = 70591, - [SMALL_STATE(2254)] = 70619, - [SMALL_STATE(2255)] = 70647, - [SMALL_STATE(2256)] = 70675, - [SMALL_STATE(2257)] = 70713, - [SMALL_STATE(2258)] = 70745, - [SMALL_STATE(2259)] = 70777, - [SMALL_STATE(2260)] = 70805, - [SMALL_STATE(2261)] = 70837, - [SMALL_STATE(2262)] = 70875, - [SMALL_STATE(2263)] = 70911, - [SMALL_STATE(2264)] = 70941, - [SMALL_STATE(2265)] = 70979, - [SMALL_STATE(2266)] = 71011, - [SMALL_STATE(2267)] = 71049, - [SMALL_STATE(2268)] = 71087, - [SMALL_STATE(2269)] = 71117, - [SMALL_STATE(2270)] = 71141, - [SMALL_STATE(2271)] = 71175, - [SMALL_STATE(2272)] = 71199, - [SMALL_STATE(2273)] = 71225, - [SMALL_STATE(2274)] = 71257, - [SMALL_STATE(2275)] = 71295, - [SMALL_STATE(2276)] = 71333, - [SMALL_STATE(2277)] = 71371, - [SMALL_STATE(2278)] = 71409, - [SMALL_STATE(2279)] = 71439, - [SMALL_STATE(2280)] = 71463, - [SMALL_STATE(2281)] = 71487, - [SMALL_STATE(2282)] = 71519, - [SMALL_STATE(2283)] = 71545, - [SMALL_STATE(2284)] = 71577, - [SMALL_STATE(2285)] = 71603, - [SMALL_STATE(2286)] = 71631, - [SMALL_STATE(2287)] = 71665, - [SMALL_STATE(2288)] = 71693, - [SMALL_STATE(2289)] = 71714, - [SMALL_STATE(2290)] = 71749, - [SMALL_STATE(2291)] = 71784, - [SMALL_STATE(2292)] = 71819, - [SMALL_STATE(2293)] = 71854, - [SMALL_STATE(2294)] = 71889, - [SMALL_STATE(2295)] = 71924, - [SMALL_STATE(2296)] = 71959, - [SMALL_STATE(2297)] = 71994, - [SMALL_STATE(2298)] = 72019, - [SMALL_STATE(2299)] = 72054, - [SMALL_STATE(2300)] = 72081, - [SMALL_STATE(2301)] = 72106, - [SMALL_STATE(2302)] = 72141, - [SMALL_STATE(2303)] = 72176, - [SMALL_STATE(2304)] = 72211, - [SMALL_STATE(2305)] = 72244, - [SMALL_STATE(2306)] = 72277, - [SMALL_STATE(2307)] = 72310, - [SMALL_STATE(2308)] = 72345, - [SMALL_STATE(2309)] = 72380, - [SMALL_STATE(2310)] = 72415, - [SMALL_STATE(2311)] = 72450, - [SMALL_STATE(2312)] = 72485, - [SMALL_STATE(2313)] = 72520, - [SMALL_STATE(2314)] = 72555, - [SMALL_STATE(2315)] = 72590, - [SMALL_STATE(2316)] = 72625, - [SMALL_STATE(2317)] = 72660, - [SMALL_STATE(2318)] = 72695, - [SMALL_STATE(2319)] = 72730, - [SMALL_STATE(2320)] = 72765, - [SMALL_STATE(2321)] = 72800, - [SMALL_STATE(2322)] = 72835, - [SMALL_STATE(2323)] = 72868, - [SMALL_STATE(2324)] = 72903, - [SMALL_STATE(2325)] = 72938, - [SMALL_STATE(2326)] = 72973, - [SMALL_STATE(2327)] = 73008, - [SMALL_STATE(2328)] = 73041, - [SMALL_STATE(2329)] = 73076, - [SMALL_STATE(2330)] = 73111, - [SMALL_STATE(2331)] = 73146, - [SMALL_STATE(2332)] = 73181, - [SMALL_STATE(2333)] = 73202, - [SMALL_STATE(2334)] = 73223, - [SMALL_STATE(2335)] = 73244, - [SMALL_STATE(2336)] = 73279, - [SMALL_STATE(2337)] = 73308, - [SMALL_STATE(2338)] = 73343, - [SMALL_STATE(2339)] = 73378, - [SMALL_STATE(2340)] = 73413, - [SMALL_STATE(2341)] = 73448, - [SMALL_STATE(2342)] = 73480, - [SMALL_STATE(2343)] = 73506, - [SMALL_STATE(2344)] = 73538, - [SMALL_STATE(2345)] = 73560, - [SMALL_STATE(2346)] = 73590, - [SMALL_STATE(2347)] = 73620, - [SMALL_STATE(2348)] = 73652, - [SMALL_STATE(2349)] = 73684, - [SMALL_STATE(2350)] = 73716, - [SMALL_STATE(2351)] = 73748, - [SMALL_STATE(2352)] = 73778, - [SMALL_STATE(2353)] = 73808, - [SMALL_STATE(2354)] = 73840, - [SMALL_STATE(2355)] = 73872, - [SMALL_STATE(2356)] = 73904, - [SMALL_STATE(2357)] = 73932, - [SMALL_STATE(2358)] = 73964, - [SMALL_STATE(2359)] = 73996, - [SMALL_STATE(2360)] = 74028, - [SMALL_STATE(2361)] = 74060, - [SMALL_STATE(2362)] = 74092, - [SMALL_STATE(2363)] = 74124, - [SMALL_STATE(2364)] = 74156, - [SMALL_STATE(2365)] = 74188, - [SMALL_STATE(2366)] = 74218, - [SMALL_STATE(2367)] = 74246, - [SMALL_STATE(2368)] = 74272, - [SMALL_STATE(2369)] = 74302, - [SMALL_STATE(2370)] = 74330, - [SMALL_STATE(2371)] = 74362, - [SMALL_STATE(2372)] = 74394, - [SMALL_STATE(2373)] = 74426, - [SMALL_STATE(2374)] = 74458, - [SMALL_STATE(2375)] = 74490, - [SMALL_STATE(2376)] = 74522, - [SMALL_STATE(2377)] = 74554, - [SMALL_STATE(2378)] = 74586, - [SMALL_STATE(2379)] = 74618, - [SMALL_STATE(2380)] = 74650, - [SMALL_STATE(2381)] = 74682, - [SMALL_STATE(2382)] = 74714, - [SMALL_STATE(2383)] = 74746, - [SMALL_STATE(2384)] = 74778, - [SMALL_STATE(2385)] = 74810, - [SMALL_STATE(2386)] = 74838, - [SMALL_STATE(2387)] = 74864, - [SMALL_STATE(2388)] = 74892, - [SMALL_STATE(2389)] = 74922, - [SMALL_STATE(2390)] = 74952, - [SMALL_STATE(2391)] = 74984, - [SMALL_STATE(2392)] = 75016, - [SMALL_STATE(2393)] = 75046, - [SMALL_STATE(2394)] = 75076, - [SMALL_STATE(2395)] = 75098, - [SMALL_STATE(2396)] = 75120, - [SMALL_STATE(2397)] = 75152, - [SMALL_STATE(2398)] = 75178, - [SMALL_STATE(2399)] = 75210, - [SMALL_STATE(2400)] = 75242, - [SMALL_STATE(2401)] = 75264, - [SMALL_STATE(2402)] = 75296, - [SMALL_STATE(2403)] = 75318, - [SMALL_STATE(2404)] = 75340, - [SMALL_STATE(2405)] = 75372, - [SMALL_STATE(2406)] = 75401, - [SMALL_STATE(2407)] = 75430, - [SMALL_STATE(2408)] = 75451, - [SMALL_STATE(2409)] = 75472, - [SMALL_STATE(2410)] = 75501, - [SMALL_STATE(2411)] = 75522, - [SMALL_STATE(2412)] = 75543, - [SMALL_STATE(2413)] = 75564, - [SMALL_STATE(2414)] = 75593, - [SMALL_STATE(2415)] = 75622, - [SMALL_STATE(2416)] = 75651, - [SMALL_STATE(2417)] = 75680, - [SMALL_STATE(2418)] = 75709, - [SMALL_STATE(2419)] = 75738, - [SMALL_STATE(2420)] = 75767, - [SMALL_STATE(2421)] = 75796, - [SMALL_STATE(2422)] = 75815, - [SMALL_STATE(2423)] = 75844, - [SMALL_STATE(2424)] = 75873, - [SMALL_STATE(2425)] = 75902, - [SMALL_STATE(2426)] = 75925, - [SMALL_STATE(2427)] = 75954, - [SMALL_STATE(2428)] = 75983, - [SMALL_STATE(2429)] = 76012, - [SMALL_STATE(2430)] = 76037, - [SMALL_STATE(2431)] = 76066, - [SMALL_STATE(2432)] = 76095, - [SMALL_STATE(2433)] = 76116, - [SMALL_STATE(2434)] = 76145, - [SMALL_STATE(2435)] = 76174, - [SMALL_STATE(2436)] = 76203, - [SMALL_STATE(2437)] = 76230, - [SMALL_STATE(2438)] = 76259, - [SMALL_STATE(2439)] = 76288, - [SMALL_STATE(2440)] = 76317, - [SMALL_STATE(2441)] = 76346, - [SMALL_STATE(2442)] = 76367, - [SMALL_STATE(2443)] = 76396, - [SMALL_STATE(2444)] = 76425, - [SMALL_STATE(2445)] = 76454, - [SMALL_STATE(2446)] = 76481, - [SMALL_STATE(2447)] = 76506, - [SMALL_STATE(2448)] = 76529, - [SMALL_STATE(2449)] = 76558, - [SMALL_STATE(2450)] = 76579, - [SMALL_STATE(2451)] = 76608, - [SMALL_STATE(2452)] = 76629, - [SMALL_STATE(2453)] = 76658, - [SMALL_STATE(2454)] = 76679, - [SMALL_STATE(2455)] = 76700, - [SMALL_STATE(2456)] = 76721, - [SMALL_STATE(2457)] = 76750, - [SMALL_STATE(2458)] = 76771, - [SMALL_STATE(2459)] = 76792, - [SMALL_STATE(2460)] = 76815, - [SMALL_STATE(2461)] = 76844, - [SMALL_STATE(2462)] = 76871, - [SMALL_STATE(2463)] = 76900, - [SMALL_STATE(2464)] = 76929, - [SMALL_STATE(2465)] = 76958, - [SMALL_STATE(2466)] = 76979, - [SMALL_STATE(2467)] = 77002, - [SMALL_STATE(2468)] = 77031, - [SMALL_STATE(2469)] = 77060, - [SMALL_STATE(2470)] = 77089, - [SMALL_STATE(2471)] = 77108, - [SMALL_STATE(2472)] = 77137, - [SMALL_STATE(2473)] = 77160, - [SMALL_STATE(2474)] = 77189, - [SMALL_STATE(2475)] = 77210, - [SMALL_STATE(2476)] = 77239, - [SMALL_STATE(2477)] = 77268, - [SMALL_STATE(2478)] = 77297, - [SMALL_STATE(2479)] = 77320, - [SMALL_STATE(2480)] = 77347, - [SMALL_STATE(2481)] = 77376, - [SMALL_STATE(2482)] = 77401, - [SMALL_STATE(2483)] = 77424, - [SMALL_STATE(2484)] = 77453, - [SMALL_STATE(2485)] = 77482, - [SMALL_STATE(2486)] = 77511, - [SMALL_STATE(2487)] = 77534, - [SMALL_STATE(2488)] = 77559, - [SMALL_STATE(2489)] = 77582, - [SMALL_STATE(2490)] = 77611, - [SMALL_STATE(2491)] = 77640, - [SMALL_STATE(2492)] = 77669, - [SMALL_STATE(2493)] = 77698, - [SMALL_STATE(2494)] = 77727, - [SMALL_STATE(2495)] = 77754, - [SMALL_STATE(2496)] = 77777, - [SMALL_STATE(2497)] = 77806, - [SMALL_STATE(2498)] = 77829, - [SMALL_STATE(2499)] = 77856, - [SMALL_STATE(2500)] = 77885, - [SMALL_STATE(2501)] = 77908, - [SMALL_STATE(2502)] = 77937, - [SMALL_STATE(2503)] = 77960, - [SMALL_STATE(2504)] = 77983, - [SMALL_STATE(2505)] = 78012, - [SMALL_STATE(2506)] = 78035, - [SMALL_STATE(2507)] = 78058, - [SMALL_STATE(2508)] = 78087, - [SMALL_STATE(2509)] = 78116, - [SMALL_STATE(2510)] = 78145, - [SMALL_STATE(2511)] = 78174, - [SMALL_STATE(2512)] = 78200, - [SMALL_STATE(2513)] = 78218, - [SMALL_STATE(2514)] = 78242, - [SMALL_STATE(2515)] = 78268, - [SMALL_STATE(2516)] = 78294, - [SMALL_STATE(2517)] = 78320, - [SMALL_STATE(2518)] = 78346, - [SMALL_STATE(2519)] = 78372, - [SMALL_STATE(2520)] = 78396, - [SMALL_STATE(2521)] = 78422, - [SMALL_STATE(2522)] = 78446, - [SMALL_STATE(2523)] = 78472, - [SMALL_STATE(2524)] = 78498, - [SMALL_STATE(2525)] = 78516, - [SMALL_STATE(2526)] = 78534, - [SMALL_STATE(2527)] = 78554, - [SMALL_STATE(2528)] = 78574, - [SMALL_STATE(2529)] = 78600, - [SMALL_STATE(2530)] = 78618, - [SMALL_STATE(2531)] = 78642, - [SMALL_STATE(2532)] = 78666, - [SMALL_STATE(2533)] = 78692, - [SMALL_STATE(2534)] = 78714, - [SMALL_STATE(2535)] = 78740, - [SMALL_STATE(2536)] = 78758, - [SMALL_STATE(2537)] = 78776, - [SMALL_STATE(2538)] = 78794, - [SMALL_STATE(2539)] = 78812, - [SMALL_STATE(2540)] = 78834, - [SMALL_STATE(2541)] = 78852, - [SMALL_STATE(2542)] = 78870, - [SMALL_STATE(2543)] = 78888, - [SMALL_STATE(2544)] = 78914, - [SMALL_STATE(2545)] = 78934, - [SMALL_STATE(2546)] = 78952, - [SMALL_STATE(2547)] = 78970, - [SMALL_STATE(2548)] = 78996, - [SMALL_STATE(2549)] = 79022, - [SMALL_STATE(2550)] = 79048, - [SMALL_STATE(2551)] = 79074, - [SMALL_STATE(2552)] = 79092, - [SMALL_STATE(2553)] = 79110, - [SMALL_STATE(2554)] = 79136, - [SMALL_STATE(2555)] = 79160, - [SMALL_STATE(2556)] = 79186, - [SMALL_STATE(2557)] = 79212, - [SMALL_STATE(2558)] = 79230, - [SMALL_STATE(2559)] = 79256, - [SMALL_STATE(2560)] = 79278, - [SMALL_STATE(2561)] = 79304, - [SMALL_STATE(2562)] = 79330, - [SMALL_STATE(2563)] = 79356, - [SMALL_STATE(2564)] = 79382, - [SMALL_STATE(2565)] = 79408, - [SMALL_STATE(2566)] = 79432, - [SMALL_STATE(2567)] = 79458, - [SMALL_STATE(2568)] = 79484, - [SMALL_STATE(2569)] = 79510, - [SMALL_STATE(2570)] = 79536, - [SMALL_STATE(2571)] = 79560, - [SMALL_STATE(2572)] = 79586, - [SMALL_STATE(2573)] = 79610, - [SMALL_STATE(2574)] = 79634, - [SMALL_STATE(2575)] = 79658, - [SMALL_STATE(2576)] = 79682, - [SMALL_STATE(2577)] = 79704, - [SMALL_STATE(2578)] = 79730, - [SMALL_STATE(2579)] = 79756, - [SMALL_STATE(2580)] = 79782, - [SMALL_STATE(2581)] = 79808, - [SMALL_STATE(2582)] = 79826, - [SMALL_STATE(2583)] = 79846, - [SMALL_STATE(2584)] = 79864, - [SMALL_STATE(2585)] = 79890, - [SMALL_STATE(2586)] = 79908, - [SMALL_STATE(2587)] = 79926, - [SMALL_STATE(2588)] = 79944, - [SMALL_STATE(2589)] = 79970, - [SMALL_STATE(2590)] = 79992, - [SMALL_STATE(2591)] = 80016, - [SMALL_STATE(2592)] = 80042, - [SMALL_STATE(2593)] = 80068, - [SMALL_STATE(2594)] = 80094, - [SMALL_STATE(2595)] = 80120, - [SMALL_STATE(2596)] = 80142, - [SMALL_STATE(2597)] = 80164, - [SMALL_STATE(2598)] = 80182, - [SMALL_STATE(2599)] = 80208, - [SMALL_STATE(2600)] = 80234, - [SMALL_STATE(2601)] = 80258, - [SMALL_STATE(2602)] = 80284, - [SMALL_STATE(2603)] = 80302, - [SMALL_STATE(2604)] = 80320, - [SMALL_STATE(2605)] = 80338, - [SMALL_STATE(2606)] = 80364, - [SMALL_STATE(2607)] = 80386, - [SMALL_STATE(2608)] = 80412, - [SMALL_STATE(2609)] = 80438, - [SMALL_STATE(2610)] = 80462, - [SMALL_STATE(2611)] = 80488, - [SMALL_STATE(2612)] = 80512, - [SMALL_STATE(2613)] = 80538, - [SMALL_STATE(2614)] = 80556, - [SMALL_STATE(2615)] = 80576, - [SMALL_STATE(2616)] = 80602, - [SMALL_STATE(2617)] = 80628, - [SMALL_STATE(2618)] = 80654, - [SMALL_STATE(2619)] = 80680, - [SMALL_STATE(2620)] = 80700, - [SMALL_STATE(2621)] = 80726, - [SMALL_STATE(2622)] = 80749, - [SMALL_STATE(2623)] = 80772, - [SMALL_STATE(2624)] = 80795, - [SMALL_STATE(2625)] = 80818, - [SMALL_STATE(2626)] = 80837, - [SMALL_STATE(2627)] = 80860, - [SMALL_STATE(2628)] = 80881, - [SMALL_STATE(2629)] = 80904, - [SMALL_STATE(2630)] = 80925, - [SMALL_STATE(2631)] = 80948, - [SMALL_STATE(2632)] = 80967, - [SMALL_STATE(2633)] = 80990, - [SMALL_STATE(2634)] = 81009, - [SMALL_STATE(2635)] = 81026, - [SMALL_STATE(2636)] = 81049, - [SMALL_STATE(2637)] = 81072, - [SMALL_STATE(2638)] = 81095, - [SMALL_STATE(2639)] = 81118, - [SMALL_STATE(2640)] = 81141, - [SMALL_STATE(2641)] = 81162, - [SMALL_STATE(2642)] = 81181, - [SMALL_STATE(2643)] = 81204, - [SMALL_STATE(2644)] = 81227, - [SMALL_STATE(2645)] = 81250, - [SMALL_STATE(2646)] = 81273, - [SMALL_STATE(2647)] = 81296, - [SMALL_STATE(2648)] = 81319, - [SMALL_STATE(2649)] = 81338, - [SMALL_STATE(2650)] = 81361, - [SMALL_STATE(2651)] = 81384, - [SMALL_STATE(2652)] = 81407, - [SMALL_STATE(2653)] = 81430, - [SMALL_STATE(2654)] = 81447, - [SMALL_STATE(2655)] = 81470, - [SMALL_STATE(2656)] = 81491, - [SMALL_STATE(2657)] = 81514, - [SMALL_STATE(2658)] = 81537, - [SMALL_STATE(2659)] = 81560, - [SMALL_STATE(2660)] = 81583, - [SMALL_STATE(2661)] = 81606, - [SMALL_STATE(2662)] = 81629, - [SMALL_STATE(2663)] = 81650, - [SMALL_STATE(2664)] = 81673, - [SMALL_STATE(2665)] = 81696, - [SMALL_STATE(2666)] = 81719, - [SMALL_STATE(2667)] = 81742, - [SMALL_STATE(2668)] = 81765, - [SMALL_STATE(2669)] = 81788, - [SMALL_STATE(2670)] = 81811, - [SMALL_STATE(2671)] = 81834, - [SMALL_STATE(2672)] = 81857, - [SMALL_STATE(2673)] = 81880, - [SMALL_STATE(2674)] = 81903, - [SMALL_STATE(2675)] = 81926, - [SMALL_STATE(2676)] = 81945, - [SMALL_STATE(2677)] = 81968, - [SMALL_STATE(2678)] = 81991, - [SMALL_STATE(2679)] = 82010, - [SMALL_STATE(2680)] = 82029, - [SMALL_STATE(2681)] = 82052, - [SMALL_STATE(2682)] = 82073, - [SMALL_STATE(2683)] = 82096, - [SMALL_STATE(2684)] = 82119, - [SMALL_STATE(2685)] = 82142, - [SMALL_STATE(2686)] = 82165, - [SMALL_STATE(2687)] = 82188, - [SMALL_STATE(2688)] = 82211, - [SMALL_STATE(2689)] = 82234, - [SMALL_STATE(2690)] = 82253, - [SMALL_STATE(2691)] = 82276, - [SMALL_STATE(2692)] = 82299, - [SMALL_STATE(2693)] = 82320, - [SMALL_STATE(2694)] = 82343, - [SMALL_STATE(2695)] = 82366, - [SMALL_STATE(2696)] = 82389, - [SMALL_STATE(2697)] = 82410, - [SMALL_STATE(2698)] = 82433, - [SMALL_STATE(2699)] = 82456, - [SMALL_STATE(2700)] = 82479, - [SMALL_STATE(2701)] = 82502, - [SMALL_STATE(2702)] = 82525, - [SMALL_STATE(2703)] = 82546, - [SMALL_STATE(2704)] = 82569, - [SMALL_STATE(2705)] = 82592, - [SMALL_STATE(2706)] = 82615, - [SMALL_STATE(2707)] = 82638, - [SMALL_STATE(2708)] = 82661, - [SMALL_STATE(2709)] = 82682, - [SMALL_STATE(2710)] = 82705, - [SMALL_STATE(2711)] = 82728, - [SMALL_STATE(2712)] = 82751, - [SMALL_STATE(2713)] = 82774, - [SMALL_STATE(2714)] = 82797, - [SMALL_STATE(2715)] = 82820, - [SMALL_STATE(2716)] = 82839, - [SMALL_STATE(2717)] = 82862, - [SMALL_STATE(2718)] = 82885, - [SMALL_STATE(2719)] = 82906, - [SMALL_STATE(2720)] = 82929, - [SMALL_STATE(2721)] = 82948, - [SMALL_STATE(2722)] = 82969, - [SMALL_STATE(2723)] = 82992, - [SMALL_STATE(2724)] = 83015, - [SMALL_STATE(2725)] = 83038, - [SMALL_STATE(2726)] = 83057, - [SMALL_STATE(2727)] = 83080, - [SMALL_STATE(2728)] = 83101, - [SMALL_STATE(2729)] = 83124, - [SMALL_STATE(2730)] = 83147, - [SMALL_STATE(2731)] = 83170, - [SMALL_STATE(2732)] = 83193, - [SMALL_STATE(2733)] = 83216, - [SMALL_STATE(2734)] = 83239, - [SMALL_STATE(2735)] = 83262, - [SMALL_STATE(2736)] = 83285, - [SMALL_STATE(2737)] = 83306, - [SMALL_STATE(2738)] = 83329, - [SMALL_STATE(2739)] = 83350, - [SMALL_STATE(2740)] = 83371, - [SMALL_STATE(2741)] = 83394, - [SMALL_STATE(2742)] = 83417, - [SMALL_STATE(2743)] = 83440, - [SMALL_STATE(2744)] = 83463, - [SMALL_STATE(2745)] = 83486, - [SMALL_STATE(2746)] = 83509, - [SMALL_STATE(2747)] = 83532, - [SMALL_STATE(2748)] = 83555, - [SMALL_STATE(2749)] = 83578, - [SMALL_STATE(2750)] = 83601, - [SMALL_STATE(2751)] = 83622, - [SMALL_STATE(2752)] = 83645, - [SMALL_STATE(2753)] = 83666, - [SMALL_STATE(2754)] = 83689, - [SMALL_STATE(2755)] = 83708, - [SMALL_STATE(2756)] = 83731, - [SMALL_STATE(2757)] = 83752, - [SMALL_STATE(2758)] = 83775, - [SMALL_STATE(2759)] = 83798, - [SMALL_STATE(2760)] = 83821, - [SMALL_STATE(2761)] = 83840, - [SMALL_STATE(2762)] = 83861, - [SMALL_STATE(2763)] = 83880, - [SMALL_STATE(2764)] = 83903, - [SMALL_STATE(2765)] = 83926, - [SMALL_STATE(2766)] = 83945, - [SMALL_STATE(2767)] = 83964, - [SMALL_STATE(2768)] = 83983, - [SMALL_STATE(2769)] = 84002, - [SMALL_STATE(2770)] = 84025, - [SMALL_STATE(2771)] = 84048, - [SMALL_STATE(2772)] = 84071, - [SMALL_STATE(2773)] = 84094, - [SMALL_STATE(2774)] = 84117, - [SMALL_STATE(2775)] = 84140, - [SMALL_STATE(2776)] = 84163, - [SMALL_STATE(2777)] = 84186, - [SMALL_STATE(2778)] = 84205, - [SMALL_STATE(2779)] = 84228, - [SMALL_STATE(2780)] = 84245, - [SMALL_STATE(2781)] = 84268, - [SMALL_STATE(2782)] = 84291, - [SMALL_STATE(2783)] = 84310, - [SMALL_STATE(2784)] = 84333, - [SMALL_STATE(2785)] = 84354, - [SMALL_STATE(2786)] = 84377, - [SMALL_STATE(2787)] = 84400, - [SMALL_STATE(2788)] = 84423, - [SMALL_STATE(2789)] = 84446, - [SMALL_STATE(2790)] = 84469, - [SMALL_STATE(2791)] = 84492, - [SMALL_STATE(2792)] = 84515, - [SMALL_STATE(2793)] = 84538, - [SMALL_STATE(2794)] = 84561, - [SMALL_STATE(2795)] = 84584, - [SMALL_STATE(2796)] = 84607, - [SMALL_STATE(2797)] = 84626, - [SMALL_STATE(2798)] = 84649, - [SMALL_STATE(2799)] = 84672, - [SMALL_STATE(2800)] = 84695, - [SMALL_STATE(2801)] = 84718, - [SMALL_STATE(2802)] = 84739, - [SMALL_STATE(2803)] = 84762, - [SMALL_STATE(2804)] = 84785, - [SMALL_STATE(2805)] = 84808, - [SMALL_STATE(2806)] = 84827, - [SMALL_STATE(2807)] = 84850, - [SMALL_STATE(2808)] = 84873, - [SMALL_STATE(2809)] = 84896, - [SMALL_STATE(2810)] = 84919, - [SMALL_STATE(2811)] = 84942, - [SMALL_STATE(2812)] = 84965, - [SMALL_STATE(2813)] = 84988, - [SMALL_STATE(2814)] = 85011, - [SMALL_STATE(2815)] = 85034, - [SMALL_STATE(2816)] = 85057, - [SMALL_STATE(2817)] = 85080, - [SMALL_STATE(2818)] = 85103, - [SMALL_STATE(2819)] = 85126, - [SMALL_STATE(2820)] = 85149, - [SMALL_STATE(2821)] = 85172, - [SMALL_STATE(2822)] = 85195, - [SMALL_STATE(2823)] = 85218, - [SMALL_STATE(2824)] = 85241, - [SMALL_STATE(2825)] = 85264, - [SMALL_STATE(2826)] = 85287, - [SMALL_STATE(2827)] = 85310, - [SMALL_STATE(2828)] = 85333, - [SMALL_STATE(2829)] = 85356, - [SMALL_STATE(2830)] = 85379, - [SMALL_STATE(2831)] = 85402, - [SMALL_STATE(2832)] = 85425, - [SMALL_STATE(2833)] = 85442, - [SMALL_STATE(2834)] = 85465, - [SMALL_STATE(2835)] = 85486, - [SMALL_STATE(2836)] = 85505, - [SMALL_STATE(2837)] = 85528, - [SMALL_STATE(2838)] = 85551, - [SMALL_STATE(2839)] = 85572, - [SMALL_STATE(2840)] = 85595, - [SMALL_STATE(2841)] = 85618, - [SMALL_STATE(2842)] = 85641, - [SMALL_STATE(2843)] = 85664, - [SMALL_STATE(2844)] = 85683, - [SMALL_STATE(2845)] = 85706, - [SMALL_STATE(2846)] = 85727, - [SMALL_STATE(2847)] = 85750, - [SMALL_STATE(2848)] = 85773, - [SMALL_STATE(2849)] = 85796, - [SMALL_STATE(2850)] = 85819, - [SMALL_STATE(2851)] = 85842, - [SMALL_STATE(2852)] = 85865, - [SMALL_STATE(2853)] = 85888, - [SMALL_STATE(2854)] = 85911, - [SMALL_STATE(2855)] = 85934, - [SMALL_STATE(2856)] = 85955, - [SMALL_STATE(2857)] = 85978, - [SMALL_STATE(2858)] = 86001, - [SMALL_STATE(2859)] = 86024, - [SMALL_STATE(2860)] = 86047, - [SMALL_STATE(2861)] = 86070, - [SMALL_STATE(2862)] = 86093, - [SMALL_STATE(2863)] = 86112, - [SMALL_STATE(2864)] = 86135, - [SMALL_STATE(2865)] = 86154, - [SMALL_STATE(2866)] = 86177, - [SMALL_STATE(2867)] = 86200, - [SMALL_STATE(2868)] = 86223, - [SMALL_STATE(2869)] = 86246, - [SMALL_STATE(2870)] = 86269, - [SMALL_STATE(2871)] = 86292, - [SMALL_STATE(2872)] = 86311, - [SMALL_STATE(2873)] = 86334, - [SMALL_STATE(2874)] = 86351, - [SMALL_STATE(2875)] = 86370, - [SMALL_STATE(2876)] = 86393, - [SMALL_STATE(2877)] = 86416, - [SMALL_STATE(2878)] = 86439, - [SMALL_STATE(2879)] = 86458, - [SMALL_STATE(2880)] = 86481, - [SMALL_STATE(2881)] = 86504, - [SMALL_STATE(2882)] = 86525, - [SMALL_STATE(2883)] = 86545, - [SMALL_STATE(2884)] = 86561, - [SMALL_STATE(2885)] = 86577, - [SMALL_STATE(2886)] = 86597, - [SMALL_STATE(2887)] = 86617, - [SMALL_STATE(2888)] = 86635, - [SMALL_STATE(2889)] = 86655, - [SMALL_STATE(2890)] = 86671, - [SMALL_STATE(2891)] = 86687, - [SMALL_STATE(2892)] = 86707, - [SMALL_STATE(2893)] = 86723, - [SMALL_STATE(2894)] = 86743, - [SMALL_STATE(2895)] = 86763, - [SMALL_STATE(2896)] = 86783, - [SMALL_STATE(2897)] = 86803, - [SMALL_STATE(2898)] = 86819, - [SMALL_STATE(2899)] = 86839, - [SMALL_STATE(2900)] = 86859, - [SMALL_STATE(2901)] = 86875, - [SMALL_STATE(2902)] = 86891, - [SMALL_STATE(2903)] = 86907, - [SMALL_STATE(2904)] = 86923, - [SMALL_STATE(2905)] = 86943, - [SMALL_STATE(2906)] = 86963, - [SMALL_STATE(2907)] = 86983, - [SMALL_STATE(2908)] = 87003, - [SMALL_STATE(2909)] = 87023, - [SMALL_STATE(2910)] = 87041, - [SMALL_STATE(2911)] = 87061, - [SMALL_STATE(2912)] = 87081, - [SMALL_STATE(2913)] = 87101, - [SMALL_STATE(2914)] = 87119, - [SMALL_STATE(2915)] = 87135, - [SMALL_STATE(2916)] = 87155, - [SMALL_STATE(2917)] = 87171, - [SMALL_STATE(2918)] = 87191, - [SMALL_STATE(2919)] = 87211, - [SMALL_STATE(2920)] = 87231, - [SMALL_STATE(2921)] = 87251, - [SMALL_STATE(2922)] = 87271, - [SMALL_STATE(2923)] = 87291, - [SMALL_STATE(2924)] = 87311, - [SMALL_STATE(2925)] = 87331, - [SMALL_STATE(2926)] = 87351, - [SMALL_STATE(2927)] = 87367, - [SMALL_STATE(2928)] = 87383, - [SMALL_STATE(2929)] = 87399, - [SMALL_STATE(2930)] = 87415, - [SMALL_STATE(2931)] = 87431, - [SMALL_STATE(2932)] = 87447, - [SMALL_STATE(2933)] = 87467, - [SMALL_STATE(2934)] = 87487, - [SMALL_STATE(2935)] = 87505, - [SMALL_STATE(2936)] = 87525, - [SMALL_STATE(2937)] = 87545, - [SMALL_STATE(2938)] = 87565, - [SMALL_STATE(2939)] = 87585, - [SMALL_STATE(2940)] = 87605, - [SMALL_STATE(2941)] = 87625, - [SMALL_STATE(2942)] = 87645, - [SMALL_STATE(2943)] = 87661, - [SMALL_STATE(2944)] = 87681, - [SMALL_STATE(2945)] = 87701, - [SMALL_STATE(2946)] = 87719, - [SMALL_STATE(2947)] = 87739, - [SMALL_STATE(2948)] = 87759, - [SMALL_STATE(2949)] = 87779, - [SMALL_STATE(2950)] = 87799, - [SMALL_STATE(2951)] = 87819, - [SMALL_STATE(2952)] = 87839, - [SMALL_STATE(2953)] = 87859, - [SMALL_STATE(2954)] = 87879, - [SMALL_STATE(2955)] = 87899, - [SMALL_STATE(2956)] = 87919, - [SMALL_STATE(2957)] = 87939, - [SMALL_STATE(2958)] = 87959, - [SMALL_STATE(2959)] = 87979, - [SMALL_STATE(2960)] = 87999, - [SMALL_STATE(2961)] = 88019, - [SMALL_STATE(2962)] = 88039, - [SMALL_STATE(2963)] = 88059, - [SMALL_STATE(2964)] = 88079, - [SMALL_STATE(2965)] = 88099, - [SMALL_STATE(2966)] = 88119, - [SMALL_STATE(2967)] = 88139, - [SMALL_STATE(2968)] = 88159, - [SMALL_STATE(2969)] = 88177, - [SMALL_STATE(2970)] = 88197, - [SMALL_STATE(2971)] = 88217, - [SMALL_STATE(2972)] = 88237, - [SMALL_STATE(2973)] = 88257, - [SMALL_STATE(2974)] = 88277, - [SMALL_STATE(2975)] = 88297, - [SMALL_STATE(2976)] = 88315, - [SMALL_STATE(2977)] = 88335, - [SMALL_STATE(2978)] = 88355, - [SMALL_STATE(2979)] = 88375, - [SMALL_STATE(2980)] = 88395, - [SMALL_STATE(2981)] = 88415, - [SMALL_STATE(2982)] = 88435, - [SMALL_STATE(2983)] = 88455, - [SMALL_STATE(2984)] = 88475, - [SMALL_STATE(2985)] = 88495, - [SMALL_STATE(2986)] = 88513, - [SMALL_STATE(2987)] = 88533, - [SMALL_STATE(2988)] = 88553, - [SMALL_STATE(2989)] = 88573, - [SMALL_STATE(2990)] = 88593, - [SMALL_STATE(2991)] = 88613, - [SMALL_STATE(2992)] = 88633, - [SMALL_STATE(2993)] = 88651, - [SMALL_STATE(2994)] = 88669, - [SMALL_STATE(2995)] = 88689, - [SMALL_STATE(2996)] = 88709, - [SMALL_STATE(2997)] = 88729, - [SMALL_STATE(2998)] = 88749, - [SMALL_STATE(2999)] = 88769, - [SMALL_STATE(3000)] = 88789, - [SMALL_STATE(3001)] = 88809, - [SMALL_STATE(3002)] = 88829, - [SMALL_STATE(3003)] = 88845, - [SMALL_STATE(3004)] = 88863, - [SMALL_STATE(3005)] = 88881, - [SMALL_STATE(3006)] = 88901, - [SMALL_STATE(3007)] = 88917, - [SMALL_STATE(3008)] = 88933, - [SMALL_STATE(3009)] = 88953, - [SMALL_STATE(3010)] = 88971, - [SMALL_STATE(3011)] = 88987, - [SMALL_STATE(3012)] = 89007, - [SMALL_STATE(3013)] = 89023, - [SMALL_STATE(3014)] = 89043, - [SMALL_STATE(3015)] = 89063, - [SMALL_STATE(3016)] = 89083, - [SMALL_STATE(3017)] = 89099, - [SMALL_STATE(3018)] = 89117, - [SMALL_STATE(3019)] = 89137, - [SMALL_STATE(3020)] = 89157, - [SMALL_STATE(3021)] = 89173, - [SMALL_STATE(3022)] = 89193, - [SMALL_STATE(3023)] = 89213, - [SMALL_STATE(3024)] = 89229, - [SMALL_STATE(3025)] = 89249, - [SMALL_STATE(3026)] = 89269, - [SMALL_STATE(3027)] = 89289, - [SMALL_STATE(3028)] = 89309, - [SMALL_STATE(3029)] = 89329, - [SMALL_STATE(3030)] = 89349, - [SMALL_STATE(3031)] = 89369, - [SMALL_STATE(3032)] = 89389, - [SMALL_STATE(3033)] = 89409, - [SMALL_STATE(3034)] = 89429, - [SMALL_STATE(3035)] = 89449, - [SMALL_STATE(3036)] = 89469, - [SMALL_STATE(3037)] = 89489, - [SMALL_STATE(3038)] = 89505, - [SMALL_STATE(3039)] = 89521, - [SMALL_STATE(3040)] = 89537, - [SMALL_STATE(3041)] = 89557, - [SMALL_STATE(3042)] = 89577, - [SMALL_STATE(3043)] = 89593, - [SMALL_STATE(3044)] = 89609, - [SMALL_STATE(3045)] = 89625, - [SMALL_STATE(3046)] = 89645, - [SMALL_STATE(3047)] = 89665, - [SMALL_STATE(3048)] = 89685, - [SMALL_STATE(3049)] = 89705, - [SMALL_STATE(3050)] = 89725, - [SMALL_STATE(3051)] = 89745, - [SMALL_STATE(3052)] = 89765, - [SMALL_STATE(3053)] = 89785, - [SMALL_STATE(3054)] = 89803, - [SMALL_STATE(3055)] = 89821, - [SMALL_STATE(3056)] = 89841, - [SMALL_STATE(3057)] = 89859, - [SMALL_STATE(3058)] = 89879, - [SMALL_STATE(3059)] = 89899, - [SMALL_STATE(3060)] = 89917, - [SMALL_STATE(3061)] = 89937, - [SMALL_STATE(3062)] = 89953, - [SMALL_STATE(3063)] = 89971, - [SMALL_STATE(3064)] = 89991, - [SMALL_STATE(3065)] = 90011, - [SMALL_STATE(3066)] = 90031, - [SMALL_STATE(3067)] = 90051, - [SMALL_STATE(3068)] = 90071, - [SMALL_STATE(3069)] = 90089, - [SMALL_STATE(3070)] = 90109, - [SMALL_STATE(3071)] = 90129, - [SMALL_STATE(3072)] = 90147, - [SMALL_STATE(3073)] = 90167, - [SMALL_STATE(3074)] = 90187, - [SMALL_STATE(3075)] = 90207, - [SMALL_STATE(3076)] = 90227, - [SMALL_STATE(3077)] = 90247, - [SMALL_STATE(3078)] = 90265, - [SMALL_STATE(3079)] = 90285, - [SMALL_STATE(3080)] = 90305, - [SMALL_STATE(3081)] = 90325, - [SMALL_STATE(3082)] = 90345, - [SMALL_STATE(3083)] = 90365, - [SMALL_STATE(3084)] = 90385, - [SMALL_STATE(3085)] = 90403, - [SMALL_STATE(3086)] = 90419, - [SMALL_STATE(3087)] = 90439, - [SMALL_STATE(3088)] = 90457, - [SMALL_STATE(3089)] = 90477, - [SMALL_STATE(3090)] = 90497, - [SMALL_STATE(3091)] = 90517, - [SMALL_STATE(3092)] = 90533, - [SMALL_STATE(3093)] = 90553, - [SMALL_STATE(3094)] = 90573, - [SMALL_STATE(3095)] = 90593, - [SMALL_STATE(3096)] = 90611, - [SMALL_STATE(3097)] = 90629, - [SMALL_STATE(3098)] = 90649, - [SMALL_STATE(3099)] = 90669, - [SMALL_STATE(3100)] = 90689, - [SMALL_STATE(3101)] = 90709, - [SMALL_STATE(3102)] = 90729, - [SMALL_STATE(3103)] = 90749, - [SMALL_STATE(3104)] = 90769, - [SMALL_STATE(3105)] = 90787, - [SMALL_STATE(3106)] = 90807, - [SMALL_STATE(3107)] = 90827, - [SMALL_STATE(3108)] = 90845, - [SMALL_STATE(3109)] = 90865, - [SMALL_STATE(3110)] = 90885, - [SMALL_STATE(3111)] = 90901, - [SMALL_STATE(3112)] = 90917, - [SMALL_STATE(3113)] = 90933, - [SMALL_STATE(3114)] = 90949, - [SMALL_STATE(3115)] = 90965, - [SMALL_STATE(3116)] = 90981, - [SMALL_STATE(3117)] = 91001, - [SMALL_STATE(3118)] = 91021, - [SMALL_STATE(3119)] = 91041, - [SMALL_STATE(3120)] = 91061, - [SMALL_STATE(3121)] = 91081, - [SMALL_STATE(3122)] = 91101, - [SMALL_STATE(3123)] = 91119, - [SMALL_STATE(3124)] = 91135, - [SMALL_STATE(3125)] = 91155, - [SMALL_STATE(3126)] = 91175, - [SMALL_STATE(3127)] = 91191, - [SMALL_STATE(3128)] = 91211, - [SMALL_STATE(3129)] = 91229, - [SMALL_STATE(3130)] = 91249, - [SMALL_STATE(3131)] = 91269, - [SMALL_STATE(3132)] = 91289, - [SMALL_STATE(3133)] = 91309, - [SMALL_STATE(3134)] = 91327, - [SMALL_STATE(3135)] = 91347, - [SMALL_STATE(3136)] = 91365, - [SMALL_STATE(3137)] = 91383, - [SMALL_STATE(3138)] = 91399, - [SMALL_STATE(3139)] = 91419, - [SMALL_STATE(3140)] = 91437, - [SMALL_STATE(3141)] = 91457, - [SMALL_STATE(3142)] = 91477, - [SMALL_STATE(3143)] = 91497, - [SMALL_STATE(3144)] = 91515, - [SMALL_STATE(3145)] = 91531, - [SMALL_STATE(3146)] = 91551, - [SMALL_STATE(3147)] = 91571, - [SMALL_STATE(3148)] = 91591, - [SMALL_STATE(3149)] = 91611, - [SMALL_STATE(3150)] = 91631, - [SMALL_STATE(3151)] = 91651, - [SMALL_STATE(3152)] = 91669, - [SMALL_STATE(3153)] = 91685, - [SMALL_STATE(3154)] = 91701, - [SMALL_STATE(3155)] = 91717, - [SMALL_STATE(3156)] = 91733, - [SMALL_STATE(3157)] = 91753, - [SMALL_STATE(3158)] = 91769, - [SMALL_STATE(3159)] = 91785, - [SMALL_STATE(3160)] = 91803, - [SMALL_STATE(3161)] = 91821, - [SMALL_STATE(3162)] = 91841, - [SMALL_STATE(3163)] = 91861, - [SMALL_STATE(3164)] = 91881, - [SMALL_STATE(3165)] = 91901, - [SMALL_STATE(3166)] = 91921, - [SMALL_STATE(3167)] = 91941, - [SMALL_STATE(3168)] = 91961, - [SMALL_STATE(3169)] = 91981, - [SMALL_STATE(3170)] = 92001, - [SMALL_STATE(3171)] = 92019, - [SMALL_STATE(3172)] = 92037, - [SMALL_STATE(3173)] = 92057, - [SMALL_STATE(3174)] = 92077, - [SMALL_STATE(3175)] = 92093, - [SMALL_STATE(3176)] = 92111, - [SMALL_STATE(3177)] = 92127, - [SMALL_STATE(3178)] = 92147, - [SMALL_STATE(3179)] = 92167, - [SMALL_STATE(3180)] = 92183, - [SMALL_STATE(3181)] = 92203, - [SMALL_STATE(3182)] = 92219, - [SMALL_STATE(3183)] = 92239, - [SMALL_STATE(3184)] = 92259, - [SMALL_STATE(3185)] = 92279, - [SMALL_STATE(3186)] = 92299, - [SMALL_STATE(3187)] = 92319, - [SMALL_STATE(3188)] = 92339, - [SMALL_STATE(3189)] = 92359, - [SMALL_STATE(3190)] = 92379, - [SMALL_STATE(3191)] = 92399, - [SMALL_STATE(3192)] = 92419, - [SMALL_STATE(3193)] = 92439, - [SMALL_STATE(3194)] = 92459, - [SMALL_STATE(3195)] = 92479, - [SMALL_STATE(3196)] = 92496, - [SMALL_STATE(3197)] = 92513, - [SMALL_STATE(3198)] = 92530, - [SMALL_STATE(3199)] = 92547, - [SMALL_STATE(3200)] = 92564, - [SMALL_STATE(3201)] = 92581, - [SMALL_STATE(3202)] = 92596, - [SMALL_STATE(3203)] = 92613, - [SMALL_STATE(3204)] = 92628, - [SMALL_STATE(3205)] = 92645, - [SMALL_STATE(3206)] = 92662, - [SMALL_STATE(3207)] = 92679, - [SMALL_STATE(3208)] = 92696, - [SMALL_STATE(3209)] = 92711, - [SMALL_STATE(3210)] = 92728, - [SMALL_STATE(3211)] = 92745, - [SMALL_STATE(3212)] = 92762, - [SMALL_STATE(3213)] = 92779, - [SMALL_STATE(3214)] = 92796, - [SMALL_STATE(3215)] = 92813, - [SMALL_STATE(3216)] = 92828, - [SMALL_STATE(3217)] = 92845, - [SMALL_STATE(3218)] = 92860, - [SMALL_STATE(3219)] = 92877, - [SMALL_STATE(3220)] = 92894, - [SMALL_STATE(3221)] = 92911, - [SMALL_STATE(3222)] = 92928, - [SMALL_STATE(3223)] = 92945, - [SMALL_STATE(3224)] = 92962, - [SMALL_STATE(3225)] = 92979, - [SMALL_STATE(3226)] = 92996, - [SMALL_STATE(3227)] = 93013, - [SMALL_STATE(3228)] = 93028, - [SMALL_STATE(3229)] = 93045, - [SMALL_STATE(3230)] = 93062, - [SMALL_STATE(3231)] = 93079, - [SMALL_STATE(3232)] = 93096, - [SMALL_STATE(3233)] = 93113, - [SMALL_STATE(3234)] = 93130, - [SMALL_STATE(3235)] = 93145, - [SMALL_STATE(3236)] = 93162, - [SMALL_STATE(3237)] = 93179, - [SMALL_STATE(3238)] = 93196, - [SMALL_STATE(3239)] = 93211, - [SMALL_STATE(3240)] = 93228, - [SMALL_STATE(3241)] = 93243, - [SMALL_STATE(3242)] = 93260, - [SMALL_STATE(3243)] = 93277, - [SMALL_STATE(3244)] = 93294, - [SMALL_STATE(3245)] = 93311, - [SMALL_STATE(3246)] = 93328, - [SMALL_STATE(3247)] = 93345, - [SMALL_STATE(3248)] = 93362, - [SMALL_STATE(3249)] = 93379, - [SMALL_STATE(3250)] = 93396, - [SMALL_STATE(3251)] = 93413, - [SMALL_STATE(3252)] = 93430, - [SMALL_STATE(3253)] = 93447, - [SMALL_STATE(3254)] = 93464, - [SMALL_STATE(3255)] = 93481, - [SMALL_STATE(3256)] = 93498, - [SMALL_STATE(3257)] = 93515, - [SMALL_STATE(3258)] = 93530, - [SMALL_STATE(3259)] = 93545, - [SMALL_STATE(3260)] = 93562, - [SMALL_STATE(3261)] = 93579, - [SMALL_STATE(3262)] = 93596, - [SMALL_STATE(3263)] = 93613, - [SMALL_STATE(3264)] = 93630, - [SMALL_STATE(3265)] = 93647, - [SMALL_STATE(3266)] = 93664, - [SMALL_STATE(3267)] = 93681, - [SMALL_STATE(3268)] = 93698, - [SMALL_STATE(3269)] = 93715, - [SMALL_STATE(3270)] = 93732, - [SMALL_STATE(3271)] = 93747, - [SMALL_STATE(3272)] = 93764, - [SMALL_STATE(3273)] = 93781, - [SMALL_STATE(3274)] = 93798, - [SMALL_STATE(3275)] = 93815, - [SMALL_STATE(3276)] = 93830, - [SMALL_STATE(3277)] = 93847, - [SMALL_STATE(3278)] = 93864, - [SMALL_STATE(3279)] = 93881, - [SMALL_STATE(3280)] = 93896, - [SMALL_STATE(3281)] = 93913, - [SMALL_STATE(3282)] = 93930, - [SMALL_STATE(3283)] = 93947, - [SMALL_STATE(3284)] = 93964, - [SMALL_STATE(3285)] = 93981, - [SMALL_STATE(3286)] = 93998, - [SMALL_STATE(3287)] = 94015, - [SMALL_STATE(3288)] = 94030, - [SMALL_STATE(3289)] = 94047, - [SMALL_STATE(3290)] = 94064, - [SMALL_STATE(3291)] = 94081, - [SMALL_STATE(3292)] = 94096, - [SMALL_STATE(3293)] = 94113, - [SMALL_STATE(3294)] = 94130, - [SMALL_STATE(3295)] = 94147, - [SMALL_STATE(3296)] = 94162, - [SMALL_STATE(3297)] = 94177, - [SMALL_STATE(3298)] = 94194, - [SMALL_STATE(3299)] = 94209, - [SMALL_STATE(3300)] = 94226, - [SMALL_STATE(3301)] = 94243, - [SMALL_STATE(3302)] = 94260, - [SMALL_STATE(3303)] = 94277, - [SMALL_STATE(3304)] = 94294, - [SMALL_STATE(3305)] = 94311, - [SMALL_STATE(3306)] = 94328, - [SMALL_STATE(3307)] = 94343, - [SMALL_STATE(3308)] = 94358, - [SMALL_STATE(3309)] = 94375, - [SMALL_STATE(3310)] = 94392, - [SMALL_STATE(3311)] = 94409, - [SMALL_STATE(3312)] = 94426, - [SMALL_STATE(3313)] = 94443, - [SMALL_STATE(3314)] = 94460, - [SMALL_STATE(3315)] = 94475, - [SMALL_STATE(3316)] = 94492, - [SMALL_STATE(3317)] = 94507, - [SMALL_STATE(3318)] = 94524, - [SMALL_STATE(3319)] = 94541, - [SMALL_STATE(3320)] = 94558, - [SMALL_STATE(3321)] = 94575, - [SMALL_STATE(3322)] = 94592, - [SMALL_STATE(3323)] = 94609, - [SMALL_STATE(3324)] = 94626, - [SMALL_STATE(3325)] = 94643, - [SMALL_STATE(3326)] = 94660, - [SMALL_STATE(3327)] = 94677, - [SMALL_STATE(3328)] = 94694, - [SMALL_STATE(3329)] = 94711, - [SMALL_STATE(3330)] = 94728, - [SMALL_STATE(3331)] = 94745, - [SMALL_STATE(3332)] = 94762, - [SMALL_STATE(3333)] = 94779, - [SMALL_STATE(3334)] = 94796, - [SMALL_STATE(3335)] = 94813, - [SMALL_STATE(3336)] = 94830, - [SMALL_STATE(3337)] = 94847, - [SMALL_STATE(3338)] = 94864, - [SMALL_STATE(3339)] = 94881, - [SMALL_STATE(3340)] = 94896, - [SMALL_STATE(3341)] = 94913, - [SMALL_STATE(3342)] = 94930, - [SMALL_STATE(3343)] = 94947, - [SMALL_STATE(3344)] = 94962, - [SMALL_STATE(3345)] = 94979, - [SMALL_STATE(3346)] = 94996, - [SMALL_STATE(3347)] = 95013, - [SMALL_STATE(3348)] = 95030, - [SMALL_STATE(3349)] = 95047, - [SMALL_STATE(3350)] = 95062, - [SMALL_STATE(3351)] = 95077, - [SMALL_STATE(3352)] = 95094, - [SMALL_STATE(3353)] = 95111, - [SMALL_STATE(3354)] = 95128, - [SMALL_STATE(3355)] = 95145, - [SMALL_STATE(3356)] = 95162, - [SMALL_STATE(3357)] = 95179, - [SMALL_STATE(3358)] = 95196, - [SMALL_STATE(3359)] = 95213, - [SMALL_STATE(3360)] = 95230, - [SMALL_STATE(3361)] = 95247, - [SMALL_STATE(3362)] = 95264, - [SMALL_STATE(3363)] = 95281, - [SMALL_STATE(3364)] = 95298, - [SMALL_STATE(3365)] = 95315, - [SMALL_STATE(3366)] = 95330, - [SMALL_STATE(3367)] = 95347, - [SMALL_STATE(3368)] = 95364, - [SMALL_STATE(3369)] = 95381, - [SMALL_STATE(3370)] = 95398, - [SMALL_STATE(3371)] = 95415, - [SMALL_STATE(3372)] = 95430, - [SMALL_STATE(3373)] = 95447, - [SMALL_STATE(3374)] = 95464, - [SMALL_STATE(3375)] = 95481, - [SMALL_STATE(3376)] = 95498, - [SMALL_STATE(3377)] = 95515, - [SMALL_STATE(3378)] = 95530, - [SMALL_STATE(3379)] = 95547, - [SMALL_STATE(3380)] = 95564, - [SMALL_STATE(3381)] = 95581, - [SMALL_STATE(3382)] = 95598, - [SMALL_STATE(3383)] = 95615, - [SMALL_STATE(3384)] = 95632, - [SMALL_STATE(3385)] = 95649, - [SMALL_STATE(3386)] = 95666, - [SMALL_STATE(3387)] = 95683, - [SMALL_STATE(3388)] = 95700, - [SMALL_STATE(3389)] = 95715, - [SMALL_STATE(3390)] = 95732, - [SMALL_STATE(3391)] = 95749, - [SMALL_STATE(3392)] = 95766, - [SMALL_STATE(3393)] = 95783, - [SMALL_STATE(3394)] = 95800, - [SMALL_STATE(3395)] = 95817, - [SMALL_STATE(3396)] = 95832, - [SMALL_STATE(3397)] = 95849, - [SMALL_STATE(3398)] = 95866, - [SMALL_STATE(3399)] = 95881, - [SMALL_STATE(3400)] = 95896, - [SMALL_STATE(3401)] = 95913, - [SMALL_STATE(3402)] = 95930, - [SMALL_STATE(3403)] = 95947, - [SMALL_STATE(3404)] = 95964, - [SMALL_STATE(3405)] = 95981, - [SMALL_STATE(3406)] = 95998, - [SMALL_STATE(3407)] = 96015, - [SMALL_STATE(3408)] = 96032, - [SMALL_STATE(3409)] = 96049, - [SMALL_STATE(3410)] = 96066, - [SMALL_STATE(3411)] = 96083, - [SMALL_STATE(3412)] = 96100, - [SMALL_STATE(3413)] = 96117, - [SMALL_STATE(3414)] = 96134, - [SMALL_STATE(3415)] = 96151, - [SMALL_STATE(3416)] = 96166, - [SMALL_STATE(3417)] = 96181, - [SMALL_STATE(3418)] = 96198, - [SMALL_STATE(3419)] = 96215, - [SMALL_STATE(3420)] = 96232, - [SMALL_STATE(3421)] = 96249, - [SMALL_STATE(3422)] = 96264, - [SMALL_STATE(3423)] = 96281, - [SMALL_STATE(3424)] = 96298, - [SMALL_STATE(3425)] = 96315, - [SMALL_STATE(3426)] = 96332, - [SMALL_STATE(3427)] = 96349, - [SMALL_STATE(3428)] = 96366, - [SMALL_STATE(3429)] = 96383, - [SMALL_STATE(3430)] = 96400, - [SMALL_STATE(3431)] = 96415, - [SMALL_STATE(3432)] = 96432, - [SMALL_STATE(3433)] = 96447, - [SMALL_STATE(3434)] = 96462, - [SMALL_STATE(3435)] = 96479, - [SMALL_STATE(3436)] = 96496, - [SMALL_STATE(3437)] = 96513, - [SMALL_STATE(3438)] = 96528, - [SMALL_STATE(3439)] = 96545, - [SMALL_STATE(3440)] = 96562, - [SMALL_STATE(3441)] = 96577, - [SMALL_STATE(3442)] = 96594, - [SMALL_STATE(3443)] = 96611, - [SMALL_STATE(3444)] = 96628, - [SMALL_STATE(3445)] = 96645, - [SMALL_STATE(3446)] = 96660, - [SMALL_STATE(3447)] = 96677, - [SMALL_STATE(3448)] = 96692, - [SMALL_STATE(3449)] = 96707, - [SMALL_STATE(3450)] = 96724, - [SMALL_STATE(3451)] = 96741, - [SMALL_STATE(3452)] = 96756, - [SMALL_STATE(3453)] = 96773, - [SMALL_STATE(3454)] = 96790, - [SMALL_STATE(3455)] = 96807, - [SMALL_STATE(3456)] = 96824, - [SMALL_STATE(3457)] = 96841, - [SMALL_STATE(3458)] = 96858, - [SMALL_STATE(3459)] = 96875, - [SMALL_STATE(3460)] = 96890, - [SMALL_STATE(3461)] = 96907, - [SMALL_STATE(3462)] = 96922, - [SMALL_STATE(3463)] = 96939, - [SMALL_STATE(3464)] = 96954, - [SMALL_STATE(3465)] = 96971, - [SMALL_STATE(3466)] = 96988, - [SMALL_STATE(3467)] = 97005, - [SMALL_STATE(3468)] = 97022, - [SMALL_STATE(3469)] = 97039, - [SMALL_STATE(3470)] = 97056, - [SMALL_STATE(3471)] = 97073, - [SMALL_STATE(3472)] = 97090, - [SMALL_STATE(3473)] = 97107, - [SMALL_STATE(3474)] = 97122, - [SMALL_STATE(3475)] = 97139, - [SMALL_STATE(3476)] = 97156, - [SMALL_STATE(3477)] = 97173, - [SMALL_STATE(3478)] = 97190, - [SMALL_STATE(3479)] = 97207, - [SMALL_STATE(3480)] = 97224, - [SMALL_STATE(3481)] = 97241, - [SMALL_STATE(3482)] = 97258, - [SMALL_STATE(3483)] = 97275, - [SMALL_STATE(3484)] = 97292, - [SMALL_STATE(3485)] = 97309, - [SMALL_STATE(3486)] = 97324, - [SMALL_STATE(3487)] = 97341, - [SMALL_STATE(3488)] = 97358, - [SMALL_STATE(3489)] = 97375, - [SMALL_STATE(3490)] = 97390, - [SMALL_STATE(3491)] = 97407, - [SMALL_STATE(3492)] = 97424, - [SMALL_STATE(3493)] = 97441, - [SMALL_STATE(3494)] = 97458, - [SMALL_STATE(3495)] = 97475, - [SMALL_STATE(3496)] = 97490, - [SMALL_STATE(3497)] = 97505, - [SMALL_STATE(3498)] = 97522, - [SMALL_STATE(3499)] = 97539, - [SMALL_STATE(3500)] = 97553, - [SMALL_STATE(3501)] = 97567, - [SMALL_STATE(3502)] = 97581, - [SMALL_STATE(3503)] = 97595, - [SMALL_STATE(3504)] = 97609, - [SMALL_STATE(3505)] = 97623, - [SMALL_STATE(3506)] = 97637, - [SMALL_STATE(3507)] = 97651, - [SMALL_STATE(3508)] = 97665, - [SMALL_STATE(3509)] = 97679, - [SMALL_STATE(3510)] = 97693, - [SMALL_STATE(3511)] = 97707, - [SMALL_STATE(3512)] = 97721, - [SMALL_STATE(3513)] = 97735, - [SMALL_STATE(3514)] = 97749, - [SMALL_STATE(3515)] = 97763, - [SMALL_STATE(3516)] = 97777, - [SMALL_STATE(3517)] = 97791, - [SMALL_STATE(3518)] = 97805, - [SMALL_STATE(3519)] = 97819, - [SMALL_STATE(3520)] = 97833, - [SMALL_STATE(3521)] = 97847, - [SMALL_STATE(3522)] = 97861, - [SMALL_STATE(3523)] = 97875, - [SMALL_STATE(3524)] = 97889, - [SMALL_STATE(3525)] = 97903, - [SMALL_STATE(3526)] = 97917, - [SMALL_STATE(3527)] = 97931, - [SMALL_STATE(3528)] = 97945, - [SMALL_STATE(3529)] = 97959, - [SMALL_STATE(3530)] = 97973, - [SMALL_STATE(3531)] = 97987, - [SMALL_STATE(3532)] = 98001, - [SMALL_STATE(3533)] = 98015, - [SMALL_STATE(3534)] = 98029, - [SMALL_STATE(3535)] = 98043, - [SMALL_STATE(3536)] = 98057, - [SMALL_STATE(3537)] = 98071, - [SMALL_STATE(3538)] = 98085, - [SMALL_STATE(3539)] = 98099, - [SMALL_STATE(3540)] = 98113, - [SMALL_STATE(3541)] = 98127, - [SMALL_STATE(3542)] = 98141, - [SMALL_STATE(3543)] = 98155, - [SMALL_STATE(3544)] = 98169, - [SMALL_STATE(3545)] = 98183, - [SMALL_STATE(3546)] = 98197, - [SMALL_STATE(3547)] = 98211, - [SMALL_STATE(3548)] = 98225, - [SMALL_STATE(3549)] = 98239, - [SMALL_STATE(3550)] = 98253, - [SMALL_STATE(3551)] = 98267, - [SMALL_STATE(3552)] = 98281, - [SMALL_STATE(3553)] = 98295, - [SMALL_STATE(3554)] = 98309, - [SMALL_STATE(3555)] = 98323, - [SMALL_STATE(3556)] = 98337, - [SMALL_STATE(3557)] = 98351, - [SMALL_STATE(3558)] = 98365, - [SMALL_STATE(3559)] = 98379, - [SMALL_STATE(3560)] = 98393, - [SMALL_STATE(3561)] = 98407, - [SMALL_STATE(3562)] = 98421, - [SMALL_STATE(3563)] = 98435, - [SMALL_STATE(3564)] = 98449, - [SMALL_STATE(3565)] = 98463, - [SMALL_STATE(3566)] = 98477, - [SMALL_STATE(3567)] = 98491, - [SMALL_STATE(3568)] = 98505, - [SMALL_STATE(3569)] = 98519, - [SMALL_STATE(3570)] = 98533, - [SMALL_STATE(3571)] = 98547, - [SMALL_STATE(3572)] = 98561, - [SMALL_STATE(3573)] = 98575, - [SMALL_STATE(3574)] = 98589, - [SMALL_STATE(3575)] = 98603, - [SMALL_STATE(3576)] = 98617, - [SMALL_STATE(3577)] = 98631, - [SMALL_STATE(3578)] = 98645, - [SMALL_STATE(3579)] = 98659, - [SMALL_STATE(3580)] = 98673, - [SMALL_STATE(3581)] = 98687, - [SMALL_STATE(3582)] = 98701, - [SMALL_STATE(3583)] = 98715, - [SMALL_STATE(3584)] = 98729, - [SMALL_STATE(3585)] = 98743, - [SMALL_STATE(3586)] = 98757, - [SMALL_STATE(3587)] = 98771, - [SMALL_STATE(3588)] = 98785, - [SMALL_STATE(3589)] = 98799, - [SMALL_STATE(3590)] = 98813, - [SMALL_STATE(3591)] = 98827, - [SMALL_STATE(3592)] = 98841, - [SMALL_STATE(3593)] = 98855, - [SMALL_STATE(3594)] = 98869, - [SMALL_STATE(3595)] = 98883, - [SMALL_STATE(3596)] = 98897, - [SMALL_STATE(3597)] = 98911, - [SMALL_STATE(3598)] = 98925, - [SMALL_STATE(3599)] = 98939, - [SMALL_STATE(3600)] = 98953, - [SMALL_STATE(3601)] = 98967, - [SMALL_STATE(3602)] = 98981, - [SMALL_STATE(3603)] = 98995, - [SMALL_STATE(3604)] = 99009, - [SMALL_STATE(3605)] = 99023, - [SMALL_STATE(3606)] = 99037, - [SMALL_STATE(3607)] = 99051, - [SMALL_STATE(3608)] = 99065, - [SMALL_STATE(3609)] = 99079, - [SMALL_STATE(3610)] = 99093, - [SMALL_STATE(3611)] = 99107, - [SMALL_STATE(3612)] = 99121, - [SMALL_STATE(3613)] = 99135, - [SMALL_STATE(3614)] = 99149, - [SMALL_STATE(3615)] = 99163, - [SMALL_STATE(3616)] = 99177, - [SMALL_STATE(3617)] = 99191, - [SMALL_STATE(3618)] = 99205, - [SMALL_STATE(3619)] = 99219, - [SMALL_STATE(3620)] = 99233, - [SMALL_STATE(3621)] = 99247, - [SMALL_STATE(3622)] = 99261, - [SMALL_STATE(3623)] = 99275, - [SMALL_STATE(3624)] = 99289, - [SMALL_STATE(3625)] = 99303, - [SMALL_STATE(3626)] = 99317, - [SMALL_STATE(3627)] = 99331, - [SMALL_STATE(3628)] = 99345, - [SMALL_STATE(3629)] = 99359, - [SMALL_STATE(3630)] = 99373, - [SMALL_STATE(3631)] = 99387, - [SMALL_STATE(3632)] = 99401, - [SMALL_STATE(3633)] = 99415, - [SMALL_STATE(3634)] = 99429, - [SMALL_STATE(3635)] = 99443, - [SMALL_STATE(3636)] = 99457, - [SMALL_STATE(3637)] = 99471, - [SMALL_STATE(3638)] = 99485, - [SMALL_STATE(3639)] = 99499, - [SMALL_STATE(3640)] = 99513, - [SMALL_STATE(3641)] = 99527, - [SMALL_STATE(3642)] = 99541, - [SMALL_STATE(3643)] = 99555, - [SMALL_STATE(3644)] = 99569, - [SMALL_STATE(3645)] = 99583, - [SMALL_STATE(3646)] = 99597, - [SMALL_STATE(3647)] = 99611, - [SMALL_STATE(3648)] = 99625, - [SMALL_STATE(3649)] = 99639, - [SMALL_STATE(3650)] = 99653, - [SMALL_STATE(3651)] = 99667, - [SMALL_STATE(3652)] = 99681, - [SMALL_STATE(3653)] = 99695, - [SMALL_STATE(3654)] = 99709, - [SMALL_STATE(3655)] = 99723, - [SMALL_STATE(3656)] = 99737, - [SMALL_STATE(3657)] = 99751, - [SMALL_STATE(3658)] = 99765, - [SMALL_STATE(3659)] = 99779, - [SMALL_STATE(3660)] = 99793, - [SMALL_STATE(3661)] = 99807, - [SMALL_STATE(3662)] = 99821, - [SMALL_STATE(3663)] = 99835, - [SMALL_STATE(3664)] = 99849, - [SMALL_STATE(3665)] = 99863, - [SMALL_STATE(3666)] = 99877, - [SMALL_STATE(3667)] = 99891, - [SMALL_STATE(3668)] = 99905, - [SMALL_STATE(3669)] = 99919, - [SMALL_STATE(3670)] = 99933, - [SMALL_STATE(3671)] = 99947, - [SMALL_STATE(3672)] = 99961, - [SMALL_STATE(3673)] = 99975, - [SMALL_STATE(3674)] = 99989, - [SMALL_STATE(3675)] = 100003, - [SMALL_STATE(3676)] = 100017, - [SMALL_STATE(3677)] = 100031, - [SMALL_STATE(3678)] = 100045, - [SMALL_STATE(3679)] = 100059, - [SMALL_STATE(3680)] = 100073, - [SMALL_STATE(3681)] = 100087, - [SMALL_STATE(3682)] = 100101, - [SMALL_STATE(3683)] = 100115, - [SMALL_STATE(3684)] = 100129, - [SMALL_STATE(3685)] = 100143, - [SMALL_STATE(3686)] = 100157, - [SMALL_STATE(3687)] = 100171, - [SMALL_STATE(3688)] = 100185, - [SMALL_STATE(3689)] = 100199, - [SMALL_STATE(3690)] = 100213, - [SMALL_STATE(3691)] = 100227, - [SMALL_STATE(3692)] = 100241, - [SMALL_STATE(3693)] = 100255, - [SMALL_STATE(3694)] = 100269, - [SMALL_STATE(3695)] = 100283, - [SMALL_STATE(3696)] = 100297, - [SMALL_STATE(3697)] = 100311, - [SMALL_STATE(3698)] = 100325, - [SMALL_STATE(3699)] = 100339, - [SMALL_STATE(3700)] = 100353, - [SMALL_STATE(3701)] = 100367, - [SMALL_STATE(3702)] = 100381, - [SMALL_STATE(3703)] = 100395, - [SMALL_STATE(3704)] = 100409, - [SMALL_STATE(3705)] = 100423, - [SMALL_STATE(3706)] = 100437, - [SMALL_STATE(3707)] = 100451, - [SMALL_STATE(3708)] = 100465, - [SMALL_STATE(3709)] = 100479, - [SMALL_STATE(3710)] = 100493, - [SMALL_STATE(3711)] = 100507, - [SMALL_STATE(3712)] = 100521, - [SMALL_STATE(3713)] = 100535, - [SMALL_STATE(3714)] = 100549, - [SMALL_STATE(3715)] = 100563, - [SMALL_STATE(3716)] = 100577, - [SMALL_STATE(3717)] = 100591, - [SMALL_STATE(3718)] = 100605, - [SMALL_STATE(3719)] = 100619, - [SMALL_STATE(3720)] = 100633, - [SMALL_STATE(3721)] = 100647, - [SMALL_STATE(3722)] = 100661, - [SMALL_STATE(3723)] = 100675, - [SMALL_STATE(3724)] = 100689, - [SMALL_STATE(3725)] = 100703, - [SMALL_STATE(3726)] = 100717, - [SMALL_STATE(3727)] = 100731, - [SMALL_STATE(3728)] = 100745, - [SMALL_STATE(3729)] = 100759, - [SMALL_STATE(3730)] = 100773, - [SMALL_STATE(3731)] = 100787, - [SMALL_STATE(3732)] = 100801, - [SMALL_STATE(3733)] = 100815, - [SMALL_STATE(3734)] = 100829, - [SMALL_STATE(3735)] = 100843, - [SMALL_STATE(3736)] = 100857, - [SMALL_STATE(3737)] = 100871, - [SMALL_STATE(3738)] = 100885, - [SMALL_STATE(3739)] = 100899, - [SMALL_STATE(3740)] = 100913, - [SMALL_STATE(3741)] = 100927, - [SMALL_STATE(3742)] = 100941, - [SMALL_STATE(3743)] = 100955, - [SMALL_STATE(3744)] = 100969, - [SMALL_STATE(3745)] = 100983, - [SMALL_STATE(3746)] = 100997, - [SMALL_STATE(3747)] = 101011, - [SMALL_STATE(3748)] = 101025, - [SMALL_STATE(3749)] = 101039, - [SMALL_STATE(3750)] = 101053, - [SMALL_STATE(3751)] = 101067, - [SMALL_STATE(3752)] = 101081, - [SMALL_STATE(3753)] = 101095, - [SMALL_STATE(3754)] = 101109, - [SMALL_STATE(3755)] = 101123, - [SMALL_STATE(3756)] = 101137, - [SMALL_STATE(3757)] = 101151, - [SMALL_STATE(3758)] = 101165, - [SMALL_STATE(3759)] = 101179, - [SMALL_STATE(3760)] = 101193, - [SMALL_STATE(3761)] = 101207, - [SMALL_STATE(3762)] = 101221, - [SMALL_STATE(3763)] = 101235, - [SMALL_STATE(3764)] = 101249, - [SMALL_STATE(3765)] = 101263, - [SMALL_STATE(3766)] = 101277, - [SMALL_STATE(3767)] = 101291, - [SMALL_STATE(3768)] = 101305, - [SMALL_STATE(3769)] = 101319, - [SMALL_STATE(3770)] = 101333, - [SMALL_STATE(3771)] = 101347, - [SMALL_STATE(3772)] = 101361, - [SMALL_STATE(3773)] = 101375, - [SMALL_STATE(3774)] = 101389, - [SMALL_STATE(3775)] = 101403, - [SMALL_STATE(3776)] = 101417, - [SMALL_STATE(3777)] = 101431, - [SMALL_STATE(3778)] = 101445, - [SMALL_STATE(3779)] = 101459, - [SMALL_STATE(3780)] = 101473, - [SMALL_STATE(3781)] = 101487, - [SMALL_STATE(3782)] = 101501, - [SMALL_STATE(3783)] = 101515, - [SMALL_STATE(3784)] = 101529, - [SMALL_STATE(3785)] = 101543, - [SMALL_STATE(3786)] = 101557, - [SMALL_STATE(3787)] = 101571, - [SMALL_STATE(3788)] = 101585, - [SMALL_STATE(3789)] = 101599, - [SMALL_STATE(3790)] = 101613, - [SMALL_STATE(3791)] = 101627, - [SMALL_STATE(3792)] = 101641, - [SMALL_STATE(3793)] = 101655, - [SMALL_STATE(3794)] = 101669, - [SMALL_STATE(3795)] = 101683, - [SMALL_STATE(3796)] = 101697, - [SMALL_STATE(3797)] = 101711, - [SMALL_STATE(3798)] = 101725, - [SMALL_STATE(3799)] = 101739, - [SMALL_STATE(3800)] = 101753, - [SMALL_STATE(3801)] = 101767, - [SMALL_STATE(3802)] = 101781, - [SMALL_STATE(3803)] = 101795, - [SMALL_STATE(3804)] = 101809, - [SMALL_STATE(3805)] = 101823, - [SMALL_STATE(3806)] = 101837, - [SMALL_STATE(3807)] = 101851, - [SMALL_STATE(3808)] = 101865, - [SMALL_STATE(3809)] = 101879, - [SMALL_STATE(3810)] = 101893, - [SMALL_STATE(3811)] = 101907, - [SMALL_STATE(3812)] = 101921, - [SMALL_STATE(3813)] = 101935, - [SMALL_STATE(3814)] = 101949, - [SMALL_STATE(3815)] = 101963, - [SMALL_STATE(3816)] = 101977, - [SMALL_STATE(3817)] = 101991, - [SMALL_STATE(3818)] = 102005, - [SMALL_STATE(3819)] = 102009, - [SMALL_STATE(3820)] = 102013, - [SMALL_STATE(3821)] = 102017, - [SMALL_STATE(3822)] = 102021, - [SMALL_STATE(3823)] = 102025, - [SMALL_STATE(3824)] = 102029, + [SMALL_STATE(1068)] = 0, + [SMALL_STATE(1069)] = 74, + [SMALL_STATE(1070)] = 146, + [SMALL_STATE(1071)] = 247, + [SMALL_STATE(1072)] = 348, + [SMALL_STATE(1073)] = 449, + [SMALL_STATE(1074)] = 514, + [SMALL_STATE(1075)] = 591, + [SMALL_STATE(1076)] = 656, + [SMALL_STATE(1077)] = 733, + [SMALL_STATE(1078)] = 802, + [SMALL_STATE(1079)] = 867, + [SMALL_STATE(1080)] = 944, + [SMALL_STATE(1081)] = 1009, + [SMALL_STATE(1082)] = 1074, + [SMALL_STATE(1083)] = 1139, + [SMALL_STATE(1084)] = 1218, + [SMALL_STATE(1085)] = 1283, + [SMALL_STATE(1086)] = 1348, + [SMALL_STATE(1087)] = 1413, + [SMALL_STATE(1088)] = 1477, + [SMALL_STATE(1089)] = 1551, + [SMALL_STATE(1090)] = 1653, + [SMALL_STATE(1091)] = 1717, + [SMALL_STATE(1092)] = 1781, + [SMALL_STATE(1093)] = 1845, + [SMALL_STATE(1094)] = 1947, + [SMALL_STATE(1095)] = 2011, + [SMALL_STATE(1096)] = 2113, + [SMALL_STATE(1097)] = 2181, + [SMALL_STATE(1098)] = 2252, + [SMALL_STATE(1099)] = 2319, + [SMALL_STATE(1100)] = 2390, + [SMALL_STATE(1101)] = 2457, + [SMALL_STATE(1102)] = 2522, + [SMALL_STATE(1103)] = 2589, + [SMALL_STATE(1104)] = 2660, + [SMALL_STATE(1105)] = 2723, + [SMALL_STATE(1106)] = 2790, + [SMALL_STATE(1107)] = 2853, + [SMALL_STATE(1108)] = 2916, + [SMALL_STATE(1109)] = 2981, + [SMALL_STATE(1110)] = 3052, + [SMALL_STATE(1111)] = 3115, + [SMALL_STATE(1112)] = 3177, + [SMALL_STATE(1113)] = 3245, + [SMALL_STATE(1114)] = 3307, + [SMALL_STATE(1115)] = 3369, + [SMALL_STATE(1116)] = 3431, + [SMALL_STATE(1117)] = 3493, + [SMALL_STATE(1118)] = 3597, + [SMALL_STATE(1119)] = 3659, + [SMALL_STATE(1120)] = 3721, + [SMALL_STATE(1121)] = 3783, + [SMALL_STATE(1122)] = 3845, + [SMALL_STATE(1123)] = 3907, + [SMALL_STATE(1124)] = 4001, + [SMALL_STATE(1125)] = 4063, + [SMALL_STATE(1126)] = 4125, + [SMALL_STATE(1127)] = 4219, + [SMALL_STATE(1128)] = 4313, + [SMALL_STATE(1129)] = 4375, + [SMALL_STATE(1130)] = 4437, + [SMALL_STATE(1131)] = 4499, + [SMALL_STATE(1132)] = 4561, + [SMALL_STATE(1133)] = 4623, + [SMALL_STATE(1134)] = 4685, + [SMALL_STATE(1135)] = 4747, + [SMALL_STATE(1136)] = 4809, + [SMALL_STATE(1137)] = 4871, + [SMALL_STATE(1138)] = 4933, + [SMALL_STATE(1139)] = 4995, + [SMALL_STATE(1140)] = 5057, + [SMALL_STATE(1141)] = 5119, + [SMALL_STATE(1142)] = 5181, + [SMALL_STATE(1143)] = 5243, + [SMALL_STATE(1144)] = 5305, + [SMALL_STATE(1145)] = 5367, + [SMALL_STATE(1146)] = 5429, + [SMALL_STATE(1147)] = 5491, + [SMALL_STATE(1148)] = 5553, + [SMALL_STATE(1149)] = 5615, + [SMALL_STATE(1150)] = 5677, + [SMALL_STATE(1151)] = 5739, + [SMALL_STATE(1152)] = 5801, + [SMALL_STATE(1153)] = 5863, + [SMALL_STATE(1154)] = 5925, + [SMALL_STATE(1155)] = 5987, + [SMALL_STATE(1156)] = 6049, + [SMALL_STATE(1157)] = 6111, + [SMALL_STATE(1158)] = 6173, + [SMALL_STATE(1159)] = 6235, + [SMALL_STATE(1160)] = 6297, + [SMALL_STATE(1161)] = 6359, + [SMALL_STATE(1162)] = 6421, + [SMALL_STATE(1163)] = 6483, + [SMALL_STATE(1164)] = 6545, + [SMALL_STATE(1165)] = 6607, + [SMALL_STATE(1166)] = 6669, + [SMALL_STATE(1167)] = 6731, + [SMALL_STATE(1168)] = 6793, + [SMALL_STATE(1169)] = 6855, + [SMALL_STATE(1170)] = 6917, + [SMALL_STATE(1171)] = 6979, + [SMALL_STATE(1172)] = 7041, + [SMALL_STATE(1173)] = 7103, + [SMALL_STATE(1174)] = 7165, + [SMALL_STATE(1175)] = 7227, + [SMALL_STATE(1176)] = 7289, + [SMALL_STATE(1177)] = 7351, + [SMALL_STATE(1178)] = 7413, + [SMALL_STATE(1179)] = 7475, + [SMALL_STATE(1180)] = 7537, + [SMALL_STATE(1181)] = 7599, + [SMALL_STATE(1182)] = 7661, + [SMALL_STATE(1183)] = 7723, + [SMALL_STATE(1184)] = 7785, + [SMALL_STATE(1185)] = 7847, + [SMALL_STATE(1186)] = 7909, + [SMALL_STATE(1187)] = 7971, + [SMALL_STATE(1188)] = 8033, + [SMALL_STATE(1189)] = 8095, + [SMALL_STATE(1190)] = 8157, + [SMALL_STATE(1191)] = 8219, + [SMALL_STATE(1192)] = 8281, + [SMALL_STATE(1193)] = 8343, + [SMALL_STATE(1194)] = 8405, + [SMALL_STATE(1195)] = 8467, + [SMALL_STATE(1196)] = 8529, + [SMALL_STATE(1197)] = 8591, + [SMALL_STATE(1198)] = 8653, + [SMALL_STATE(1199)] = 8715, + [SMALL_STATE(1200)] = 8777, + [SMALL_STATE(1201)] = 8839, + [SMALL_STATE(1202)] = 8901, + [SMALL_STATE(1203)] = 8963, + [SMALL_STATE(1204)] = 9025, + [SMALL_STATE(1205)] = 9087, + [SMALL_STATE(1206)] = 9149, + [SMALL_STATE(1207)] = 9211, + [SMALL_STATE(1208)] = 9273, + [SMALL_STATE(1209)] = 9335, + [SMALL_STATE(1210)] = 9397, + [SMALL_STATE(1211)] = 9459, + [SMALL_STATE(1212)] = 9521, + [SMALL_STATE(1213)] = 9583, + [SMALL_STATE(1214)] = 9645, + [SMALL_STATE(1215)] = 9707, + [SMALL_STATE(1216)] = 9769, + [SMALL_STATE(1217)] = 9831, + [SMALL_STATE(1218)] = 9893, + [SMALL_STATE(1219)] = 9955, + [SMALL_STATE(1220)] = 10017, + [SMALL_STATE(1221)] = 10079, + [SMALL_STATE(1222)] = 10141, + [SMALL_STATE(1223)] = 10203, + [SMALL_STATE(1224)] = 10265, + [SMALL_STATE(1225)] = 10327, + [SMALL_STATE(1226)] = 10389, + [SMALL_STATE(1227)] = 10451, + [SMALL_STATE(1228)] = 10513, + [SMALL_STATE(1229)] = 10575, + [SMALL_STATE(1230)] = 10637, + [SMALL_STATE(1231)] = 10699, + [SMALL_STATE(1232)] = 10761, + [SMALL_STATE(1233)] = 10823, + [SMALL_STATE(1234)] = 10885, + [SMALL_STATE(1235)] = 10947, + [SMALL_STATE(1236)] = 11009, + [SMALL_STATE(1237)] = 11071, + [SMALL_STATE(1238)] = 11133, + [SMALL_STATE(1239)] = 11195, + [SMALL_STATE(1240)] = 11257, + [SMALL_STATE(1241)] = 11319, + [SMALL_STATE(1242)] = 11381, + [SMALL_STATE(1243)] = 11443, + [SMALL_STATE(1244)] = 11505, + [SMALL_STATE(1245)] = 11567, + [SMALL_STATE(1246)] = 11629, + [SMALL_STATE(1247)] = 11691, + [SMALL_STATE(1248)] = 11753, + [SMALL_STATE(1249)] = 11815, + [SMALL_STATE(1250)] = 11877, + [SMALL_STATE(1251)] = 11939, + [SMALL_STATE(1252)] = 12001, + [SMALL_STATE(1253)] = 12063, + [SMALL_STATE(1254)] = 12125, + [SMALL_STATE(1255)] = 12187, + [SMALL_STATE(1256)] = 12249, + [SMALL_STATE(1257)] = 12311, + [SMALL_STATE(1258)] = 12373, + [SMALL_STATE(1259)] = 12435, + [SMALL_STATE(1260)] = 12497, + [SMALL_STATE(1261)] = 12559, + [SMALL_STATE(1262)] = 12621, + [SMALL_STATE(1263)] = 12683, + [SMALL_STATE(1264)] = 12745, + [SMALL_STATE(1265)] = 12807, + [SMALL_STATE(1266)] = 12869, + [SMALL_STATE(1267)] = 12931, + [SMALL_STATE(1268)] = 13035, + [SMALL_STATE(1269)] = 13097, + [SMALL_STATE(1270)] = 13159, + [SMALL_STATE(1271)] = 13221, + [SMALL_STATE(1272)] = 13283, + [SMALL_STATE(1273)] = 13345, + [SMALL_STATE(1274)] = 13407, + [SMALL_STATE(1275)] = 13469, + [SMALL_STATE(1276)] = 13531, + [SMALL_STATE(1277)] = 13593, + [SMALL_STATE(1278)] = 13655, + [SMALL_STATE(1279)] = 13717, + [SMALL_STATE(1280)] = 13779, + [SMALL_STATE(1281)] = 13841, + [SMALL_STATE(1282)] = 13903, + [SMALL_STATE(1283)] = 13965, + [SMALL_STATE(1284)] = 14027, + [SMALL_STATE(1285)] = 14089, + [SMALL_STATE(1286)] = 14151, + [SMALL_STATE(1287)] = 14213, + [SMALL_STATE(1288)] = 14275, + [SMALL_STATE(1289)] = 14337, + [SMALL_STATE(1290)] = 14399, + [SMALL_STATE(1291)] = 14461, + [SMALL_STATE(1292)] = 14523, + [SMALL_STATE(1293)] = 14585, + [SMALL_STATE(1294)] = 14647, + [SMALL_STATE(1295)] = 14709, + [SMALL_STATE(1296)] = 14771, + [SMALL_STATE(1297)] = 14833, + [SMALL_STATE(1298)] = 14895, + [SMALL_STATE(1299)] = 14957, + [SMALL_STATE(1300)] = 15019, + [SMALL_STATE(1301)] = 15081, + [SMALL_STATE(1302)] = 15143, + [SMALL_STATE(1303)] = 15205, + [SMALL_STATE(1304)] = 15267, + [SMALL_STATE(1305)] = 15329, + [SMALL_STATE(1306)] = 15391, + [SMALL_STATE(1307)] = 15453, + [SMALL_STATE(1308)] = 15515, + [SMALL_STATE(1309)] = 15577, + [SMALL_STATE(1310)] = 15639, + [SMALL_STATE(1311)] = 15701, + [SMALL_STATE(1312)] = 15763, + [SMALL_STATE(1313)] = 15825, + [SMALL_STATE(1314)] = 15887, + [SMALL_STATE(1315)] = 15949, + [SMALL_STATE(1316)] = 16011, + [SMALL_STATE(1317)] = 16073, + [SMALL_STATE(1318)] = 16135, + [SMALL_STATE(1319)] = 16197, + [SMALL_STATE(1320)] = 16259, + [SMALL_STATE(1321)] = 16321, + [SMALL_STATE(1322)] = 16383, + [SMALL_STATE(1323)] = 16445, + [SMALL_STATE(1324)] = 16507, + [SMALL_STATE(1325)] = 16569, + [SMALL_STATE(1326)] = 16631, + [SMALL_STATE(1327)] = 16693, + [SMALL_STATE(1328)] = 16755, + [SMALL_STATE(1329)] = 16817, + [SMALL_STATE(1330)] = 16879, + [SMALL_STATE(1331)] = 16941, + [SMALL_STATE(1332)] = 17003, + [SMALL_STATE(1333)] = 17065, + [SMALL_STATE(1334)] = 17127, + [SMALL_STATE(1335)] = 17189, + [SMALL_STATE(1336)] = 17251, + [SMALL_STATE(1337)] = 17313, + [SMALL_STATE(1338)] = 17375, + [SMALL_STATE(1339)] = 17437, + [SMALL_STATE(1340)] = 17499, + [SMALL_STATE(1341)] = 17561, + [SMALL_STATE(1342)] = 17623, + [SMALL_STATE(1343)] = 17685, + [SMALL_STATE(1344)] = 17747, + [SMALL_STATE(1345)] = 17809, + [SMALL_STATE(1346)] = 17871, + [SMALL_STATE(1347)] = 17933, + [SMALL_STATE(1348)] = 17995, + [SMALL_STATE(1349)] = 18057, + [SMALL_STATE(1350)] = 18119, + [SMALL_STATE(1351)] = 18181, + [SMALL_STATE(1352)] = 18243, + [SMALL_STATE(1353)] = 18305, + [SMALL_STATE(1354)] = 18367, + [SMALL_STATE(1355)] = 18429, + [SMALL_STATE(1356)] = 18491, + [SMALL_STATE(1357)] = 18553, + [SMALL_STATE(1358)] = 18615, + [SMALL_STATE(1359)] = 18677, + [SMALL_STATE(1360)] = 18739, + [SMALL_STATE(1361)] = 18801, + [SMALL_STATE(1362)] = 18863, + [SMALL_STATE(1363)] = 18925, + [SMALL_STATE(1364)] = 18987, + [SMALL_STATE(1365)] = 19049, + [SMALL_STATE(1366)] = 19111, + [SMALL_STATE(1367)] = 19173, + [SMALL_STATE(1368)] = 19235, + [SMALL_STATE(1369)] = 19297, + [SMALL_STATE(1370)] = 19359, + [SMALL_STATE(1371)] = 19421, + [SMALL_STATE(1372)] = 19483, + [SMALL_STATE(1373)] = 19545, + [SMALL_STATE(1374)] = 19607, + [SMALL_STATE(1375)] = 19669, + [SMALL_STATE(1376)] = 19731, + [SMALL_STATE(1377)] = 19793, + [SMALL_STATE(1378)] = 19855, + [SMALL_STATE(1379)] = 19917, + [SMALL_STATE(1380)] = 19979, + [SMALL_STATE(1381)] = 20041, + [SMALL_STATE(1382)] = 20103, + [SMALL_STATE(1383)] = 20165, + [SMALL_STATE(1384)] = 20227, + [SMALL_STATE(1385)] = 20289, + [SMALL_STATE(1386)] = 20351, + [SMALL_STATE(1387)] = 20413, + [SMALL_STATE(1388)] = 20475, + [SMALL_STATE(1389)] = 20537, + [SMALL_STATE(1390)] = 20599, + [SMALL_STATE(1391)] = 20661, + [SMALL_STATE(1392)] = 20723, + [SMALL_STATE(1393)] = 20785, + [SMALL_STATE(1394)] = 20889, + [SMALL_STATE(1395)] = 20993, + [SMALL_STATE(1396)] = 21061, + [SMALL_STATE(1397)] = 21131, + [SMALL_STATE(1398)] = 21193, + [SMALL_STATE(1399)] = 21256, + [SMALL_STATE(1400)] = 21353, + [SMALL_STATE(1401)] = 21414, + [SMALL_STATE(1402)] = 21475, + [SMALL_STATE(1403)] = 21538, + [SMALL_STATE(1404)] = 21601, + [SMALL_STATE(1405)] = 21664, + [SMALL_STATE(1406)] = 21725, + [SMALL_STATE(1407)] = 21788, + [SMALL_STATE(1408)] = 21849, + [SMALL_STATE(1409)] = 21910, + [SMALL_STATE(1410)] = 21971, + [SMALL_STATE(1411)] = 22032, + [SMALL_STATE(1412)] = 22107, + [SMALL_STATE(1413)] = 22168, + [SMALL_STATE(1414)] = 22229, + [SMALL_STATE(1415)] = 22292, + [SMALL_STATE(1416)] = 22355, + [SMALL_STATE(1417)] = 22418, + [SMALL_STATE(1418)] = 22479, + [SMALL_STATE(1419)] = 22542, + [SMALL_STATE(1420)] = 22605, + [SMALL_STATE(1421)] = 22668, + [SMALL_STATE(1422)] = 22731, + [SMALL_STATE(1423)] = 22792, + [SMALL_STATE(1424)] = 22853, + [SMALL_STATE(1425)] = 22914, + [SMALL_STATE(1426)] = 22975, + [SMALL_STATE(1427)] = 23038, + [SMALL_STATE(1428)] = 23101, + [SMALL_STATE(1429)] = 23164, + [SMALL_STATE(1430)] = 23227, + [SMALL_STATE(1431)] = 23290, + [SMALL_STATE(1432)] = 23355, + [SMALL_STATE(1433)] = 23416, + [SMALL_STATE(1434)] = 23477, + [SMALL_STATE(1435)] = 23552, + [SMALL_STATE(1436)] = 23617, + [SMALL_STATE(1437)] = 23682, + [SMALL_STATE(1438)] = 23745, + [SMALL_STATE(1439)] = 23806, + [SMALL_STATE(1440)] = 23866, + [SMALL_STATE(1441)] = 23926, + [SMALL_STATE(1442)] = 23986, + [SMALL_STATE(1443)] = 24046, + [SMALL_STATE(1444)] = 24106, + [SMALL_STATE(1445)] = 24166, + [SMALL_STATE(1446)] = 24226, + [SMALL_STATE(1447)] = 24286, + [SMALL_STATE(1448)] = 24346, + [SMALL_STATE(1449)] = 24406, + [SMALL_STATE(1450)] = 24468, + [SMALL_STATE(1451)] = 24528, + [SMALL_STATE(1452)] = 24588, + [SMALL_STATE(1453)] = 24648, + [SMALL_STATE(1454)] = 24708, + [SMALL_STATE(1455)] = 24768, + [SMALL_STATE(1456)] = 24828, + [SMALL_STATE(1457)] = 24888, + [SMALL_STATE(1458)] = 24954, + [SMALL_STATE(1459)] = 25014, + [SMALL_STATE(1460)] = 25074, + [SMALL_STATE(1461)] = 25134, + [SMALL_STATE(1462)] = 25194, + [SMALL_STATE(1463)] = 25254, + [SMALL_STATE(1464)] = 25314, + [SMALL_STATE(1465)] = 25374, + [SMALL_STATE(1466)] = 25434, + [SMALL_STATE(1467)] = 25494, + [SMALL_STATE(1468)] = 25554, + [SMALL_STATE(1469)] = 25614, + [SMALL_STATE(1470)] = 25674, + [SMALL_STATE(1471)] = 25734, + [SMALL_STATE(1472)] = 25794, + [SMALL_STATE(1473)] = 25854, + [SMALL_STATE(1474)] = 25914, + [SMALL_STATE(1475)] = 25974, + [SMALL_STATE(1476)] = 26034, + [SMALL_STATE(1477)] = 26094, + [SMALL_STATE(1478)] = 26154, + [SMALL_STATE(1479)] = 26214, + [SMALL_STATE(1480)] = 26274, + [SMALL_STATE(1481)] = 26334, + [SMALL_STATE(1482)] = 26394, + [SMALL_STATE(1483)] = 26454, + [SMALL_STATE(1484)] = 26514, + [SMALL_STATE(1485)] = 26574, + [SMALL_STATE(1486)] = 26634, + [SMALL_STATE(1487)] = 26694, + [SMALL_STATE(1488)] = 26754, + [SMALL_STATE(1489)] = 26814, + [SMALL_STATE(1490)] = 26874, + [SMALL_STATE(1491)] = 26934, + [SMALL_STATE(1492)] = 26994, + [SMALL_STATE(1493)] = 27054, + [SMALL_STATE(1494)] = 27114, + [SMALL_STATE(1495)] = 27174, + [SMALL_STATE(1496)] = 27240, + [SMALL_STATE(1497)] = 27300, + [SMALL_STATE(1498)] = 27360, + [SMALL_STATE(1499)] = 27420, + [SMALL_STATE(1500)] = 27480, + [SMALL_STATE(1501)] = 27540, + [SMALL_STATE(1502)] = 27600, + [SMALL_STATE(1503)] = 27662, + [SMALL_STATE(1504)] = 27722, + [SMALL_STATE(1505)] = 27782, + [SMALL_STATE(1506)] = 27842, + [SMALL_STATE(1507)] = 27902, + [SMALL_STATE(1508)] = 27962, + [SMALL_STATE(1509)] = 28022, + [SMALL_STATE(1510)] = 28082, + [SMALL_STATE(1511)] = 28142, + [SMALL_STATE(1512)] = 28208, + [SMALL_STATE(1513)] = 28268, + [SMALL_STATE(1514)] = 28328, + [SMALL_STATE(1515)] = 28388, + [SMALL_STATE(1516)] = 28448, + [SMALL_STATE(1517)] = 28508, + [SMALL_STATE(1518)] = 28568, + [SMALL_STATE(1519)] = 28628, + [SMALL_STATE(1520)] = 28688, + [SMALL_STATE(1521)] = 28748, + [SMALL_STATE(1522)] = 28808, + [SMALL_STATE(1523)] = 28868, + [SMALL_STATE(1524)] = 28928, + [SMALL_STATE(1525)] = 28988, + [SMALL_STATE(1526)] = 29048, + [SMALL_STATE(1527)] = 29108, + [SMALL_STATE(1528)] = 29168, + [SMALL_STATE(1529)] = 29228, + [SMALL_STATE(1530)] = 29288, + [SMALL_STATE(1531)] = 29348, + [SMALL_STATE(1532)] = 29422, + [SMALL_STATE(1533)] = 29482, + [SMALL_STATE(1534)] = 29548, + [SMALL_STATE(1535)] = 29608, + [SMALL_STATE(1536)] = 29668, + [SMALL_STATE(1537)] = 29728, + [SMALL_STATE(1538)] = 29788, + [SMALL_STATE(1539)] = 29848, + [SMALL_STATE(1540)] = 29908, + [SMALL_STATE(1541)] = 29968, + [SMALL_STATE(1542)] = 30028, + [SMALL_STATE(1543)] = 30088, + [SMALL_STATE(1544)] = 30148, + [SMALL_STATE(1545)] = 30216, + [SMALL_STATE(1546)] = 30276, + [SMALL_STATE(1547)] = 30336, + [SMALL_STATE(1548)] = 30396, + [SMALL_STATE(1549)] = 30456, + [SMALL_STATE(1550)] = 30516, + [SMALL_STATE(1551)] = 30576, + [SMALL_STATE(1552)] = 30636, + [SMALL_STATE(1553)] = 30700, + [SMALL_STATE(1554)] = 30764, + [SMALL_STATE(1555)] = 30824, + [SMALL_STATE(1556)] = 30884, + [SMALL_STATE(1557)] = 30944, + [SMALL_STATE(1558)] = 31004, + [SMALL_STATE(1559)] = 31064, + [SMALL_STATE(1560)] = 31124, + [SMALL_STATE(1561)] = 31184, + [SMALL_STATE(1562)] = 31255, + [SMALL_STATE(1563)] = 31316, + [SMALL_STATE(1564)] = 31385, + [SMALL_STATE(1565)] = 31446, + [SMALL_STATE(1566)] = 31507, + [SMALL_STATE(1567)] = 31566, + [SMALL_STATE(1568)] = 31653, + [SMALL_STATE(1569)] = 31712, + [SMALL_STATE(1570)] = 31799, + [SMALL_STATE(1571)] = 31860, + [SMALL_STATE(1572)] = 31919, + [SMALL_STATE(1573)] = 32006, + [SMALL_STATE(1574)] = 32093, + [SMALL_STATE(1575)] = 32180, + [SMALL_STATE(1576)] = 32267, + [SMALL_STATE(1577)] = 32357, + [SMALL_STATE(1578)] = 32433, + [SMALL_STATE(1579)] = 32515, + [SMALL_STATE(1580)] = 32605, + [SMALL_STATE(1581)] = 32675, + [SMALL_STATE(1582)] = 32765, + [SMALL_STATE(1583)] = 32843, + [SMALL_STATE(1584)] = 32933, + [SMALL_STATE(1585)] = 33017, + [SMALL_STATE(1586)] = 33103, + [SMALL_STATE(1587)] = 33189, + [SMALL_STATE(1588)] = 33259, + [SMALL_STATE(1589)] = 33327, + [SMALL_STATE(1590)] = 33419, + [SMALL_STATE(1591)] = 33485, + [SMALL_STATE(1592)] = 33575, + [SMALL_STATE(1593)] = 33665, + [SMALL_STATE(1594)] = 33757, + [SMALL_STATE(1595)] = 33847, + [SMALL_STATE(1596)] = 33921, + [SMALL_STATE(1597)] = 34013, + [SMALL_STATE(1598)] = 34083, + [SMALL_STATE(1599)] = 34147, + [SMALL_STATE(1600)] = 34239, + [SMALL_STATE(1601)] = 34309, + [SMALL_STATE(1602)] = 34381, + [SMALL_STATE(1603)] = 34448, + [SMALL_STATE(1604)] = 34511, + [SMALL_STATE(1605)] = 34576, + [SMALL_STATE(1606)] = 34639, + [SMALL_STATE(1607)] = 34702, + [SMALL_STATE(1608)] = 34765, + [SMALL_STATE(1609)] = 34825, + [SMALL_STATE(1610)] = 34885, + [SMALL_STATE(1611)] = 34945, + [SMALL_STATE(1612)] = 35005, + [SMALL_STATE(1613)] = 35061, + [SMALL_STATE(1614)] = 35121, + [SMALL_STATE(1615)] = 35179, + [SMALL_STATE(1616)] = 35239, + [SMALL_STATE(1617)] = 35329, + [SMALL_STATE(1618)] = 35387, + [SMALL_STATE(1619)] = 35445, + [SMALL_STATE(1620)] = 35509, + [SMALL_STATE(1621)] = 35565, + [SMALL_STATE(1622)] = 35629, + [SMALL_STATE(1623)] = 35719, + [SMALL_STATE(1624)] = 35783, + [SMALL_STATE(1625)] = 35873, + [SMALL_STATE(1626)] = 35929, + [SMALL_STATE(1627)] = 35993, + [SMALL_STATE(1628)] = 36051, + [SMALL_STATE(1629)] = 36111, + [SMALL_STATE(1630)] = 36171, + [SMALL_STATE(1631)] = 36261, + [SMALL_STATE(1632)] = 36317, + [SMALL_STATE(1633)] = 36412, + [SMALL_STATE(1634)] = 36507, + [SMALL_STATE(1635)] = 36564, + [SMALL_STATE(1636)] = 36623, + [SMALL_STATE(1637)] = 36682, + [SMALL_STATE(1638)] = 36739, + [SMALL_STATE(1639)] = 36796, + [SMALL_STATE(1640)] = 36855, + [SMALL_STATE(1641)] = 36910, + [SMALL_STATE(1642)] = 36965, + [SMALL_STATE(1643)] = 37020, + [SMALL_STATE(1644)] = 37077, + [SMALL_STATE(1645)] = 37132, + [SMALL_STATE(1646)] = 37189, + [SMALL_STATE(1647)] = 37244, + [SMALL_STATE(1648)] = 37299, + [SMALL_STATE(1649)] = 37354, + [SMALL_STATE(1650)] = 37409, + [SMALL_STATE(1651)] = 37504, + [SMALL_STATE(1652)] = 37563, + [SMALL_STATE(1653)] = 37644, + [SMALL_STATE(1654)] = 37739, + [SMALL_STATE(1655)] = 37834, + [SMALL_STATE(1656)] = 37929, + [SMALL_STATE(1657)] = 38024, + [SMALL_STATE(1658)] = 38119, + [SMALL_STATE(1659)] = 38214, + [SMALL_STATE(1660)] = 38309, + [SMALL_STATE(1661)] = 38404, + [SMALL_STATE(1662)] = 38499, + [SMALL_STATE(1663)] = 38556, + [SMALL_STATE(1664)] = 38613, + [SMALL_STATE(1665)] = 38705, + [SMALL_STATE(1666)] = 38783, + [SMALL_STATE(1667)] = 38839, + [SMALL_STATE(1668)] = 38895, + [SMALL_STATE(1669)] = 38983, + [SMALL_STATE(1670)] = 39039, + [SMALL_STATE(1671)] = 39093, + [SMALL_STATE(1672)] = 39147, + [SMALL_STATE(1673)] = 39201, + [SMALL_STATE(1674)] = 39257, + [SMALL_STATE(1675)] = 39313, + [SMALL_STATE(1676)] = 39369, + [SMALL_STATE(1677)] = 39425, + [SMALL_STATE(1678)] = 39481, + [SMALL_STATE(1679)] = 39539, + [SMALL_STATE(1680)] = 39627, + [SMALL_STATE(1681)] = 39683, + [SMALL_STATE(1682)] = 39771, + [SMALL_STATE(1683)] = 39825, + [SMALL_STATE(1684)] = 39879, + [SMALL_STATE(1685)] = 39935, + [SMALL_STATE(1686)] = 39991, + [SMALL_STATE(1687)] = 40047, + [SMALL_STATE(1688)] = 40135, + [SMALL_STATE(1689)] = 40189, + [SMALL_STATE(1690)] = 40245, + [SMALL_STATE(1691)] = 40301, + [SMALL_STATE(1692)] = 40387, + [SMALL_STATE(1693)] = 40443, + [SMALL_STATE(1694)] = 40535, + [SMALL_STATE(1695)] = 40589, + [SMALL_STATE(1696)] = 40653, + [SMALL_STATE(1697)] = 40707, + [SMALL_STATE(1698)] = 40777, + [SMALL_STATE(1699)] = 40845, + [SMALL_STATE(1700)] = 40933, + [SMALL_STATE(1701)] = 41005, + [SMALL_STATE(1702)] = 41059, + [SMALL_STATE(1703)] = 41113, + [SMALL_STATE(1704)] = 41167, + [SMALL_STATE(1705)] = 41221, + [SMALL_STATE(1706)] = 41275, + [SMALL_STATE(1707)] = 41353, + [SMALL_STATE(1708)] = 41435, + [SMALL_STATE(1709)] = 41521, + [SMALL_STATE(1710)] = 41607, + [SMALL_STATE(1711)] = 41693, + [SMALL_STATE(1712)] = 41779, + [SMALL_STATE(1713)] = 41859, + [SMALL_STATE(1714)] = 41925, + [SMALL_STATE(1715)] = 42017, + [SMALL_STATE(1716)] = 42095, + [SMALL_STATE(1717)] = 42181, + [SMALL_STATE(1718)] = 42273, + [SMALL_STATE(1719)] = 42359, + [SMALL_STATE(1720)] = 42451, + [SMALL_STATE(1721)] = 42525, + [SMALL_STATE(1722)] = 42579, + [SMALL_STATE(1723)] = 42633, + [SMALL_STATE(1724)] = 42721, + [SMALL_STATE(1725)] = 42803, + [SMALL_STATE(1726)] = 42859, + [SMALL_STATE(1727)] = 42951, + [SMALL_STATE(1728)] = 43005, + [SMALL_STATE(1729)] = 43058, + [SMALL_STATE(1730)] = 43147, + [SMALL_STATE(1731)] = 43200, + [SMALL_STATE(1732)] = 43253, + [SMALL_STATE(1733)] = 43306, + [SMALL_STATE(1734)] = 43359, + [SMALL_STATE(1735)] = 43412, + [SMALL_STATE(1736)] = 43465, + [SMALL_STATE(1737)] = 43524, + [SMALL_STATE(1738)] = 43613, + [SMALL_STATE(1739)] = 43666, + [SMALL_STATE(1740)] = 43755, + [SMALL_STATE(1741)] = 43808, + [SMALL_STATE(1742)] = 43861, + [SMALL_STATE(1743)] = 43914, + [SMALL_STATE(1744)] = 44001, + [SMALL_STATE(1745)] = 44054, + [SMALL_STATE(1746)] = 44107, + [SMALL_STATE(1747)] = 44168, + [SMALL_STATE(1748)] = 44257, + [SMALL_STATE(1749)] = 44346, + [SMALL_STATE(1750)] = 44399, + [SMALL_STATE(1751)] = 44452, + [SMALL_STATE(1752)] = 44505, + [SMALL_STATE(1753)] = 44558, + [SMALL_STATE(1754)] = 44647, + [SMALL_STATE(1755)] = 44700, + [SMALL_STATE(1756)] = 44775, + [SMALL_STATE(1757)] = 44828, + [SMALL_STATE(1758)] = 44881, + [SMALL_STATE(1759)] = 44934, + [SMALL_STATE(1760)] = 44987, + [SMALL_STATE(1761)] = 45040, + [SMALL_STATE(1762)] = 45099, + [SMALL_STATE(1763)] = 45186, + [SMALL_STATE(1764)] = 45273, + [SMALL_STATE(1765)] = 45360, + [SMALL_STATE(1766)] = 45413, + [SMALL_STATE(1767)] = 45502, + [SMALL_STATE(1768)] = 45555, + [SMALL_STATE(1769)] = 45608, + [SMALL_STATE(1770)] = 45661, + [SMALL_STATE(1771)] = 45714, + [SMALL_STATE(1772)] = 45767, + [SMALL_STATE(1773)] = 45820, + [SMALL_STATE(1774)] = 45873, + [SMALL_STATE(1775)] = 45926, + [SMALL_STATE(1776)] = 46013, + [SMALL_STATE(1777)] = 46100, + [SMALL_STATE(1778)] = 46185, + [SMALL_STATE(1779)] = 46248, + [SMALL_STATE(1780)] = 46317, + [SMALL_STATE(1781)] = 46384, + [SMALL_STATE(1782)] = 46455, + [SMALL_STATE(1783)] = 46532, + [SMALL_STATE(1784)] = 46611, + [SMALL_STATE(1785)] = 46676, + [SMALL_STATE(1786)] = 46761, + [SMALL_STATE(1787)] = 46846, + [SMALL_STATE(1788)] = 46919, + [SMALL_STATE(1789)] = 47000, + [SMALL_STATE(1790)] = 47053, + [SMALL_STATE(1791)] = 47106, + [SMALL_STATE(1792)] = 47159, + [SMALL_STATE(1793)] = 47212, + [SMALL_STATE(1794)] = 47265, + [SMALL_STATE(1795)] = 47352, + [SMALL_STATE(1796)] = 47405, + [SMALL_STATE(1797)] = 47458, + [SMALL_STATE(1798)] = 47511, + [SMALL_STATE(1799)] = 47564, + [SMALL_STATE(1800)] = 47617, + [SMALL_STATE(1801)] = 47670, + [SMALL_STATE(1802)] = 47723, + [SMALL_STATE(1803)] = 47776, + [SMALL_STATE(1804)] = 47829, + [SMALL_STATE(1805)] = 47916, + [SMALL_STATE(1806)] = 47969, + [SMALL_STATE(1807)] = 48022, + [SMALL_STATE(1808)] = 48075, + [SMALL_STATE(1809)] = 48128, + [SMALL_STATE(1810)] = 48181, + [SMALL_STATE(1811)] = 48234, + [SMALL_STATE(1812)] = 48287, + [SMALL_STATE(1813)] = 48340, + [SMALL_STATE(1814)] = 48393, + [SMALL_STATE(1815)] = 48446, + [SMALL_STATE(1816)] = 48499, + [SMALL_STATE(1817)] = 48552, + [SMALL_STATE(1818)] = 48641, + [SMALL_STATE(1819)] = 48728, + [SMALL_STATE(1820)] = 48813, + [SMALL_STATE(1821)] = 48902, + [SMALL_STATE(1822)] = 48955, + [SMALL_STATE(1823)] = 49008, + [SMALL_STATE(1824)] = 49061, + [SMALL_STATE(1825)] = 49114, + [SMALL_STATE(1826)] = 49167, + [SMALL_STATE(1827)] = 49220, + [SMALL_STATE(1828)] = 49273, + [SMALL_STATE(1829)] = 49360, + [SMALL_STATE(1830)] = 49413, + [SMALL_STATE(1831)] = 49466, + [SMALL_STATE(1832)] = 49553, + [SMALL_STATE(1833)] = 49638, + [SMALL_STATE(1834)] = 49691, + [SMALL_STATE(1835)] = 49744, + [SMALL_STATE(1836)] = 49797, + [SMALL_STATE(1837)] = 49850, + [SMALL_STATE(1838)] = 49913, + [SMALL_STATE(1839)] = 49982, + [SMALL_STATE(1840)] = 50049, + [SMALL_STATE(1841)] = 50120, + [SMALL_STATE(1842)] = 50197, + [SMALL_STATE(1843)] = 50276, + [SMALL_STATE(1844)] = 50341, + [SMALL_STATE(1845)] = 50426, + [SMALL_STATE(1846)] = 50511, + [SMALL_STATE(1847)] = 50584, + [SMALL_STATE(1848)] = 50665, + [SMALL_STATE(1849)] = 50718, + [SMALL_STATE(1850)] = 50771, + [SMALL_STATE(1851)] = 50824, + [SMALL_STATE(1852)] = 50911, + [SMALL_STATE(1853)] = 50964, + [SMALL_STATE(1854)] = 51017, + [SMALL_STATE(1855)] = 51106, + [SMALL_STATE(1856)] = 51159, + [SMALL_STATE(1857)] = 51212, + [SMALL_STATE(1858)] = 51265, + [SMALL_STATE(1859)] = 51318, + [SMALL_STATE(1860)] = 51371, + [SMALL_STATE(1861)] = 51424, + [SMALL_STATE(1862)] = 51511, + [SMALL_STATE(1863)] = 51564, + [SMALL_STATE(1864)] = 51617, + [SMALL_STATE(1865)] = 51670, + [SMALL_STATE(1866)] = 51723, + [SMALL_STATE(1867)] = 51776, + [SMALL_STATE(1868)] = 51863, + [SMALL_STATE(1869)] = 51916, + [SMALL_STATE(1870)] = 51969, + [SMALL_STATE(1871)] = 52022, + [SMALL_STATE(1872)] = 52109, + [SMALL_STATE(1873)] = 52162, + [SMALL_STATE(1874)] = 52249, + [SMALL_STATE(1875)] = 52302, + [SMALL_STATE(1876)] = 52355, + [SMALL_STATE(1877)] = 52408, + [SMALL_STATE(1878)] = 52495, + [SMALL_STATE(1879)] = 52582, + [SMALL_STATE(1880)] = 52641, + [SMALL_STATE(1881)] = 52700, + [SMALL_STATE(1882)] = 52753, + [SMALL_STATE(1883)] = 52806, + [SMALL_STATE(1884)] = 52859, + [SMALL_STATE(1885)] = 52948, + [SMALL_STATE(1886)] = 53037, + [SMALL_STATE(1887)] = 53126, + [SMALL_STATE(1888)] = 53207, + [SMALL_STATE(1889)] = 53296, + [SMALL_STATE(1890)] = 53385, + [SMALL_STATE(1891)] = 53470, + [SMALL_STATE(1892)] = 53523, + [SMALL_STATE(1893)] = 53608, + [SMALL_STATE(1894)] = 53697, + [SMALL_STATE(1895)] = 53784, + [SMALL_STATE(1896)] = 53871, + [SMALL_STATE(1897)] = 53960, + [SMALL_STATE(1898)] = 54049, + [SMALL_STATE(1899)] = 54138, + [SMALL_STATE(1900)] = 54227, + [SMALL_STATE(1901)] = 54316, + [SMALL_STATE(1902)] = 54405, + [SMALL_STATE(1903)] = 54458, + [SMALL_STATE(1904)] = 54547, + [SMALL_STATE(1905)] = 54636, + [SMALL_STATE(1906)] = 54689, + [SMALL_STATE(1907)] = 54770, + [SMALL_STATE(1908)] = 54855, + [SMALL_STATE(1909)] = 54940, + [SMALL_STATE(1910)] = 55029, + [SMALL_STATE(1911)] = 55114, + [SMALL_STATE(1912)] = 55199, + [SMALL_STATE(1913)] = 55288, + [SMALL_STATE(1914)] = 55377, + [SMALL_STATE(1915)] = 55452, + [SMALL_STATE(1916)] = 55505, + [SMALL_STATE(1917)] = 55594, + [SMALL_STATE(1918)] = 55683, + [SMALL_STATE(1919)] = 55772, + [SMALL_STATE(1920)] = 55861, + [SMALL_STATE(1921)] = 55950, + [SMALL_STATE(1922)] = 56039, + [SMALL_STATE(1923)] = 56126, + [SMALL_STATE(1924)] = 56211, + [SMALL_STATE(1925)] = 56300, + [SMALL_STATE(1926)] = 56385, + [SMALL_STATE(1927)] = 56474, + [SMALL_STATE(1928)] = 56563, + [SMALL_STATE(1929)] = 56650, + [SMALL_STATE(1930)] = 56739, + [SMALL_STATE(1931)] = 56828, + [SMALL_STATE(1932)] = 56917, + [SMALL_STATE(1933)] = 57006, + [SMALL_STATE(1934)] = 57095, + [SMALL_STATE(1935)] = 57184, + [SMALL_STATE(1936)] = 57273, + [SMALL_STATE(1937)] = 57362, + [SMALL_STATE(1938)] = 57451, + [SMALL_STATE(1939)] = 57540, + [SMALL_STATE(1940)] = 57629, + [SMALL_STATE(1941)] = 57718, + [SMALL_STATE(1942)] = 57771, + [SMALL_STATE(1943)] = 57846, + [SMALL_STATE(1944)] = 57899, + [SMALL_STATE(1945)] = 57952, + [SMALL_STATE(1946)] = 58027, + [SMALL_STATE(1947)] = 58102, + [SMALL_STATE(1948)] = 58187, + [SMALL_STATE(1949)] = 58240, + [SMALL_STATE(1950)] = 58293, + [SMALL_STATE(1951)] = 58346, + [SMALL_STATE(1952)] = 58435, + [SMALL_STATE(1953)] = 58488, + [SMALL_STATE(1954)] = 58577, + [SMALL_STATE(1955)] = 58630, + [SMALL_STATE(1956)] = 58716, + [SMALL_STATE(1957)] = 58792, + [SMALL_STATE(1958)] = 58876, + [SMALL_STATE(1959)] = 58960, + [SMALL_STATE(1960)] = 59036, + [SMALL_STATE(1961)] = 59122, + [SMALL_STATE(1962)] = 59208, + [SMALL_STATE(1963)] = 59294, + [SMALL_STATE(1964)] = 59380, + [SMALL_STATE(1965)] = 59456, + [SMALL_STATE(1966)] = 59542, + [SMALL_STATE(1967)] = 59628, + [SMALL_STATE(1968)] = 59714, + [SMALL_STATE(1969)] = 59800, + [SMALL_STATE(1970)] = 59886, + [SMALL_STATE(1971)] = 59972, + [SMALL_STATE(1972)] = 60058, + [SMALL_STATE(1973)] = 60144, + [SMALL_STATE(1974)] = 60230, + [SMALL_STATE(1975)] = 60316, + [SMALL_STATE(1976)] = 60402, + [SMALL_STATE(1977)] = 60488, + [SMALL_STATE(1978)] = 60574, + [SMALL_STATE(1979)] = 60660, + [SMALL_STATE(1980)] = 60746, + [SMALL_STATE(1981)] = 60832, + [SMALL_STATE(1982)] = 60918, + [SMALL_STATE(1983)] = 61004, + [SMALL_STATE(1984)] = 61090, + [SMALL_STATE(1985)] = 61166, + [SMALL_STATE(1986)] = 61252, + [SMALL_STATE(1987)] = 61338, + [SMALL_STATE(1988)] = 61424, + [SMALL_STATE(1989)] = 61510, + [SMALL_STATE(1990)] = 61596, + [SMALL_STATE(1991)] = 61682, + [SMALL_STATE(1992)] = 61758, + [SMALL_STATE(1993)] = 61834, + [SMALL_STATE(1994)] = 61910, + [SMALL_STATE(1995)] = 61986, + [SMALL_STATE(1996)] = 62034, + [SMALL_STATE(1997)] = 62082, + [SMALL_STATE(1998)] = 62130, + [SMALL_STATE(1999)] = 62193, + [SMALL_STATE(2000)] = 62256, + [SMALL_STATE(2001)] = 62319, + [SMALL_STATE(2002)] = 62382, + [SMALL_STATE(2003)] = 62445, + [SMALL_STATE(2004)] = 62508, + [SMALL_STATE(2005)] = 62571, + [SMALL_STATE(2006)] = 62634, + [SMALL_STATE(2007)] = 62697, + [SMALL_STATE(2008)] = 62757, + [SMALL_STATE(2009)] = 62817, + [SMALL_STATE(2010)] = 62853, + [SMALL_STATE(2011)] = 62889, + [SMALL_STATE(2012)] = 62926, + [SMALL_STATE(2013)] = 62963, + [SMALL_STATE(2014)] = 63016, + [SMALL_STATE(2015)] = 63053, + [SMALL_STATE(2016)] = 63090, + [SMALL_STATE(2017)] = 63134, + [SMALL_STATE(2018)] = 63178, + [SMALL_STATE(2019)] = 63212, + [SMALL_STATE(2020)] = 63246, + [SMALL_STATE(2021)] = 63280, + [SMALL_STATE(2022)] = 63316, + [SMALL_STATE(2023)] = 63352, + [SMALL_STATE(2024)] = 63386, + [SMALL_STATE(2025)] = 63422, + [SMALL_STATE(2026)] = 63466, + [SMALL_STATE(2027)] = 63502, + [SMALL_STATE(2028)] = 63553, + [SMALL_STATE(2029)] = 63586, + [SMALL_STATE(2030)] = 63619, + [SMALL_STATE(2031)] = 63652, + [SMALL_STATE(2032)] = 63685, + [SMALL_STATE(2033)] = 63726, + [SMALL_STATE(2034)] = 63757, + [SMALL_STATE(2035)] = 63789, + [SMALL_STATE(2036)] = 63835, + [SMALL_STATE(2037)] = 63879, + [SMALL_STATE(2038)] = 63939, + [SMALL_STATE(2039)] = 63999, + [SMALL_STATE(2040)] = 64037, + [SMALL_STATE(2041)] = 64075, + [SMALL_STATE(2042)] = 64107, + [SMALL_STATE(2043)] = 64145, + [SMALL_STATE(2044)] = 64183, + [SMALL_STATE(2045)] = 64215, + [SMALL_STATE(2046)] = 64256, + [SMALL_STATE(2047)] = 64285, + [SMALL_STATE(2048)] = 64318, + [SMALL_STATE(2049)] = 64361, + [SMALL_STATE(2050)] = 64390, + [SMALL_STATE(2051)] = 64423, + [SMALL_STATE(2052)] = 64476, + [SMALL_STATE(2053)] = 64507, + [SMALL_STATE(2054)] = 64536, + [SMALL_STATE(2055)] = 64569, + [SMALL_STATE(2056)] = 64602, + [SMALL_STATE(2057)] = 64635, + [SMALL_STATE(2058)] = 64664, + [SMALL_STATE(2059)] = 64719, + [SMALL_STATE(2060)] = 64752, + [SMALL_STATE(2061)] = 64805, + [SMALL_STATE(2062)] = 64834, + [SMALL_STATE(2063)] = 64863, + [SMALL_STATE(2064)] = 64892, + [SMALL_STATE(2065)] = 64925, + [SMALL_STATE(2066)] = 64954, + [SMALL_STATE(2067)] = 64983, + [SMALL_STATE(2068)] = 65011, + [SMALL_STATE(2069)] = 65039, + [SMALL_STATE(2070)] = 65067, + [SMALL_STATE(2071)] = 65095, + [SMALL_STATE(2072)] = 65123, + [SMALL_STATE(2073)] = 65151, + [SMALL_STATE(2074)] = 65179, + [SMALL_STATE(2075)] = 65207, + [SMALL_STATE(2076)] = 65235, + [SMALL_STATE(2077)] = 65263, + [SMALL_STATE(2078)] = 65291, + [SMALL_STATE(2079)] = 65335, + [SMALL_STATE(2080)] = 65363, + [SMALL_STATE(2081)] = 65393, + [SMALL_STATE(2082)] = 65421, + [SMALL_STATE(2083)] = 65451, + [SMALL_STATE(2084)] = 65479, + [SMALL_STATE(2085)] = 65507, + [SMALL_STATE(2086)] = 65535, + [SMALL_STATE(2087)] = 65563, + [SMALL_STATE(2088)] = 65591, + [SMALL_STATE(2089)] = 65619, + [SMALL_STATE(2090)] = 65647, + [SMALL_STATE(2091)] = 65675, + [SMALL_STATE(2092)] = 65703, + [SMALL_STATE(2093)] = 65731, + [SMALL_STATE(2094)] = 65759, + [SMALL_STATE(2095)] = 65787, + [SMALL_STATE(2096)] = 65815, + [SMALL_STATE(2097)] = 65843, + [SMALL_STATE(2098)] = 65871, + [SMALL_STATE(2099)] = 65899, + [SMALL_STATE(2100)] = 65927, + [SMALL_STATE(2101)] = 65955, + [SMALL_STATE(2102)] = 65983, + [SMALL_STATE(2103)] = 66011, + [SMALL_STATE(2104)] = 66039, + [SMALL_STATE(2105)] = 66067, + [SMALL_STATE(2106)] = 66102, + [SMALL_STATE(2107)] = 66131, + [SMALL_STATE(2108)] = 66160, + [SMALL_STATE(2109)] = 66189, + [SMALL_STATE(2110)] = 66218, + [SMALL_STATE(2111)] = 66247, + [SMALL_STATE(2112)] = 66276, + [SMALL_STATE(2113)] = 66305, + [SMALL_STATE(2114)] = 66334, + [SMALL_STATE(2115)] = 66363, + [SMALL_STATE(2116)] = 66392, + [SMALL_STATE(2117)] = 66438, + [SMALL_STATE(2118)] = 66470, + [SMALL_STATE(2119)] = 66502, + [SMALL_STATE(2120)] = 66530, + [SMALL_STATE(2121)] = 66562, + [SMALL_STATE(2122)] = 66594, + [SMALL_STATE(2123)] = 66626, + [SMALL_STATE(2124)] = 66670, + [SMALL_STATE(2125)] = 66710, + [SMALL_STATE(2126)] = 66742, + [SMALL_STATE(2127)] = 66774, + [SMALL_STATE(2128)] = 66806, + [SMALL_STATE(2129)] = 66838, + [SMALL_STATE(2130)] = 66870, + [SMALL_STATE(2131)] = 66902, + [SMALL_STATE(2132)] = 66944, + [SMALL_STATE(2133)] = 66974, + [SMALL_STATE(2134)] = 67006, + [SMALL_STATE(2135)] = 67049, + [SMALL_STATE(2136)] = 67092, + [SMALL_STATE(2137)] = 67121, + [SMALL_STATE(2138)] = 67164, + [SMALL_STATE(2139)] = 67193, + [SMALL_STATE(2140)] = 67236, + [SMALL_STATE(2141)] = 67279, + [SMALL_STATE(2142)] = 67322, + [SMALL_STATE(2143)] = 67360, + [SMALL_STATE(2144)] = 67388, + [SMALL_STATE(2145)] = 67416, + [SMALL_STATE(2146)] = 67444, + [SMALL_STATE(2147)] = 67472, + [SMALL_STATE(2148)] = 67500, + [SMALL_STATE(2149)] = 67528, + [SMALL_STATE(2150)] = 67556, + [SMALL_STATE(2151)] = 67580, + [SMALL_STATE(2152)] = 67620, + [SMALL_STATE(2153)] = 67660, + [SMALL_STATE(2154)] = 67694, + [SMALL_STATE(2155)] = 67722, + [SMALL_STATE(2156)] = 67760, + [SMALL_STATE(2157)] = 67800, + [SMALL_STATE(2158)] = 67838, + [SMALL_STATE(2159)] = 67868, + [SMALL_STATE(2160)] = 67896, + [SMALL_STATE(2161)] = 67924, + [SMALL_STATE(2162)] = 67948, + [SMALL_STATE(2163)] = 67988, + [SMALL_STATE(2164)] = 68012, + [SMALL_STATE(2165)] = 68040, + [SMALL_STATE(2166)] = 68080, + [SMALL_STATE(2167)] = 68118, + [SMALL_STATE(2168)] = 68158, + [SMALL_STATE(2169)] = 68182, + [SMALL_STATE(2170)] = 68220, + [SMALL_STATE(2171)] = 68258, + [SMALL_STATE(2172)] = 68298, + [SMALL_STATE(2173)] = 68338, + [SMALL_STATE(2174)] = 68376, + [SMALL_STATE(2175)] = 68400, + [SMALL_STATE(2176)] = 68428, + [SMALL_STATE(2177)] = 68466, + [SMALL_STATE(2178)] = 68506, + [SMALL_STATE(2179)] = 68534, + [SMALL_STATE(2180)] = 68564, + [SMALL_STATE(2181)] = 68602, + [SMALL_STATE(2182)] = 68640, + [SMALL_STATE(2183)] = 68678, + [SMALL_STATE(2184)] = 68706, + [SMALL_STATE(2185)] = 68734, + [SMALL_STATE(2186)] = 68772, + [SMALL_STATE(2187)] = 68800, + [SMALL_STATE(2188)] = 68840, + [SMALL_STATE(2189)] = 68881, + [SMALL_STATE(2190)] = 68922, + [SMALL_STATE(2191)] = 68945, + [SMALL_STATE(2192)] = 68976, + [SMALL_STATE(2193)] = 68999, + [SMALL_STATE(2194)] = 69022, + [SMALL_STATE(2195)] = 69045, + [SMALL_STATE(2196)] = 69080, + [SMALL_STATE(2197)] = 69103, + [SMALL_STATE(2198)] = 69126, + [SMALL_STATE(2199)] = 69149, + [SMALL_STATE(2200)] = 69172, + [SMALL_STATE(2201)] = 69203, + [SMALL_STATE(2202)] = 69226, + [SMALL_STATE(2203)] = 69249, + [SMALL_STATE(2204)] = 69272, + [SMALL_STATE(2205)] = 69305, + [SMALL_STATE(2206)] = 69328, + [SMALL_STATE(2207)] = 69351, + [SMALL_STATE(2208)] = 69386, + [SMALL_STATE(2209)] = 69409, + [SMALL_STATE(2210)] = 69432, + [SMALL_STATE(2211)] = 69455, + [SMALL_STATE(2212)] = 69478, + [SMALL_STATE(2213)] = 69515, + [SMALL_STATE(2214)] = 69538, + [SMALL_STATE(2215)] = 69579, + [SMALL_STATE(2216)] = 69602, + [SMALL_STATE(2217)] = 69625, + [SMALL_STATE(2218)] = 69656, + [SMALL_STATE(2219)] = 69687, + [SMALL_STATE(2220)] = 69710, + [SMALL_STATE(2221)] = 69733, + [SMALL_STATE(2222)] = 69756, + [SMALL_STATE(2223)] = 69791, + [SMALL_STATE(2224)] = 69814, + [SMALL_STATE(2225)] = 69837, + [SMALL_STATE(2226)] = 69868, + [SMALL_STATE(2227)] = 69903, + [SMALL_STATE(2228)] = 69926, + [SMALL_STATE(2229)] = 69949, + [SMALL_STATE(2230)] = 69972, + [SMALL_STATE(2231)] = 69995, + [SMALL_STATE(2232)] = 70018, + [SMALL_STATE(2233)] = 70041, + [SMALL_STATE(2234)] = 70078, + [SMALL_STATE(2235)] = 70101, + [SMALL_STATE(2236)] = 70138, + [SMALL_STATE(2237)] = 70161, + [SMALL_STATE(2238)] = 70184, + [SMALL_STATE(2239)] = 70225, + [SMALL_STATE(2240)] = 70262, + [SMALL_STATE(2241)] = 70285, + [SMALL_STATE(2242)] = 70316, + [SMALL_STATE(2243)] = 70339, + [SMALL_STATE(2244)] = 70371, + [SMALL_STATE(2245)] = 70403, + [SMALL_STATE(2246)] = 70435, + [SMALL_STATE(2247)] = 70467, + [SMALL_STATE(2248)] = 70499, + [SMALL_STATE(2249)] = 70529, + [SMALL_STATE(2250)] = 70563, + [SMALL_STATE(2251)] = 70601, + [SMALL_STATE(2252)] = 70639, + [SMALL_STATE(2253)] = 70671, + [SMALL_STATE(2254)] = 70697, + [SMALL_STATE(2255)] = 70727, + [SMALL_STATE(2256)] = 70751, + [SMALL_STATE(2257)] = 70789, + [SMALL_STATE(2258)] = 70827, + [SMALL_STATE(2259)] = 70865, + [SMALL_STATE(2260)] = 70903, + [SMALL_STATE(2261)] = 70931, + [SMALL_STATE(2262)] = 70955, + [SMALL_STATE(2263)] = 70993, + [SMALL_STATE(2264)] = 71031, + [SMALL_STATE(2265)] = 71069, + [SMALL_STATE(2266)] = 71107, + [SMALL_STATE(2267)] = 71131, + [SMALL_STATE(2268)] = 71159, + [SMALL_STATE(2269)] = 71197, + [SMALL_STATE(2270)] = 71225, + [SMALL_STATE(2271)] = 71257, + [SMALL_STATE(2272)] = 71295, + [SMALL_STATE(2273)] = 71323, + [SMALL_STATE(2274)] = 71355, + [SMALL_STATE(2275)] = 71385, + [SMALL_STATE(2276)] = 71415, + [SMALL_STATE(2277)] = 71449, + [SMALL_STATE(2278)] = 71481, + [SMALL_STATE(2279)] = 71513, + [SMALL_STATE(2280)] = 71541, + [SMALL_STATE(2281)] = 71569, + [SMALL_STATE(2282)] = 71593, + [SMALL_STATE(2283)] = 71619, + [SMALL_STATE(2284)] = 71651, + [SMALL_STATE(2285)] = 71683, + [SMALL_STATE(2286)] = 71707, + [SMALL_STATE(2287)] = 71735, + [SMALL_STATE(2288)] = 71767, + [SMALL_STATE(2289)] = 71795, + [SMALL_STATE(2290)] = 71831, + [SMALL_STATE(2291)] = 71869, + [SMALL_STATE(2292)] = 71907, + [SMALL_STATE(2293)] = 71945, + [SMALL_STATE(2294)] = 71983, + [SMALL_STATE(2295)] = 72013, + [SMALL_STATE(2296)] = 72039, + [SMALL_STATE(2297)] = 72074, + [SMALL_STATE(2298)] = 72109, + [SMALL_STATE(2299)] = 72144, + [SMALL_STATE(2300)] = 72179, + [SMALL_STATE(2301)] = 72214, + [SMALL_STATE(2302)] = 72249, + [SMALL_STATE(2303)] = 72284, + [SMALL_STATE(2304)] = 72319, + [SMALL_STATE(2305)] = 72344, + [SMALL_STATE(2306)] = 72377, + [SMALL_STATE(2307)] = 72402, + [SMALL_STATE(2308)] = 72435, + [SMALL_STATE(2309)] = 72470, + [SMALL_STATE(2310)] = 72505, + [SMALL_STATE(2311)] = 72526, + [SMALL_STATE(2312)] = 72561, + [SMALL_STATE(2313)] = 72596, + [SMALL_STATE(2314)] = 72631, + [SMALL_STATE(2315)] = 72666, + [SMALL_STATE(2316)] = 72701, + [SMALL_STATE(2317)] = 72730, + [SMALL_STATE(2318)] = 72765, + [SMALL_STATE(2319)] = 72800, + [SMALL_STATE(2320)] = 72833, + [SMALL_STATE(2321)] = 72868, + [SMALL_STATE(2322)] = 72901, + [SMALL_STATE(2323)] = 72936, + [SMALL_STATE(2324)] = 72971, + [SMALL_STATE(2325)] = 73006, + [SMALL_STATE(2326)] = 73041, + [SMALL_STATE(2327)] = 73074, + [SMALL_STATE(2328)] = 73109, + [SMALL_STATE(2329)] = 73144, + [SMALL_STATE(2330)] = 73179, + [SMALL_STATE(2331)] = 73214, + [SMALL_STATE(2332)] = 73241, + [SMALL_STATE(2333)] = 73276, + [SMALL_STATE(2334)] = 73311, + [SMALL_STATE(2335)] = 73346, + [SMALL_STATE(2336)] = 73367, + [SMALL_STATE(2337)] = 73388, + [SMALL_STATE(2338)] = 73423, + [SMALL_STATE(2339)] = 73458, + [SMALL_STATE(2340)] = 73479, + [SMALL_STATE(2341)] = 73514, + [SMALL_STATE(2342)] = 73549, + [SMALL_STATE(2343)] = 73584, + [SMALL_STATE(2344)] = 73619, + [SMALL_STATE(2345)] = 73654, + [SMALL_STATE(2346)] = 73689, + [SMALL_STATE(2347)] = 73724, + [SMALL_STATE(2348)] = 73759, + [SMALL_STATE(2349)] = 73794, + [SMALL_STATE(2350)] = 73824, + [SMALL_STATE(2351)] = 73850, + [SMALL_STATE(2352)] = 73880, + [SMALL_STATE(2353)] = 73910, + [SMALL_STATE(2354)] = 73942, + [SMALL_STATE(2355)] = 73974, + [SMALL_STATE(2356)] = 74002, + [SMALL_STATE(2357)] = 74034, + [SMALL_STATE(2358)] = 74066, + [SMALL_STATE(2359)] = 74098, + [SMALL_STATE(2360)] = 74130, + [SMALL_STATE(2361)] = 74160, + [SMALL_STATE(2362)] = 74188, + [SMALL_STATE(2363)] = 74214, + [SMALL_STATE(2364)] = 74246, + [SMALL_STATE(2365)] = 74278, + [SMALL_STATE(2366)] = 74310, + [SMALL_STATE(2367)] = 74342, + [SMALL_STATE(2368)] = 74374, + [SMALL_STATE(2369)] = 74406, + [SMALL_STATE(2370)] = 74438, + [SMALL_STATE(2371)] = 74466, + [SMALL_STATE(2372)] = 74498, + [SMALL_STATE(2373)] = 74530, + [SMALL_STATE(2374)] = 74562, + [SMALL_STATE(2375)] = 74590, + [SMALL_STATE(2376)] = 74622, + [SMALL_STATE(2377)] = 74654, + [SMALL_STATE(2378)] = 74686, + [SMALL_STATE(2379)] = 74718, + [SMALL_STATE(2380)] = 74750, + [SMALL_STATE(2381)] = 74772, + [SMALL_STATE(2382)] = 74804, + [SMALL_STATE(2383)] = 74832, + [SMALL_STATE(2384)] = 74854, + [SMALL_STATE(2385)] = 74886, + [SMALL_STATE(2386)] = 74916, + [SMALL_STATE(2387)] = 74946, + [SMALL_STATE(2388)] = 74978, + [SMALL_STATE(2389)] = 75008, + [SMALL_STATE(2390)] = 75040, + [SMALL_STATE(2391)] = 75066, + [SMALL_STATE(2392)] = 75088, + [SMALL_STATE(2393)] = 75120, + [SMALL_STATE(2394)] = 75152, + [SMALL_STATE(2395)] = 75184, + [SMALL_STATE(2396)] = 75206, + [SMALL_STATE(2397)] = 75232, + [SMALL_STATE(2398)] = 75264, + [SMALL_STATE(2399)] = 75294, + [SMALL_STATE(2400)] = 75326, + [SMALL_STATE(2401)] = 75348, + [SMALL_STATE(2402)] = 75378, + [SMALL_STATE(2403)] = 75410, + [SMALL_STATE(2404)] = 75442, + [SMALL_STATE(2405)] = 75474, + [SMALL_STATE(2406)] = 75506, + [SMALL_STATE(2407)] = 75536, + [SMALL_STATE(2408)] = 75568, + [SMALL_STATE(2409)] = 75590, + [SMALL_STATE(2410)] = 75622, + [SMALL_STATE(2411)] = 75654, + [SMALL_STATE(2412)] = 75686, + [SMALL_STATE(2413)] = 75718, + [SMALL_STATE(2414)] = 75747, + [SMALL_STATE(2415)] = 75776, + [SMALL_STATE(2416)] = 75797, + [SMALL_STATE(2417)] = 75826, + [SMALL_STATE(2418)] = 75849, + [SMALL_STATE(2419)] = 75870, + [SMALL_STATE(2420)] = 75899, + [SMALL_STATE(2421)] = 75918, + [SMALL_STATE(2422)] = 75941, + [SMALL_STATE(2423)] = 75962, + [SMALL_STATE(2424)] = 75983, + [SMALL_STATE(2425)] = 76012, + [SMALL_STATE(2426)] = 76041, + [SMALL_STATE(2427)] = 76070, + [SMALL_STATE(2428)] = 76099, + [SMALL_STATE(2429)] = 76128, + [SMALL_STATE(2430)] = 76151, + [SMALL_STATE(2431)] = 76180, + [SMALL_STATE(2432)] = 76205, + [SMALL_STATE(2433)] = 76226, + [SMALL_STATE(2434)] = 76255, + [SMALL_STATE(2435)] = 76278, + [SMALL_STATE(2436)] = 76307, + [SMALL_STATE(2437)] = 76336, + [SMALL_STATE(2438)] = 76365, + [SMALL_STATE(2439)] = 76394, + [SMALL_STATE(2440)] = 76421, + [SMALL_STATE(2441)] = 76444, + [SMALL_STATE(2442)] = 76469, + [SMALL_STATE(2443)] = 76498, + [SMALL_STATE(2444)] = 76521, + [SMALL_STATE(2445)] = 76550, + [SMALL_STATE(2446)] = 76579, + [SMALL_STATE(2447)] = 76606, + [SMALL_STATE(2448)] = 76635, + [SMALL_STATE(2449)] = 76664, + [SMALL_STATE(2450)] = 76693, + [SMALL_STATE(2451)] = 76712, + [SMALL_STATE(2452)] = 76741, + [SMALL_STATE(2453)] = 76764, + [SMALL_STATE(2454)] = 76793, + [SMALL_STATE(2455)] = 76822, + [SMALL_STATE(2456)] = 76845, + [SMALL_STATE(2457)] = 76872, + [SMALL_STATE(2458)] = 76901, + [SMALL_STATE(2459)] = 76930, + [SMALL_STATE(2460)] = 76959, + [SMALL_STATE(2461)] = 76988, + [SMALL_STATE(2462)] = 77017, + [SMALL_STATE(2463)] = 77046, + [SMALL_STATE(2464)] = 77067, + [SMALL_STATE(2465)] = 77096, + [SMALL_STATE(2466)] = 77119, + [SMALL_STATE(2467)] = 77148, + [SMALL_STATE(2468)] = 77177, + [SMALL_STATE(2469)] = 77204, + [SMALL_STATE(2470)] = 77233, + [SMALL_STATE(2471)] = 77262, + [SMALL_STATE(2472)] = 77291, + [SMALL_STATE(2473)] = 77320, + [SMALL_STATE(2474)] = 77349, + [SMALL_STATE(2475)] = 77378, + [SMALL_STATE(2476)] = 77407, + [SMALL_STATE(2477)] = 77436, + [SMALL_STATE(2478)] = 77465, + [SMALL_STATE(2479)] = 77494, + [SMALL_STATE(2480)] = 77523, + [SMALL_STATE(2481)] = 77552, + [SMALL_STATE(2482)] = 77575, + [SMALL_STATE(2483)] = 77604, + [SMALL_STATE(2484)] = 77627, + [SMALL_STATE(2485)] = 77648, + [SMALL_STATE(2486)] = 77669, + [SMALL_STATE(2487)] = 77698, + [SMALL_STATE(2488)] = 77719, + [SMALL_STATE(2489)] = 77748, + [SMALL_STATE(2490)] = 77771, + [SMALL_STATE(2491)] = 77800, + [SMALL_STATE(2492)] = 77829, + [SMALL_STATE(2493)] = 77852, + [SMALL_STATE(2494)] = 77881, + [SMALL_STATE(2495)] = 77902, + [SMALL_STATE(2496)] = 77927, + [SMALL_STATE(2497)] = 77956, + [SMALL_STATE(2498)] = 77985, + [SMALL_STATE(2499)] = 78008, + [SMALL_STATE(2500)] = 78037, + [SMALL_STATE(2501)] = 78062, + [SMALL_STATE(2502)] = 78091, + [SMALL_STATE(2503)] = 78118, + [SMALL_STATE(2504)] = 78141, + [SMALL_STATE(2505)] = 78170, + [SMALL_STATE(2506)] = 78191, + [SMALL_STATE(2507)] = 78212, + [SMALL_STATE(2508)] = 78241, + [SMALL_STATE(2509)] = 78270, + [SMALL_STATE(2510)] = 78291, + [SMALL_STATE(2511)] = 78320, + [SMALL_STATE(2512)] = 78341, + [SMALL_STATE(2513)] = 78370, + [SMALL_STATE(2514)] = 78399, + [SMALL_STATE(2515)] = 78420, + [SMALL_STATE(2516)] = 78447, + [SMALL_STATE(2517)] = 78476, + [SMALL_STATE(2518)] = 78497, + [SMALL_STATE(2519)] = 78520, + [SMALL_STATE(2520)] = 78546, + [SMALL_STATE(2521)] = 78572, + [SMALL_STATE(2522)] = 78598, + [SMALL_STATE(2523)] = 78620, + [SMALL_STATE(2524)] = 78638, + [SMALL_STATE(2525)] = 78656, + [SMALL_STATE(2526)] = 78680, + [SMALL_STATE(2527)] = 78698, + [SMALL_STATE(2528)] = 78716, + [SMALL_STATE(2529)] = 78742, + [SMALL_STATE(2530)] = 78760, + [SMALL_STATE(2531)] = 78786, + [SMALL_STATE(2532)] = 78804, + [SMALL_STATE(2533)] = 78830, + [SMALL_STATE(2534)] = 78848, + [SMALL_STATE(2535)] = 78866, + [SMALL_STATE(2536)] = 78884, + [SMALL_STATE(2537)] = 78902, + [SMALL_STATE(2538)] = 78928, + [SMALL_STATE(2539)] = 78954, + [SMALL_STATE(2540)] = 78980, + [SMALL_STATE(2541)] = 78998, + [SMALL_STATE(2542)] = 79016, + [SMALL_STATE(2543)] = 79034, + [SMALL_STATE(2544)] = 79060, + [SMALL_STATE(2545)] = 79082, + [SMALL_STATE(2546)] = 79106, + [SMALL_STATE(2547)] = 79124, + [SMALL_STATE(2548)] = 79146, + [SMALL_STATE(2549)] = 79168, + [SMALL_STATE(2550)] = 79186, + [SMALL_STATE(2551)] = 79208, + [SMALL_STATE(2552)] = 79232, + [SMALL_STATE(2553)] = 79250, + [SMALL_STATE(2554)] = 79276, + [SMALL_STATE(2555)] = 79302, + [SMALL_STATE(2556)] = 79326, + [SMALL_STATE(2557)] = 79344, + [SMALL_STATE(2558)] = 79370, + [SMALL_STATE(2559)] = 79396, + [SMALL_STATE(2560)] = 79422, + [SMALL_STATE(2561)] = 79448, + [SMALL_STATE(2562)] = 79472, + [SMALL_STATE(2563)] = 79498, + [SMALL_STATE(2564)] = 79522, + [SMALL_STATE(2565)] = 79548, + [SMALL_STATE(2566)] = 79574, + [SMALL_STATE(2567)] = 79600, + [SMALL_STATE(2568)] = 79624, + [SMALL_STATE(2569)] = 79650, + [SMALL_STATE(2570)] = 79676, + [SMALL_STATE(2571)] = 79694, + [SMALL_STATE(2572)] = 79720, + [SMALL_STATE(2573)] = 79744, + [SMALL_STATE(2574)] = 79770, + [SMALL_STATE(2575)] = 79796, + [SMALL_STATE(2576)] = 79822, + [SMALL_STATE(2577)] = 79848, + [SMALL_STATE(2578)] = 79874, + [SMALL_STATE(2579)] = 79900, + [SMALL_STATE(2580)] = 79926, + [SMALL_STATE(2581)] = 79952, + [SMALL_STATE(2582)] = 79972, + [SMALL_STATE(2583)] = 79998, + [SMALL_STATE(2584)] = 80024, + [SMALL_STATE(2585)] = 80050, + [SMALL_STATE(2586)] = 80076, + [SMALL_STATE(2587)] = 80102, + [SMALL_STATE(2588)] = 80128, + [SMALL_STATE(2589)] = 80154, + [SMALL_STATE(2590)] = 80178, + [SMALL_STATE(2591)] = 80204, + [SMALL_STATE(2592)] = 80230, + [SMALL_STATE(2593)] = 80254, + [SMALL_STATE(2594)] = 80280, + [SMALL_STATE(2595)] = 80304, + [SMALL_STATE(2596)] = 80324, + [SMALL_STATE(2597)] = 80348, + [SMALL_STATE(2598)] = 80366, + [SMALL_STATE(2599)] = 80384, + [SMALL_STATE(2600)] = 80410, + [SMALL_STATE(2601)] = 80430, + [SMALL_STATE(2602)] = 80454, + [SMALL_STATE(2603)] = 80474, + [SMALL_STATE(2604)] = 80494, + [SMALL_STATE(2605)] = 80512, + [SMALL_STATE(2606)] = 80536, + [SMALL_STATE(2607)] = 80554, + [SMALL_STATE(2608)] = 80578, + [SMALL_STATE(2609)] = 80600, + [SMALL_STATE(2610)] = 80626, + [SMALL_STATE(2611)] = 80652, + [SMALL_STATE(2612)] = 80670, + [SMALL_STATE(2613)] = 80688, + [SMALL_STATE(2614)] = 80714, + [SMALL_STATE(2615)] = 80740, + [SMALL_STATE(2616)] = 80762, + [SMALL_STATE(2617)] = 80780, + [SMALL_STATE(2618)] = 80804, + [SMALL_STATE(2619)] = 80830, + [SMALL_STATE(2620)] = 80856, + [SMALL_STATE(2621)] = 80876, + [SMALL_STATE(2622)] = 80898, + [SMALL_STATE(2623)] = 80916, + [SMALL_STATE(2624)] = 80942, + [SMALL_STATE(2625)] = 80968, + [SMALL_STATE(2626)] = 80994, + [SMALL_STATE(2627)] = 81020, + [SMALL_STATE(2628)] = 81046, + [SMALL_STATE(2629)] = 81072, + [SMALL_STATE(2630)] = 81095, + [SMALL_STATE(2631)] = 81118, + [SMALL_STATE(2632)] = 81141, + [SMALL_STATE(2633)] = 81164, + [SMALL_STATE(2634)] = 81187, + [SMALL_STATE(2635)] = 81208, + [SMALL_STATE(2636)] = 81231, + [SMALL_STATE(2637)] = 81254, + [SMALL_STATE(2638)] = 81275, + [SMALL_STATE(2639)] = 81296, + [SMALL_STATE(2640)] = 81315, + [SMALL_STATE(2641)] = 81338, + [SMALL_STATE(2642)] = 81361, + [SMALL_STATE(2643)] = 81384, + [SMALL_STATE(2644)] = 81407, + [SMALL_STATE(2645)] = 81426, + [SMALL_STATE(2646)] = 81449, + [SMALL_STATE(2647)] = 81472, + [SMALL_STATE(2648)] = 81495, + [SMALL_STATE(2649)] = 81516, + [SMALL_STATE(2650)] = 81539, + [SMALL_STATE(2651)] = 81562, + [SMALL_STATE(2652)] = 81585, + [SMALL_STATE(2653)] = 81608, + [SMALL_STATE(2654)] = 81631, + [SMALL_STATE(2655)] = 81654, + [SMALL_STATE(2656)] = 81677, + [SMALL_STATE(2657)] = 81700, + [SMALL_STATE(2658)] = 81723, + [SMALL_STATE(2659)] = 81746, + [SMALL_STATE(2660)] = 81769, + [SMALL_STATE(2661)] = 81792, + [SMALL_STATE(2662)] = 81815, + [SMALL_STATE(2663)] = 81836, + [SMALL_STATE(2664)] = 81859, + [SMALL_STATE(2665)] = 81882, + [SMALL_STATE(2666)] = 81905, + [SMALL_STATE(2667)] = 81928, + [SMALL_STATE(2668)] = 81951, + [SMALL_STATE(2669)] = 81974, + [SMALL_STATE(2670)] = 81993, + [SMALL_STATE(2671)] = 82016, + [SMALL_STATE(2672)] = 82039, + [SMALL_STATE(2673)] = 82056, + [SMALL_STATE(2674)] = 82079, + [SMALL_STATE(2675)] = 82102, + [SMALL_STATE(2676)] = 82125, + [SMALL_STATE(2677)] = 82148, + [SMALL_STATE(2678)] = 82171, + [SMALL_STATE(2679)] = 82194, + [SMALL_STATE(2680)] = 82213, + [SMALL_STATE(2681)] = 82236, + [SMALL_STATE(2682)] = 82259, + [SMALL_STATE(2683)] = 82278, + [SMALL_STATE(2684)] = 82297, + [SMALL_STATE(2685)] = 82320, + [SMALL_STATE(2686)] = 82339, + [SMALL_STATE(2687)] = 82362, + [SMALL_STATE(2688)] = 82385, + [SMALL_STATE(2689)] = 82408, + [SMALL_STATE(2690)] = 82427, + [SMALL_STATE(2691)] = 82450, + [SMALL_STATE(2692)] = 82473, + [SMALL_STATE(2693)] = 82496, + [SMALL_STATE(2694)] = 82519, + [SMALL_STATE(2695)] = 82542, + [SMALL_STATE(2696)] = 82565, + [SMALL_STATE(2697)] = 82588, + [SMALL_STATE(2698)] = 82611, + [SMALL_STATE(2699)] = 82632, + [SMALL_STATE(2700)] = 82651, + [SMALL_STATE(2701)] = 82674, + [SMALL_STATE(2702)] = 82697, + [SMALL_STATE(2703)] = 82720, + [SMALL_STATE(2704)] = 82743, + [SMALL_STATE(2705)] = 82766, + [SMALL_STATE(2706)] = 82789, + [SMALL_STATE(2707)] = 82812, + [SMALL_STATE(2708)] = 82835, + [SMALL_STATE(2709)] = 82858, + [SMALL_STATE(2710)] = 82881, + [SMALL_STATE(2711)] = 82904, + [SMALL_STATE(2712)] = 82927, + [SMALL_STATE(2713)] = 82948, + [SMALL_STATE(2714)] = 82967, + [SMALL_STATE(2715)] = 82990, + [SMALL_STATE(2716)] = 83013, + [SMALL_STATE(2717)] = 83036, + [SMALL_STATE(2718)] = 83059, + [SMALL_STATE(2719)] = 83082, + [SMALL_STATE(2720)] = 83105, + [SMALL_STATE(2721)] = 83128, + [SMALL_STATE(2722)] = 83151, + [SMALL_STATE(2723)] = 83174, + [SMALL_STATE(2724)] = 83195, + [SMALL_STATE(2725)] = 83218, + [SMALL_STATE(2726)] = 83241, + [SMALL_STATE(2727)] = 83264, + [SMALL_STATE(2728)] = 83287, + [SMALL_STATE(2729)] = 83310, + [SMALL_STATE(2730)] = 83333, + [SMALL_STATE(2731)] = 83352, + [SMALL_STATE(2732)] = 83373, + [SMALL_STATE(2733)] = 83396, + [SMALL_STATE(2734)] = 83419, + [SMALL_STATE(2735)] = 83442, + [SMALL_STATE(2736)] = 83465, + [SMALL_STATE(2737)] = 83488, + [SMALL_STATE(2738)] = 83511, + [SMALL_STATE(2739)] = 83534, + [SMALL_STATE(2740)] = 83557, + [SMALL_STATE(2741)] = 83580, + [SMALL_STATE(2742)] = 83603, + [SMALL_STATE(2743)] = 83626, + [SMALL_STATE(2744)] = 83649, + [SMALL_STATE(2745)] = 83672, + [SMALL_STATE(2746)] = 83695, + [SMALL_STATE(2747)] = 83718, + [SMALL_STATE(2748)] = 83741, + [SMALL_STATE(2749)] = 83764, + [SMALL_STATE(2750)] = 83787, + [SMALL_STATE(2751)] = 83810, + [SMALL_STATE(2752)] = 83833, + [SMALL_STATE(2753)] = 83856, + [SMALL_STATE(2754)] = 83879, + [SMALL_STATE(2755)] = 83902, + [SMALL_STATE(2756)] = 83923, + [SMALL_STATE(2757)] = 83946, + [SMALL_STATE(2758)] = 83969, + [SMALL_STATE(2759)] = 83992, + [SMALL_STATE(2760)] = 84015, + [SMALL_STATE(2761)] = 84038, + [SMALL_STATE(2762)] = 84061, + [SMALL_STATE(2763)] = 84082, + [SMALL_STATE(2764)] = 84105, + [SMALL_STATE(2765)] = 84128, + [SMALL_STATE(2766)] = 84151, + [SMALL_STATE(2767)] = 84174, + [SMALL_STATE(2768)] = 84197, + [SMALL_STATE(2769)] = 84220, + [SMALL_STATE(2770)] = 84243, + [SMALL_STATE(2771)] = 84266, + [SMALL_STATE(2772)] = 84283, + [SMALL_STATE(2773)] = 84306, + [SMALL_STATE(2774)] = 84327, + [SMALL_STATE(2775)] = 84350, + [SMALL_STATE(2776)] = 84373, + [SMALL_STATE(2777)] = 84396, + [SMALL_STATE(2778)] = 84419, + [SMALL_STATE(2779)] = 84440, + [SMALL_STATE(2780)] = 84463, + [SMALL_STATE(2781)] = 84486, + [SMALL_STATE(2782)] = 84509, + [SMALL_STATE(2783)] = 84532, + [SMALL_STATE(2784)] = 84555, + [SMALL_STATE(2785)] = 84578, + [SMALL_STATE(2786)] = 84597, + [SMALL_STATE(2787)] = 84620, + [SMALL_STATE(2788)] = 84641, + [SMALL_STATE(2789)] = 84660, + [SMALL_STATE(2790)] = 84681, + [SMALL_STATE(2791)] = 84704, + [SMALL_STATE(2792)] = 84727, + [SMALL_STATE(2793)] = 84744, + [SMALL_STATE(2794)] = 84763, + [SMALL_STATE(2795)] = 84786, + [SMALL_STATE(2796)] = 84809, + [SMALL_STATE(2797)] = 84832, + [SMALL_STATE(2798)] = 84855, + [SMALL_STATE(2799)] = 84876, + [SMALL_STATE(2800)] = 84899, + [SMALL_STATE(2801)] = 84922, + [SMALL_STATE(2802)] = 84943, + [SMALL_STATE(2803)] = 84964, + [SMALL_STATE(2804)] = 84983, + [SMALL_STATE(2805)] = 85002, + [SMALL_STATE(2806)] = 85021, + [SMALL_STATE(2807)] = 85044, + [SMALL_STATE(2808)] = 85063, + [SMALL_STATE(2809)] = 85082, + [SMALL_STATE(2810)] = 85105, + [SMALL_STATE(2811)] = 85128, + [SMALL_STATE(2812)] = 85151, + [SMALL_STATE(2813)] = 85172, + [SMALL_STATE(2814)] = 85193, + [SMALL_STATE(2815)] = 85216, + [SMALL_STATE(2816)] = 85239, + [SMALL_STATE(2817)] = 85258, + [SMALL_STATE(2818)] = 85281, + [SMALL_STATE(2819)] = 85300, + [SMALL_STATE(2820)] = 85319, + [SMALL_STATE(2821)] = 85342, + [SMALL_STATE(2822)] = 85361, + [SMALL_STATE(2823)] = 85380, + [SMALL_STATE(2824)] = 85403, + [SMALL_STATE(2825)] = 85426, + [SMALL_STATE(2826)] = 85445, + [SMALL_STATE(2827)] = 85464, + [SMALL_STATE(2828)] = 85487, + [SMALL_STATE(2829)] = 85504, + [SMALL_STATE(2830)] = 85527, + [SMALL_STATE(2831)] = 85550, + [SMALL_STATE(2832)] = 85573, + [SMALL_STATE(2833)] = 85596, + [SMALL_STATE(2834)] = 85619, + [SMALL_STATE(2835)] = 85642, + [SMALL_STATE(2836)] = 85665, + [SMALL_STATE(2837)] = 85688, + [SMALL_STATE(2838)] = 85711, + [SMALL_STATE(2839)] = 85734, + [SMALL_STATE(2840)] = 85757, + [SMALL_STATE(2841)] = 85780, + [SMALL_STATE(2842)] = 85803, + [SMALL_STATE(2843)] = 85826, + [SMALL_STATE(2844)] = 85849, + [SMALL_STATE(2845)] = 85870, + [SMALL_STATE(2846)] = 85893, + [SMALL_STATE(2847)] = 85916, + [SMALL_STATE(2848)] = 85939, + [SMALL_STATE(2849)] = 85962, + [SMALL_STATE(2850)] = 85981, + [SMALL_STATE(2851)] = 86004, + [SMALL_STATE(2852)] = 86027, + [SMALL_STATE(2853)] = 86050, + [SMALL_STATE(2854)] = 86073, + [SMALL_STATE(2855)] = 86096, + [SMALL_STATE(2856)] = 86119, + [SMALL_STATE(2857)] = 86142, + [SMALL_STATE(2858)] = 86165, + [SMALL_STATE(2859)] = 86188, + [SMALL_STATE(2860)] = 86209, + [SMALL_STATE(2861)] = 86232, + [SMALL_STATE(2862)] = 86255, + [SMALL_STATE(2863)] = 86278, + [SMALL_STATE(2864)] = 86301, + [SMALL_STATE(2865)] = 86324, + [SMALL_STATE(2866)] = 86345, + [SMALL_STATE(2867)] = 86368, + [SMALL_STATE(2868)] = 86391, + [SMALL_STATE(2869)] = 86412, + [SMALL_STATE(2870)] = 86433, + [SMALL_STATE(2871)] = 86452, + [SMALL_STATE(2872)] = 86471, + [SMALL_STATE(2873)] = 86494, + [SMALL_STATE(2874)] = 86517, + [SMALL_STATE(2875)] = 86540, + [SMALL_STATE(2876)] = 86563, + [SMALL_STATE(2877)] = 86586, + [SMALL_STATE(2878)] = 86607, + [SMALL_STATE(2879)] = 86630, + [SMALL_STATE(2880)] = 86653, + [SMALL_STATE(2881)] = 86676, + [SMALL_STATE(2882)] = 86699, + [SMALL_STATE(2883)] = 86722, + [SMALL_STATE(2884)] = 86741, + [SMALL_STATE(2885)] = 86758, + [SMALL_STATE(2886)] = 86781, + [SMALL_STATE(2887)] = 86804, + [SMALL_STATE(2888)] = 86827, + [SMALL_STATE(2889)] = 86850, + [SMALL_STATE(2890)] = 86871, + [SMALL_STATE(2891)] = 86891, + [SMALL_STATE(2892)] = 86911, + [SMALL_STATE(2893)] = 86931, + [SMALL_STATE(2894)] = 86951, + [SMALL_STATE(2895)] = 86967, + [SMALL_STATE(2896)] = 86987, + [SMALL_STATE(2897)] = 87003, + [SMALL_STATE(2898)] = 87019, + [SMALL_STATE(2899)] = 87039, + [SMALL_STATE(2900)] = 87059, + [SMALL_STATE(2901)] = 87075, + [SMALL_STATE(2902)] = 87095, + [SMALL_STATE(2903)] = 87115, + [SMALL_STATE(2904)] = 87131, + [SMALL_STATE(2905)] = 87151, + [SMALL_STATE(2906)] = 87167, + [SMALL_STATE(2907)] = 87183, + [SMALL_STATE(2908)] = 87203, + [SMALL_STATE(2909)] = 87219, + [SMALL_STATE(2910)] = 87239, + [SMALL_STATE(2911)] = 87259, + [SMALL_STATE(2912)] = 87279, + [SMALL_STATE(2913)] = 87295, + [SMALL_STATE(2914)] = 87315, + [SMALL_STATE(2915)] = 87335, + [SMALL_STATE(2916)] = 87355, + [SMALL_STATE(2917)] = 87375, + [SMALL_STATE(2918)] = 87395, + [SMALL_STATE(2919)] = 87411, + [SMALL_STATE(2920)] = 87431, + [SMALL_STATE(2921)] = 87451, + [SMALL_STATE(2922)] = 87471, + [SMALL_STATE(2923)] = 87491, + [SMALL_STATE(2924)] = 87507, + [SMALL_STATE(2925)] = 87527, + [SMALL_STATE(2926)] = 87547, + [SMALL_STATE(2927)] = 87567, + [SMALL_STATE(2928)] = 87587, + [SMALL_STATE(2929)] = 87607, + [SMALL_STATE(2930)] = 87625, + [SMALL_STATE(2931)] = 87645, + [SMALL_STATE(2932)] = 87663, + [SMALL_STATE(2933)] = 87683, + [SMALL_STATE(2934)] = 87703, + [SMALL_STATE(2935)] = 87723, + [SMALL_STATE(2936)] = 87743, + [SMALL_STATE(2937)] = 87763, + [SMALL_STATE(2938)] = 87783, + [SMALL_STATE(2939)] = 87803, + [SMALL_STATE(2940)] = 87823, + [SMALL_STATE(2941)] = 87841, + [SMALL_STATE(2942)] = 87861, + [SMALL_STATE(2943)] = 87877, + [SMALL_STATE(2944)] = 87893, + [SMALL_STATE(2945)] = 87913, + [SMALL_STATE(2946)] = 87929, + [SMALL_STATE(2947)] = 87945, + [SMALL_STATE(2948)] = 87965, + [SMALL_STATE(2949)] = 87981, + [SMALL_STATE(2950)] = 88001, + [SMALL_STATE(2951)] = 88017, + [SMALL_STATE(2952)] = 88035, + [SMALL_STATE(2953)] = 88055, + [SMALL_STATE(2954)] = 88075, + [SMALL_STATE(2955)] = 88091, + [SMALL_STATE(2956)] = 88111, + [SMALL_STATE(2957)] = 88129, + [SMALL_STATE(2958)] = 88145, + [SMALL_STATE(2959)] = 88165, + [SMALL_STATE(2960)] = 88185, + [SMALL_STATE(2961)] = 88203, + [SMALL_STATE(2962)] = 88223, + [SMALL_STATE(2963)] = 88239, + [SMALL_STATE(2964)] = 88259, + [SMALL_STATE(2965)] = 88279, + [SMALL_STATE(2966)] = 88299, + [SMALL_STATE(2967)] = 88319, + [SMALL_STATE(2968)] = 88335, + [SMALL_STATE(2969)] = 88351, + [SMALL_STATE(2970)] = 88371, + [SMALL_STATE(2971)] = 88387, + [SMALL_STATE(2972)] = 88403, + [SMALL_STATE(2973)] = 88423, + [SMALL_STATE(2974)] = 88443, + [SMALL_STATE(2975)] = 88463, + [SMALL_STATE(2976)] = 88483, + [SMALL_STATE(2977)] = 88503, + [SMALL_STATE(2978)] = 88523, + [SMALL_STATE(2979)] = 88543, + [SMALL_STATE(2980)] = 88563, + [SMALL_STATE(2981)] = 88579, + [SMALL_STATE(2982)] = 88595, + [SMALL_STATE(2983)] = 88613, + [SMALL_STATE(2984)] = 88633, + [SMALL_STATE(2985)] = 88653, + [SMALL_STATE(2986)] = 88673, + [SMALL_STATE(2987)] = 88693, + [SMALL_STATE(2988)] = 88713, + [SMALL_STATE(2989)] = 88733, + [SMALL_STATE(2990)] = 88749, + [SMALL_STATE(2991)] = 88767, + [SMALL_STATE(2992)] = 88787, + [SMALL_STATE(2993)] = 88807, + [SMALL_STATE(2994)] = 88825, + [SMALL_STATE(2995)] = 88845, + [SMALL_STATE(2996)] = 88861, + [SMALL_STATE(2997)] = 88881, + [SMALL_STATE(2998)] = 88897, + [SMALL_STATE(2999)] = 88917, + [SMALL_STATE(3000)] = 88937, + [SMALL_STATE(3001)] = 88955, + [SMALL_STATE(3002)] = 88975, + [SMALL_STATE(3003)] = 88995, + [SMALL_STATE(3004)] = 89015, + [SMALL_STATE(3005)] = 89035, + [SMALL_STATE(3006)] = 89055, + [SMALL_STATE(3007)] = 89075, + [SMALL_STATE(3008)] = 89093, + [SMALL_STATE(3009)] = 89113, + [SMALL_STATE(3010)] = 89133, + [SMALL_STATE(3011)] = 89149, + [SMALL_STATE(3012)] = 89169, + [SMALL_STATE(3013)] = 89189, + [SMALL_STATE(3014)] = 89207, + [SMALL_STATE(3015)] = 89225, + [SMALL_STATE(3016)] = 89245, + [SMALL_STATE(3017)] = 89265, + [SMALL_STATE(3018)] = 89285, + [SMALL_STATE(3019)] = 89303, + [SMALL_STATE(3020)] = 89321, + [SMALL_STATE(3021)] = 89341, + [SMALL_STATE(3022)] = 89361, + [SMALL_STATE(3023)] = 89381, + [SMALL_STATE(3024)] = 89397, + [SMALL_STATE(3025)] = 89417, + [SMALL_STATE(3026)] = 89435, + [SMALL_STATE(3027)] = 89453, + [SMALL_STATE(3028)] = 89473, + [SMALL_STATE(3029)] = 89489, + [SMALL_STATE(3030)] = 89507, + [SMALL_STATE(3031)] = 89527, + [SMALL_STATE(3032)] = 89545, + [SMALL_STATE(3033)] = 89565, + [SMALL_STATE(3034)] = 89585, + [SMALL_STATE(3035)] = 89605, + [SMALL_STATE(3036)] = 89625, + [SMALL_STATE(3037)] = 89645, + [SMALL_STATE(3038)] = 89665, + [SMALL_STATE(3039)] = 89685, + [SMALL_STATE(3040)] = 89703, + [SMALL_STATE(3041)] = 89723, + [SMALL_STATE(3042)] = 89743, + [SMALL_STATE(3043)] = 89763, + [SMALL_STATE(3044)] = 89783, + [SMALL_STATE(3045)] = 89801, + [SMALL_STATE(3046)] = 89821, + [SMALL_STATE(3047)] = 89841, + [SMALL_STATE(3048)] = 89861, + [SMALL_STATE(3049)] = 89881, + [SMALL_STATE(3050)] = 89901, + [SMALL_STATE(3051)] = 89921, + [SMALL_STATE(3052)] = 89941, + [SMALL_STATE(3053)] = 89961, + [SMALL_STATE(3054)] = 89981, + [SMALL_STATE(3055)] = 90001, + [SMALL_STATE(3056)] = 90021, + [SMALL_STATE(3057)] = 90041, + [SMALL_STATE(3058)] = 90061, + [SMALL_STATE(3059)] = 90081, + [SMALL_STATE(3060)] = 90101, + [SMALL_STATE(3061)] = 90121, + [SMALL_STATE(3062)] = 90141, + [SMALL_STATE(3063)] = 90161, + [SMALL_STATE(3064)] = 90181, + [SMALL_STATE(3065)] = 90197, + [SMALL_STATE(3066)] = 90213, + [SMALL_STATE(3067)] = 90233, + [SMALL_STATE(3068)] = 90253, + [SMALL_STATE(3069)] = 90273, + [SMALL_STATE(3070)] = 90293, + [SMALL_STATE(3071)] = 90313, + [SMALL_STATE(3072)] = 90333, + [SMALL_STATE(3073)] = 90353, + [SMALL_STATE(3074)] = 90369, + [SMALL_STATE(3075)] = 90385, + [SMALL_STATE(3076)] = 90405, + [SMALL_STATE(3077)] = 90425, + [SMALL_STATE(3078)] = 90445, + [SMALL_STATE(3079)] = 90465, + [SMALL_STATE(3080)] = 90481, + [SMALL_STATE(3081)] = 90497, + [SMALL_STATE(3082)] = 90513, + [SMALL_STATE(3083)] = 90533, + [SMALL_STATE(3084)] = 90553, + [SMALL_STATE(3085)] = 90573, + [SMALL_STATE(3086)] = 90593, + [SMALL_STATE(3087)] = 90611, + [SMALL_STATE(3088)] = 90629, + [SMALL_STATE(3089)] = 90647, + [SMALL_STATE(3090)] = 90665, + [SMALL_STATE(3091)] = 90685, + [SMALL_STATE(3092)] = 90705, + [SMALL_STATE(3093)] = 90725, + [SMALL_STATE(3094)] = 90745, + [SMALL_STATE(3095)] = 90765, + [SMALL_STATE(3096)] = 90781, + [SMALL_STATE(3097)] = 90801, + [SMALL_STATE(3098)] = 90821, + [SMALL_STATE(3099)] = 90839, + [SMALL_STATE(3100)] = 90855, + [SMALL_STATE(3101)] = 90873, + [SMALL_STATE(3102)] = 90889, + [SMALL_STATE(3103)] = 90909, + [SMALL_STATE(3104)] = 90929, + [SMALL_STATE(3105)] = 90949, + [SMALL_STATE(3106)] = 90969, + [SMALL_STATE(3107)] = 90989, + [SMALL_STATE(3108)] = 91005, + [SMALL_STATE(3109)] = 91025, + [SMALL_STATE(3110)] = 91045, + [SMALL_STATE(3111)] = 91065, + [SMALL_STATE(3112)] = 91085, + [SMALL_STATE(3113)] = 91101, + [SMALL_STATE(3114)] = 91121, + [SMALL_STATE(3115)] = 91137, + [SMALL_STATE(3116)] = 91155, + [SMALL_STATE(3117)] = 91175, + [SMALL_STATE(3118)] = 91195, + [SMALL_STATE(3119)] = 91213, + [SMALL_STATE(3120)] = 91229, + [SMALL_STATE(3121)] = 91249, + [SMALL_STATE(3122)] = 91265, + [SMALL_STATE(3123)] = 91281, + [SMALL_STATE(3124)] = 91301, + [SMALL_STATE(3125)] = 91321, + [SMALL_STATE(3126)] = 91341, + [SMALL_STATE(3127)] = 91357, + [SMALL_STATE(3128)] = 91377, + [SMALL_STATE(3129)] = 91397, + [SMALL_STATE(3130)] = 91415, + [SMALL_STATE(3131)] = 91431, + [SMALL_STATE(3132)] = 91451, + [SMALL_STATE(3133)] = 91471, + [SMALL_STATE(3134)] = 91487, + [SMALL_STATE(3135)] = 91503, + [SMALL_STATE(3136)] = 91523, + [SMALL_STATE(3137)] = 91541, + [SMALL_STATE(3138)] = 91561, + [SMALL_STATE(3139)] = 91581, + [SMALL_STATE(3140)] = 91599, + [SMALL_STATE(3141)] = 91619, + [SMALL_STATE(3142)] = 91639, + [SMALL_STATE(3143)] = 91659, + [SMALL_STATE(3144)] = 91679, + [SMALL_STATE(3145)] = 91699, + [SMALL_STATE(3146)] = 91719, + [SMALL_STATE(3147)] = 91737, + [SMALL_STATE(3148)] = 91757, + [SMALL_STATE(3149)] = 91775, + [SMALL_STATE(3150)] = 91795, + [SMALL_STATE(3151)] = 91815, + [SMALL_STATE(3152)] = 91835, + [SMALL_STATE(3153)] = 91853, + [SMALL_STATE(3154)] = 91873, + [SMALL_STATE(3155)] = 91893, + [SMALL_STATE(3156)] = 91913, + [SMALL_STATE(3157)] = 91933, + [SMALL_STATE(3158)] = 91953, + [SMALL_STATE(3159)] = 91973, + [SMALL_STATE(3160)] = 91993, + [SMALL_STATE(3161)] = 92013, + [SMALL_STATE(3162)] = 92033, + [SMALL_STATE(3163)] = 92053, + [SMALL_STATE(3164)] = 92073, + [SMALL_STATE(3165)] = 92093, + [SMALL_STATE(3166)] = 92113, + [SMALL_STATE(3167)] = 92133, + [SMALL_STATE(3168)] = 92153, + [SMALL_STATE(3169)] = 92171, + [SMALL_STATE(3170)] = 92191, + [SMALL_STATE(3171)] = 92211, + [SMALL_STATE(3172)] = 92231, + [SMALL_STATE(3173)] = 92249, + [SMALL_STATE(3174)] = 92269, + [SMALL_STATE(3175)] = 92287, + [SMALL_STATE(3176)] = 92307, + [SMALL_STATE(3177)] = 92327, + [SMALL_STATE(3178)] = 92347, + [SMALL_STATE(3179)] = 92367, + [SMALL_STATE(3180)] = 92387, + [SMALL_STATE(3181)] = 92405, + [SMALL_STATE(3182)] = 92425, + [SMALL_STATE(3183)] = 92445, + [SMALL_STATE(3184)] = 92465, + [SMALL_STATE(3185)] = 92485, + [SMALL_STATE(3186)] = 92501, + [SMALL_STATE(3187)] = 92521, + [SMALL_STATE(3188)] = 92537, + [SMALL_STATE(3189)] = 92557, + [SMALL_STATE(3190)] = 92577, + [SMALL_STATE(3191)] = 92597, + [SMALL_STATE(3192)] = 92617, + [SMALL_STATE(3193)] = 92637, + [SMALL_STATE(3194)] = 92657, + [SMALL_STATE(3195)] = 92677, + [SMALL_STATE(3196)] = 92693, + [SMALL_STATE(3197)] = 92713, + [SMALL_STATE(3198)] = 92733, + [SMALL_STATE(3199)] = 92751, + [SMALL_STATE(3200)] = 92767, + [SMALL_STATE(3201)] = 92787, + [SMALL_STATE(3202)] = 92807, + [SMALL_STATE(3203)] = 92825, + [SMALL_STATE(3204)] = 92842, + [SMALL_STATE(3205)] = 92859, + [SMALL_STATE(3206)] = 92876, + [SMALL_STATE(3207)] = 92891, + [SMALL_STATE(3208)] = 92908, + [SMALL_STATE(3209)] = 92925, + [SMALL_STATE(3210)] = 92942, + [SMALL_STATE(3211)] = 92959, + [SMALL_STATE(3212)] = 92974, + [SMALL_STATE(3213)] = 92991, + [SMALL_STATE(3214)] = 93006, + [SMALL_STATE(3215)] = 93023, + [SMALL_STATE(3216)] = 93040, + [SMALL_STATE(3217)] = 93057, + [SMALL_STATE(3218)] = 93074, + [SMALL_STATE(3219)] = 93091, + [SMALL_STATE(3220)] = 93106, + [SMALL_STATE(3221)] = 93123, + [SMALL_STATE(3222)] = 93140, + [SMALL_STATE(3223)] = 93155, + [SMALL_STATE(3224)] = 93172, + [SMALL_STATE(3225)] = 93189, + [SMALL_STATE(3226)] = 93206, + [SMALL_STATE(3227)] = 93223, + [SMALL_STATE(3228)] = 93238, + [SMALL_STATE(3229)] = 93255, + [SMALL_STATE(3230)] = 93270, + [SMALL_STATE(3231)] = 93287, + [SMALL_STATE(3232)] = 93304, + [SMALL_STATE(3233)] = 93319, + [SMALL_STATE(3234)] = 93336, + [SMALL_STATE(3235)] = 93353, + [SMALL_STATE(3236)] = 93370, + [SMALL_STATE(3237)] = 93387, + [SMALL_STATE(3238)] = 93404, + [SMALL_STATE(3239)] = 93421, + [SMALL_STATE(3240)] = 93436, + [SMALL_STATE(3241)] = 93453, + [SMALL_STATE(3242)] = 93470, + [SMALL_STATE(3243)] = 93487, + [SMALL_STATE(3244)] = 93504, + [SMALL_STATE(3245)] = 93521, + [SMALL_STATE(3246)] = 93538, + [SMALL_STATE(3247)] = 93555, + [SMALL_STATE(3248)] = 93572, + [SMALL_STATE(3249)] = 93589, + [SMALL_STATE(3250)] = 93604, + [SMALL_STATE(3251)] = 93621, + [SMALL_STATE(3252)] = 93638, + [SMALL_STATE(3253)] = 93655, + [SMALL_STATE(3254)] = 93670, + [SMALL_STATE(3255)] = 93687, + [SMALL_STATE(3256)] = 93704, + [SMALL_STATE(3257)] = 93721, + [SMALL_STATE(3258)] = 93736, + [SMALL_STATE(3259)] = 93753, + [SMALL_STATE(3260)] = 93770, + [SMALL_STATE(3261)] = 93785, + [SMALL_STATE(3262)] = 93802, + [SMALL_STATE(3263)] = 93819, + [SMALL_STATE(3264)] = 93836, + [SMALL_STATE(3265)] = 93853, + [SMALL_STATE(3266)] = 93870, + [SMALL_STATE(3267)] = 93887, + [SMALL_STATE(3268)] = 93902, + [SMALL_STATE(3269)] = 93919, + [SMALL_STATE(3270)] = 93936, + [SMALL_STATE(3271)] = 93953, + [SMALL_STATE(3272)] = 93970, + [SMALL_STATE(3273)] = 93985, + [SMALL_STATE(3274)] = 94002, + [SMALL_STATE(3275)] = 94019, + [SMALL_STATE(3276)] = 94036, + [SMALL_STATE(3277)] = 94053, + [SMALL_STATE(3278)] = 94070, + [SMALL_STATE(3279)] = 94087, + [SMALL_STATE(3280)] = 94104, + [SMALL_STATE(3281)] = 94121, + [SMALL_STATE(3282)] = 94138, + [SMALL_STATE(3283)] = 94155, + [SMALL_STATE(3284)] = 94172, + [SMALL_STATE(3285)] = 94189, + [SMALL_STATE(3286)] = 94204, + [SMALL_STATE(3287)] = 94221, + [SMALL_STATE(3288)] = 94236, + [SMALL_STATE(3289)] = 94253, + [SMALL_STATE(3290)] = 94270, + [SMALL_STATE(3291)] = 94287, + [SMALL_STATE(3292)] = 94304, + [SMALL_STATE(3293)] = 94321, + [SMALL_STATE(3294)] = 94336, + [SMALL_STATE(3295)] = 94353, + [SMALL_STATE(3296)] = 94370, + [SMALL_STATE(3297)] = 94385, + [SMALL_STATE(3298)] = 94400, + [SMALL_STATE(3299)] = 94417, + [SMALL_STATE(3300)] = 94434, + [SMALL_STATE(3301)] = 94451, + [SMALL_STATE(3302)] = 94468, + [SMALL_STATE(3303)] = 94483, + [SMALL_STATE(3304)] = 94500, + [SMALL_STATE(3305)] = 94517, + [SMALL_STATE(3306)] = 94534, + [SMALL_STATE(3307)] = 94551, + [SMALL_STATE(3308)] = 94568, + [SMALL_STATE(3309)] = 94583, + [SMALL_STATE(3310)] = 94600, + [SMALL_STATE(3311)] = 94617, + [SMALL_STATE(3312)] = 94632, + [SMALL_STATE(3313)] = 94649, + [SMALL_STATE(3314)] = 94666, + [SMALL_STATE(3315)] = 94681, + [SMALL_STATE(3316)] = 94698, + [SMALL_STATE(3317)] = 94715, + [SMALL_STATE(3318)] = 94732, + [SMALL_STATE(3319)] = 94749, + [SMALL_STATE(3320)] = 94766, + [SMALL_STATE(3321)] = 94783, + [SMALL_STATE(3322)] = 94800, + [SMALL_STATE(3323)] = 94817, + [SMALL_STATE(3324)] = 94834, + [SMALL_STATE(3325)] = 94851, + [SMALL_STATE(3326)] = 94868, + [SMALL_STATE(3327)] = 94885, + [SMALL_STATE(3328)] = 94902, + [SMALL_STATE(3329)] = 94919, + [SMALL_STATE(3330)] = 94936, + [SMALL_STATE(3331)] = 94953, + [SMALL_STATE(3332)] = 94970, + [SMALL_STATE(3333)] = 94987, + [SMALL_STATE(3334)] = 95004, + [SMALL_STATE(3335)] = 95021, + [SMALL_STATE(3336)] = 95038, + [SMALL_STATE(3337)] = 95055, + [SMALL_STATE(3338)] = 95072, + [SMALL_STATE(3339)] = 95089, + [SMALL_STATE(3340)] = 95106, + [SMALL_STATE(3341)] = 95123, + [SMALL_STATE(3342)] = 95140, + [SMALL_STATE(3343)] = 95155, + [SMALL_STATE(3344)] = 95172, + [SMALL_STATE(3345)] = 95189, + [SMALL_STATE(3346)] = 95204, + [SMALL_STATE(3347)] = 95221, + [SMALL_STATE(3348)] = 95238, + [SMALL_STATE(3349)] = 95255, + [SMALL_STATE(3350)] = 95272, + [SMALL_STATE(3351)] = 95289, + [SMALL_STATE(3352)] = 95304, + [SMALL_STATE(3353)] = 95321, + [SMALL_STATE(3354)] = 95338, + [SMALL_STATE(3355)] = 95355, + [SMALL_STATE(3356)] = 95372, + [SMALL_STATE(3357)] = 95387, + [SMALL_STATE(3358)] = 95404, + [SMALL_STATE(3359)] = 95421, + [SMALL_STATE(3360)] = 95438, + [SMALL_STATE(3361)] = 95455, + [SMALL_STATE(3362)] = 95472, + [SMALL_STATE(3363)] = 95489, + [SMALL_STATE(3364)] = 95504, + [SMALL_STATE(3365)] = 95521, + [SMALL_STATE(3366)] = 95538, + [SMALL_STATE(3367)] = 95555, + [SMALL_STATE(3368)] = 95572, + [SMALL_STATE(3369)] = 95589, + [SMALL_STATE(3370)] = 95606, + [SMALL_STATE(3371)] = 95623, + [SMALL_STATE(3372)] = 95640, + [SMALL_STATE(3373)] = 95655, + [SMALL_STATE(3374)] = 95672, + [SMALL_STATE(3375)] = 95689, + [SMALL_STATE(3376)] = 95704, + [SMALL_STATE(3377)] = 95721, + [SMALL_STATE(3378)] = 95738, + [SMALL_STATE(3379)] = 95755, + [SMALL_STATE(3380)] = 95772, + [SMALL_STATE(3381)] = 95789, + [SMALL_STATE(3382)] = 95806, + [SMALL_STATE(3383)] = 95823, + [SMALL_STATE(3384)] = 95840, + [SMALL_STATE(3385)] = 95857, + [SMALL_STATE(3386)] = 95874, + [SMALL_STATE(3387)] = 95891, + [SMALL_STATE(3388)] = 95906, + [SMALL_STATE(3389)] = 95921, + [SMALL_STATE(3390)] = 95938, + [SMALL_STATE(3391)] = 95955, + [SMALL_STATE(3392)] = 95972, + [SMALL_STATE(3393)] = 95989, + [SMALL_STATE(3394)] = 96004, + [SMALL_STATE(3395)] = 96019, + [SMALL_STATE(3396)] = 96034, + [SMALL_STATE(3397)] = 96051, + [SMALL_STATE(3398)] = 96068, + [SMALL_STATE(3399)] = 96085, + [SMALL_STATE(3400)] = 96102, + [SMALL_STATE(3401)] = 96119, + [SMALL_STATE(3402)] = 96136, + [SMALL_STATE(3403)] = 96153, + [SMALL_STATE(3404)] = 96170, + [SMALL_STATE(3405)] = 96187, + [SMALL_STATE(3406)] = 96204, + [SMALL_STATE(3407)] = 96221, + [SMALL_STATE(3408)] = 96238, + [SMALL_STATE(3409)] = 96255, + [SMALL_STATE(3410)] = 96272, + [SMALL_STATE(3411)] = 96289, + [SMALL_STATE(3412)] = 96306, + [SMALL_STATE(3413)] = 96323, + [SMALL_STATE(3414)] = 96340, + [SMALL_STATE(3415)] = 96357, + [SMALL_STATE(3416)] = 96374, + [SMALL_STATE(3417)] = 96389, + [SMALL_STATE(3418)] = 96406, + [SMALL_STATE(3419)] = 96423, + [SMALL_STATE(3420)] = 96440, + [SMALL_STATE(3421)] = 96455, + [SMALL_STATE(3422)] = 96472, + [SMALL_STATE(3423)] = 96489, + [SMALL_STATE(3424)] = 96506, + [SMALL_STATE(3425)] = 96521, + [SMALL_STATE(3426)] = 96538, + [SMALL_STATE(3427)] = 96555, + [SMALL_STATE(3428)] = 96572, + [SMALL_STATE(3429)] = 96589, + [SMALL_STATE(3430)] = 96606, + [SMALL_STATE(3431)] = 96623, + [SMALL_STATE(3432)] = 96640, + [SMALL_STATE(3433)] = 96657, + [SMALL_STATE(3434)] = 96674, + [SMALL_STATE(3435)] = 96691, + [SMALL_STATE(3436)] = 96708, + [SMALL_STATE(3437)] = 96723, + [SMALL_STATE(3438)] = 96740, + [SMALL_STATE(3439)] = 96757, + [SMALL_STATE(3440)] = 96772, + [SMALL_STATE(3441)] = 96789, + [SMALL_STATE(3442)] = 96806, + [SMALL_STATE(3443)] = 96821, + [SMALL_STATE(3444)] = 96838, + [SMALL_STATE(3445)] = 96855, + [SMALL_STATE(3446)] = 96872, + [SMALL_STATE(3447)] = 96889, + [SMALL_STATE(3448)] = 96906, + [SMALL_STATE(3449)] = 96923, + [SMALL_STATE(3450)] = 96940, + [SMALL_STATE(3451)] = 96957, + [SMALL_STATE(3452)] = 96974, + [SMALL_STATE(3453)] = 96991, + [SMALL_STATE(3454)] = 97008, + [SMALL_STATE(3455)] = 97025, + [SMALL_STATE(3456)] = 97040, + [SMALL_STATE(3457)] = 97057, + [SMALL_STATE(3458)] = 97074, + [SMALL_STATE(3459)] = 97089, + [SMALL_STATE(3460)] = 97106, + [SMALL_STATE(3461)] = 97123, + [SMALL_STATE(3462)] = 97140, + [SMALL_STATE(3463)] = 97155, + [SMALL_STATE(3464)] = 97172, + [SMALL_STATE(3465)] = 97189, + [SMALL_STATE(3466)] = 97206, + [SMALL_STATE(3467)] = 97221, + [SMALL_STATE(3468)] = 97238, + [SMALL_STATE(3469)] = 97255, + [SMALL_STATE(3470)] = 97272, + [SMALL_STATE(3471)] = 97289, + [SMALL_STATE(3472)] = 97306, + [SMALL_STATE(3473)] = 97323, + [SMALL_STATE(3474)] = 97340, + [SMALL_STATE(3475)] = 97355, + [SMALL_STATE(3476)] = 97372, + [SMALL_STATE(3477)] = 97389, + [SMALL_STATE(3478)] = 97404, + [SMALL_STATE(3479)] = 97421, + [SMALL_STATE(3480)] = 97438, + [SMALL_STATE(3481)] = 97453, + [SMALL_STATE(3482)] = 97470, + [SMALL_STATE(3483)] = 97487, + [SMALL_STATE(3484)] = 97504, + [SMALL_STATE(3485)] = 97521, + [SMALL_STATE(3486)] = 97538, + [SMALL_STATE(3487)] = 97555, + [SMALL_STATE(3488)] = 97572, + [SMALL_STATE(3489)] = 97589, + [SMALL_STATE(3490)] = 97606, + [SMALL_STATE(3491)] = 97623, + [SMALL_STATE(3492)] = 97640, + [SMALL_STATE(3493)] = 97657, + [SMALL_STATE(3494)] = 97674, + [SMALL_STATE(3495)] = 97689, + [SMALL_STATE(3496)] = 97704, + [SMALL_STATE(3497)] = 97721, + [SMALL_STATE(3498)] = 97738, + [SMALL_STATE(3499)] = 97753, + [SMALL_STATE(3500)] = 97770, + [SMALL_STATE(3501)] = 97787, + [SMALL_STATE(3502)] = 97804, + [SMALL_STATE(3503)] = 97821, + [SMALL_STATE(3504)] = 97838, + [SMALL_STATE(3505)] = 97855, + [SMALL_STATE(3506)] = 97870, + [SMALL_STATE(3507)] = 97885, + [SMALL_STATE(3508)] = 97899, + [SMALL_STATE(3509)] = 97913, + [SMALL_STATE(3510)] = 97927, + [SMALL_STATE(3511)] = 97941, + [SMALL_STATE(3512)] = 97955, + [SMALL_STATE(3513)] = 97969, + [SMALL_STATE(3514)] = 97983, + [SMALL_STATE(3515)] = 97997, + [SMALL_STATE(3516)] = 98011, + [SMALL_STATE(3517)] = 98025, + [SMALL_STATE(3518)] = 98039, + [SMALL_STATE(3519)] = 98053, + [SMALL_STATE(3520)] = 98067, + [SMALL_STATE(3521)] = 98081, + [SMALL_STATE(3522)] = 98095, + [SMALL_STATE(3523)] = 98109, + [SMALL_STATE(3524)] = 98123, + [SMALL_STATE(3525)] = 98137, + [SMALL_STATE(3526)] = 98151, + [SMALL_STATE(3527)] = 98165, + [SMALL_STATE(3528)] = 98179, + [SMALL_STATE(3529)] = 98193, + [SMALL_STATE(3530)] = 98207, + [SMALL_STATE(3531)] = 98221, + [SMALL_STATE(3532)] = 98235, + [SMALL_STATE(3533)] = 98249, + [SMALL_STATE(3534)] = 98263, + [SMALL_STATE(3535)] = 98277, + [SMALL_STATE(3536)] = 98291, + [SMALL_STATE(3537)] = 98305, + [SMALL_STATE(3538)] = 98319, + [SMALL_STATE(3539)] = 98333, + [SMALL_STATE(3540)] = 98347, + [SMALL_STATE(3541)] = 98361, + [SMALL_STATE(3542)] = 98375, + [SMALL_STATE(3543)] = 98389, + [SMALL_STATE(3544)] = 98403, + [SMALL_STATE(3545)] = 98417, + [SMALL_STATE(3546)] = 98431, + [SMALL_STATE(3547)] = 98445, + [SMALL_STATE(3548)] = 98459, + [SMALL_STATE(3549)] = 98473, + [SMALL_STATE(3550)] = 98487, + [SMALL_STATE(3551)] = 98501, + [SMALL_STATE(3552)] = 98515, + [SMALL_STATE(3553)] = 98529, + [SMALL_STATE(3554)] = 98543, + [SMALL_STATE(3555)] = 98557, + [SMALL_STATE(3556)] = 98571, + [SMALL_STATE(3557)] = 98585, + [SMALL_STATE(3558)] = 98599, + [SMALL_STATE(3559)] = 98613, + [SMALL_STATE(3560)] = 98627, + [SMALL_STATE(3561)] = 98641, + [SMALL_STATE(3562)] = 98655, + [SMALL_STATE(3563)] = 98669, + [SMALL_STATE(3564)] = 98683, + [SMALL_STATE(3565)] = 98697, + [SMALL_STATE(3566)] = 98711, + [SMALL_STATE(3567)] = 98725, + [SMALL_STATE(3568)] = 98739, + [SMALL_STATE(3569)] = 98753, + [SMALL_STATE(3570)] = 98767, + [SMALL_STATE(3571)] = 98781, + [SMALL_STATE(3572)] = 98795, + [SMALL_STATE(3573)] = 98809, + [SMALL_STATE(3574)] = 98823, + [SMALL_STATE(3575)] = 98837, + [SMALL_STATE(3576)] = 98851, + [SMALL_STATE(3577)] = 98865, + [SMALL_STATE(3578)] = 98879, + [SMALL_STATE(3579)] = 98893, + [SMALL_STATE(3580)] = 98907, + [SMALL_STATE(3581)] = 98921, + [SMALL_STATE(3582)] = 98935, + [SMALL_STATE(3583)] = 98949, + [SMALL_STATE(3584)] = 98963, + [SMALL_STATE(3585)] = 98977, + [SMALL_STATE(3586)] = 98991, + [SMALL_STATE(3587)] = 99005, + [SMALL_STATE(3588)] = 99019, + [SMALL_STATE(3589)] = 99033, + [SMALL_STATE(3590)] = 99047, + [SMALL_STATE(3591)] = 99061, + [SMALL_STATE(3592)] = 99075, + [SMALL_STATE(3593)] = 99089, + [SMALL_STATE(3594)] = 99103, + [SMALL_STATE(3595)] = 99117, + [SMALL_STATE(3596)] = 99131, + [SMALL_STATE(3597)] = 99145, + [SMALL_STATE(3598)] = 99159, + [SMALL_STATE(3599)] = 99173, + [SMALL_STATE(3600)] = 99187, + [SMALL_STATE(3601)] = 99201, + [SMALL_STATE(3602)] = 99215, + [SMALL_STATE(3603)] = 99229, + [SMALL_STATE(3604)] = 99243, + [SMALL_STATE(3605)] = 99257, + [SMALL_STATE(3606)] = 99271, + [SMALL_STATE(3607)] = 99285, + [SMALL_STATE(3608)] = 99299, + [SMALL_STATE(3609)] = 99313, + [SMALL_STATE(3610)] = 99327, + [SMALL_STATE(3611)] = 99341, + [SMALL_STATE(3612)] = 99355, + [SMALL_STATE(3613)] = 99369, + [SMALL_STATE(3614)] = 99383, + [SMALL_STATE(3615)] = 99397, + [SMALL_STATE(3616)] = 99411, + [SMALL_STATE(3617)] = 99425, + [SMALL_STATE(3618)] = 99439, + [SMALL_STATE(3619)] = 99453, + [SMALL_STATE(3620)] = 99467, + [SMALL_STATE(3621)] = 99481, + [SMALL_STATE(3622)] = 99495, + [SMALL_STATE(3623)] = 99509, + [SMALL_STATE(3624)] = 99523, + [SMALL_STATE(3625)] = 99537, + [SMALL_STATE(3626)] = 99551, + [SMALL_STATE(3627)] = 99565, + [SMALL_STATE(3628)] = 99579, + [SMALL_STATE(3629)] = 99593, + [SMALL_STATE(3630)] = 99607, + [SMALL_STATE(3631)] = 99621, + [SMALL_STATE(3632)] = 99635, + [SMALL_STATE(3633)] = 99649, + [SMALL_STATE(3634)] = 99663, + [SMALL_STATE(3635)] = 99677, + [SMALL_STATE(3636)] = 99691, + [SMALL_STATE(3637)] = 99705, + [SMALL_STATE(3638)] = 99719, + [SMALL_STATE(3639)] = 99733, + [SMALL_STATE(3640)] = 99747, + [SMALL_STATE(3641)] = 99761, + [SMALL_STATE(3642)] = 99775, + [SMALL_STATE(3643)] = 99789, + [SMALL_STATE(3644)] = 99803, + [SMALL_STATE(3645)] = 99817, + [SMALL_STATE(3646)] = 99831, + [SMALL_STATE(3647)] = 99845, + [SMALL_STATE(3648)] = 99859, + [SMALL_STATE(3649)] = 99873, + [SMALL_STATE(3650)] = 99887, + [SMALL_STATE(3651)] = 99901, + [SMALL_STATE(3652)] = 99915, + [SMALL_STATE(3653)] = 99929, + [SMALL_STATE(3654)] = 99943, + [SMALL_STATE(3655)] = 99957, + [SMALL_STATE(3656)] = 99971, + [SMALL_STATE(3657)] = 99985, + [SMALL_STATE(3658)] = 99999, + [SMALL_STATE(3659)] = 100013, + [SMALL_STATE(3660)] = 100027, + [SMALL_STATE(3661)] = 100041, + [SMALL_STATE(3662)] = 100055, + [SMALL_STATE(3663)] = 100069, + [SMALL_STATE(3664)] = 100083, + [SMALL_STATE(3665)] = 100097, + [SMALL_STATE(3666)] = 100111, + [SMALL_STATE(3667)] = 100125, + [SMALL_STATE(3668)] = 100139, + [SMALL_STATE(3669)] = 100153, + [SMALL_STATE(3670)] = 100167, + [SMALL_STATE(3671)] = 100181, + [SMALL_STATE(3672)] = 100195, + [SMALL_STATE(3673)] = 100209, + [SMALL_STATE(3674)] = 100223, + [SMALL_STATE(3675)] = 100237, + [SMALL_STATE(3676)] = 100251, + [SMALL_STATE(3677)] = 100265, + [SMALL_STATE(3678)] = 100279, + [SMALL_STATE(3679)] = 100293, + [SMALL_STATE(3680)] = 100307, + [SMALL_STATE(3681)] = 100321, + [SMALL_STATE(3682)] = 100335, + [SMALL_STATE(3683)] = 100349, + [SMALL_STATE(3684)] = 100363, + [SMALL_STATE(3685)] = 100377, + [SMALL_STATE(3686)] = 100391, + [SMALL_STATE(3687)] = 100405, + [SMALL_STATE(3688)] = 100419, + [SMALL_STATE(3689)] = 100433, + [SMALL_STATE(3690)] = 100447, + [SMALL_STATE(3691)] = 100461, + [SMALL_STATE(3692)] = 100475, + [SMALL_STATE(3693)] = 100489, + [SMALL_STATE(3694)] = 100503, + [SMALL_STATE(3695)] = 100517, + [SMALL_STATE(3696)] = 100531, + [SMALL_STATE(3697)] = 100545, + [SMALL_STATE(3698)] = 100559, + [SMALL_STATE(3699)] = 100573, + [SMALL_STATE(3700)] = 100587, + [SMALL_STATE(3701)] = 100601, + [SMALL_STATE(3702)] = 100615, + [SMALL_STATE(3703)] = 100629, + [SMALL_STATE(3704)] = 100643, + [SMALL_STATE(3705)] = 100657, + [SMALL_STATE(3706)] = 100671, + [SMALL_STATE(3707)] = 100685, + [SMALL_STATE(3708)] = 100699, + [SMALL_STATE(3709)] = 100713, + [SMALL_STATE(3710)] = 100727, + [SMALL_STATE(3711)] = 100741, + [SMALL_STATE(3712)] = 100755, + [SMALL_STATE(3713)] = 100769, + [SMALL_STATE(3714)] = 100783, + [SMALL_STATE(3715)] = 100797, + [SMALL_STATE(3716)] = 100811, + [SMALL_STATE(3717)] = 100825, + [SMALL_STATE(3718)] = 100839, + [SMALL_STATE(3719)] = 100853, + [SMALL_STATE(3720)] = 100867, + [SMALL_STATE(3721)] = 100881, + [SMALL_STATE(3722)] = 100895, + [SMALL_STATE(3723)] = 100909, + [SMALL_STATE(3724)] = 100923, + [SMALL_STATE(3725)] = 100937, + [SMALL_STATE(3726)] = 100951, + [SMALL_STATE(3727)] = 100965, + [SMALL_STATE(3728)] = 100979, + [SMALL_STATE(3729)] = 100993, + [SMALL_STATE(3730)] = 101007, + [SMALL_STATE(3731)] = 101021, + [SMALL_STATE(3732)] = 101035, + [SMALL_STATE(3733)] = 101049, + [SMALL_STATE(3734)] = 101063, + [SMALL_STATE(3735)] = 101077, + [SMALL_STATE(3736)] = 101091, + [SMALL_STATE(3737)] = 101105, + [SMALL_STATE(3738)] = 101119, + [SMALL_STATE(3739)] = 101133, + [SMALL_STATE(3740)] = 101147, + [SMALL_STATE(3741)] = 101161, + [SMALL_STATE(3742)] = 101175, + [SMALL_STATE(3743)] = 101189, + [SMALL_STATE(3744)] = 101203, + [SMALL_STATE(3745)] = 101217, + [SMALL_STATE(3746)] = 101231, + [SMALL_STATE(3747)] = 101245, + [SMALL_STATE(3748)] = 101259, + [SMALL_STATE(3749)] = 101273, + [SMALL_STATE(3750)] = 101287, + [SMALL_STATE(3751)] = 101301, + [SMALL_STATE(3752)] = 101315, + [SMALL_STATE(3753)] = 101329, + [SMALL_STATE(3754)] = 101343, + [SMALL_STATE(3755)] = 101357, + [SMALL_STATE(3756)] = 101371, + [SMALL_STATE(3757)] = 101385, + [SMALL_STATE(3758)] = 101399, + [SMALL_STATE(3759)] = 101413, + [SMALL_STATE(3760)] = 101427, + [SMALL_STATE(3761)] = 101441, + [SMALL_STATE(3762)] = 101455, + [SMALL_STATE(3763)] = 101469, + [SMALL_STATE(3764)] = 101483, + [SMALL_STATE(3765)] = 101497, + [SMALL_STATE(3766)] = 101511, + [SMALL_STATE(3767)] = 101525, + [SMALL_STATE(3768)] = 101539, + [SMALL_STATE(3769)] = 101553, + [SMALL_STATE(3770)] = 101567, + [SMALL_STATE(3771)] = 101581, + [SMALL_STATE(3772)] = 101595, + [SMALL_STATE(3773)] = 101609, + [SMALL_STATE(3774)] = 101623, + [SMALL_STATE(3775)] = 101637, + [SMALL_STATE(3776)] = 101651, + [SMALL_STATE(3777)] = 101665, + [SMALL_STATE(3778)] = 101679, + [SMALL_STATE(3779)] = 101693, + [SMALL_STATE(3780)] = 101707, + [SMALL_STATE(3781)] = 101721, + [SMALL_STATE(3782)] = 101735, + [SMALL_STATE(3783)] = 101749, + [SMALL_STATE(3784)] = 101763, + [SMALL_STATE(3785)] = 101777, + [SMALL_STATE(3786)] = 101791, + [SMALL_STATE(3787)] = 101805, + [SMALL_STATE(3788)] = 101819, + [SMALL_STATE(3789)] = 101833, + [SMALL_STATE(3790)] = 101847, + [SMALL_STATE(3791)] = 101861, + [SMALL_STATE(3792)] = 101875, + [SMALL_STATE(3793)] = 101889, + [SMALL_STATE(3794)] = 101903, + [SMALL_STATE(3795)] = 101917, + [SMALL_STATE(3796)] = 101931, + [SMALL_STATE(3797)] = 101945, + [SMALL_STATE(3798)] = 101959, + [SMALL_STATE(3799)] = 101973, + [SMALL_STATE(3800)] = 101987, + [SMALL_STATE(3801)] = 102001, + [SMALL_STATE(3802)] = 102015, + [SMALL_STATE(3803)] = 102029, + [SMALL_STATE(3804)] = 102043, + [SMALL_STATE(3805)] = 102057, + [SMALL_STATE(3806)] = 102071, + [SMALL_STATE(3807)] = 102085, + [SMALL_STATE(3808)] = 102099, + [SMALL_STATE(3809)] = 102113, + [SMALL_STATE(3810)] = 102127, + [SMALL_STATE(3811)] = 102141, + [SMALL_STATE(3812)] = 102155, + [SMALL_STATE(3813)] = 102169, + [SMALL_STATE(3814)] = 102183, + [SMALL_STATE(3815)] = 102197, + [SMALL_STATE(3816)] = 102211, + [SMALL_STATE(3817)] = 102225, + [SMALL_STATE(3818)] = 102239, + [SMALL_STATE(3819)] = 102253, + [SMALL_STATE(3820)] = 102267, + [SMALL_STATE(3821)] = 102281, + [SMALL_STATE(3822)] = 102295, + [SMALL_STATE(3823)] = 102309, + [SMALL_STATE(3824)] = 102323, + [SMALL_STATE(3825)] = 102337, + [SMALL_STATE(3826)] = 102351, + [SMALL_STATE(3827)] = 102355, + [SMALL_STATE(3828)] = 102359, + [SMALL_STATE(3829)] = 102363, + [SMALL_STATE(3830)] = 102367, + [SMALL_STATE(3831)] = 102371, + [SMALL_STATE(3832)] = 102375, }; 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(2399), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), [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(1589), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2581), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(241), [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2176), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3729), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2640), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1385), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(140), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(302), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1558), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(263), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(813), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(878), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3384), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3671), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2355), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2711), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1400), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1522), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(821), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1072), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(166), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2714), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(362), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2712), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2794), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(167), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3497), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2621), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1442), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2739), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1474), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3596), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3625), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2711), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2712), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 45), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 45), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 46), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 46), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2342), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2441), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3464), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 44), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 44), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), - [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_higher_ranked_trait_bound, 3, 0, 87), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 49), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 50), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 49), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3382), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2760), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), SHIFT(2881), - [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), - [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2054), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(256), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2290), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 43), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(801), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7330] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3215), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2124), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1411), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3611), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3793), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1607), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1945), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2158), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1609), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3284), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), + [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(226), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3508), + [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(227), + [582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2712), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2889), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3692), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1396), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(156), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(9), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(306), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1564), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(241), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(813), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(872), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3215), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3627), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2393), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(373), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2863), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1436), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1552), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(852), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1083), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(160), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2658), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(349), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2670), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2694), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(161), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3284), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2660), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1493), + [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2801), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1528), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1562), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3585), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1562), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3591), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1396), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(813), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3215), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2863), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1436), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2670), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3284), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3585), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1562), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3591), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 45), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 45), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(806), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2396), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3206), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1123), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), + [1842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2698), + [1845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), + [2224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [2726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 44), + [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 44), + [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [2854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [2878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [3010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [3013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [3016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3713), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [3034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(882), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3169), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2274), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1942), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2179), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [3330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 49), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 49), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [3874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 50), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [4006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [4034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3313), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2808), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_become_expression, 2, 0, 0), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_become_expression, 2, 0, 0), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [4650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), SHIFT(2731), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2304), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2049), + [5810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(388), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [6076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3081), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(801), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [6495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 43), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), + [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2249), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(945), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2296), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [7043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [7449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7529] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -205801,10 +207544,10 @@ 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__raw_string_literal_end] = true, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 858107de..cdbe64cc 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,7 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version;